diff --git a/examples/clue_solver.ds b/examples/clue_solver.ds index 67f4856..301cc02 100644 --- a/examples/clue_solver.ds +++ b/examples/clue_solver.ds @@ -1,4 +1,4 @@ -all_cards = { +all_cards = { rooms = ['Library' 'Kitchen' 'Conservatory'] suspects = ['White' 'Green' 'Scarlett'] weapons = ['Rope' 'Lead_Pipe' 'Knife'] @@ -38,7 +38,7 @@ make_guess = |current_room , cards | { + current_room + ' with the ' + (random cards:weapons) - + '!') + + '.') } } diff --git a/examples/jq_data.ds b/examples/jq_data.ds index 94aeca7..6c68f83 100644 --- a/examples/jq_data.ds +++ b/examples/jq_data.ds @@ -3,10 +3,10 @@ data = (from_json (read 'examples/assets/jq_data.json')) new_data = []; for commit_data in data { - new_data += ( + new_data += { message = commit_data.commit.message name = commit_data.commit.committer.name - ) + } } new_data diff --git a/examples/map.ds b/examples/map.ds index b6ddf78..f759ce6 100644 --- a/examples/map.ds +++ b/examples/map.ds @@ -1,7 +1,7 @@ -dictionary = ( +dictionary = { dust = "awesome" answer = 42 -) +} (output 'Dust is ' diff --git a/src/abstract_tree/index.rs b/src/abstract_tree/index.rs index 9b19075..4de72ad 100644 --- a/src/abstract_tree/index.rs +++ b/src/abstract_tree/index.rs @@ -89,7 +89,7 @@ mod tests { #[test] fn evaluate_map_index() { - let test = evaluate("x = (y = (z = 2)) x:y:z").unwrap(); + let test = evaluate("x = {y = {z = 2}} x:y:z").unwrap(); assert_eq!(Value::Integer(2), test); } diff --git a/src/evaluator.rs b/src/evaluator.rs index 41d8ba8..77e6a02 100644 --- a/src/evaluator.rs +++ b/src/evaluator.rs @@ -166,7 +166,7 @@ mod tests { variables.insert("foo".to_string(), Value::String("bar".to_string())); } - assert_eq!(evaluate("( x = 1, foo = 'bar' )"), Ok(Value::Map(map))); + assert_eq!(evaluate("{ x = 1, foo = 'bar' }"), Ok(Value::Map(map))); } #[test] diff --git a/tree-sitter-dust/corpus/functions.txt b/tree-sitter-dust/corpus/functions.txt index 1361223..ab030a7 100644 --- a/tree-sitter-dust/corpus/functions.txt +++ b/tree-sitter-dust/corpus/functions.txt @@ -103,10 +103,10 @@ Complex Function Call (foobar "hi" 42 - ( + { x = 1 y = 2 - ) + } ) -------------------------------------------------------------------------------- diff --git a/tree-sitter-dust/corpus/maps.txt b/tree-sitter-dust/corpus/maps.txt index aa07efc..6c2391a 100644 --- a/tree-sitter-dust/corpus/maps.txt +++ b/tree-sitter-dust/corpus/maps.txt @@ -2,7 +2,7 @@ Simple Map ================================================================================ -( answer = 42 ) +{ answer = 42 } -------------------------------------------------------------------------------- @@ -21,15 +21,15 @@ Simple Map Nested Maps ================================================================================ -x = ( - y = ( +x = { + y = { foo = 'bar' - z = ( + z = { message = 'hiya' - ) - ) + } + } f = 12 -) +} -------------------------------------------------------------------------------- diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index 7f12a7f..f94a876 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -5,10 +5,6 @@ module.exports = grammar({ extras: $ => [ /\s/, $._comment ], - conflicts: $ => [ - [$.map, $.assignment_operator], - ], - rules: { root: $ => prec(1, repeat1($.statement)), @@ -100,14 +96,14 @@ module.exports = grammar({ ), map: $ => seq( - '(', + '{', repeat(seq( $.identifier, "=", $.statement, optional(',') )), - ')', + '}', ), index: $ => prec.left(1, seq( @@ -164,11 +160,11 @@ module.exports = grammar({ $.statement, ), - assignment_operator: $ => choice( + assignment_operator: $ => prec.right(choice( "=", "+=", "-=", - ), + )), if_else: $ => prec.right(seq( $.if, diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index cf7b2b5..4332355 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -518,7 +518,7 @@ "members": [ { "type": "STRING", - "value": "(" + "value": "{" }, { "type": "REPEAT", @@ -554,7 +554,7 @@ }, { "type": "STRING", - "value": ")" + "value": "}" } ] }, @@ -767,21 +767,25 @@ ] }, "assignment_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + } + ] + } }, "if_else": { "type": "PREC_RIGHT", @@ -1474,12 +1478,7 @@ "name": "_comment" } ], - "conflicts": [ - [ - "map", - "assignment_operator" - ] - ], + "conflicts": [], "precedences": [], "externals": [], "inline": [], diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 0521823..f794852 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 371 +#define STATE_COUNT 377 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 137 #define ALIAS_COUNT 0 @@ -1030,62 +1030,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 2, - [5] = 5, - [6] = 5, - [7] = 5, + [3] = 3, + [4] = 3, + [5] = 2, + [6] = 3, + [7] = 2, [8] = 8, [9] = 9, - [10] = 9, + [10] = 8, [11] = 11, - [12] = 9, + [12] = 11, [13] = 11, - [14] = 9, + [14] = 14, [15] = 11, - [16] = 9, - [17] = 11, - [18] = 9, - [19] = 9, - [20] = 11, - [21] = 11, + [16] = 14, + [17] = 14, + [18] = 11, + [19] = 14, + [20] = 14, + [21] = 14, [22] = 11, - [23] = 23, - [24] = 24, + [23] = 14, + [24] = 11, [25] = 25, - [26] = 25, - [27] = 24, - [28] = 24, - [29] = 25, - [30] = 24, - [31] = 24, - [32] = 25, - [33] = 25, - [34] = 24, - [35] = 24, - [36] = 25, - [37] = 25, - [38] = 38, - [39] = 39, + [26] = 26, + [27] = 26, + [28] = 26, + [29] = 29, + [30] = 29, + [31] = 26, + [32] = 29, + [33] = 29, + [34] = 26, + [35] = 29, + [36] = 29, + [37] = 26, + [38] = 29, + [39] = 26, [40] = 40, [41] = 41, - [42] = 38, - [43] = 41, - [44] = 39, - [45] = 45, - [46] = 46, - [47] = 47, - [48] = 47, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 41, + [46] = 42, + [47] = 43, + [48] = 48, [49] = 49, [50] = 50, - [51] = 45, - [52] = 49, - [53] = 50, + [51] = 51, + [52] = 52, + [53] = 52, [54] = 54, - [55] = 46, - [56] = 56, - [57] = 57, - [58] = 58, + [55] = 51, + [56] = 48, + [57] = 49, + [58] = 50, [59] = 59, [60] = 60, [61] = 61, @@ -1102,302 +1102,308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 72, [73] = 73, [74] = 74, - [75] = 74, + [75] = 75, [76] = 76, - [77] = 76, + [77] = 77, [78] = 78, - [79] = 79, + [79] = 78, [80] = 80, [81] = 81, - [82] = 47, - [83] = 47, - [84] = 49, - [85] = 46, - [86] = 50, - [87] = 45, - [88] = 61, - [89] = 46, - [90] = 57, + [82] = 80, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 51, + [87] = 48, + [88] = 49, + [89] = 52, + [90] = 63, [91] = 50, - [92] = 49, - [93] = 45, - [94] = 67, - [95] = 59, - [96] = 96, - [97] = 66, - [98] = 60, - [99] = 68, + [92] = 60, + [93] = 52, + [94] = 51, + [95] = 49, + [96] = 50, + [97] = 48, + [98] = 62, + [99] = 76, [100] = 100, - [101] = 63, - [102] = 65, - [103] = 56, - [104] = 104, - [105] = 71, - [106] = 70, - [107] = 58, - [108] = 108, - [109] = 64, - [110] = 62, - [111] = 111, - [112] = 50, - [113] = 80, - [114] = 47, - [115] = 115, - [116] = 81, - [117] = 46, - [118] = 45, - [119] = 49, - [120] = 47, - [121] = 70, - [122] = 49, - [123] = 123, - [124] = 60, - [125] = 59, - [126] = 126, - [127] = 126, - [128] = 67, - [129] = 129, - [130] = 57, - [131] = 45, - [132] = 71, - [133] = 50, - [134] = 63, - [135] = 65, - [136] = 56, - [137] = 68, - [138] = 62, - [139] = 64, - [140] = 66, - [141] = 126, - [142] = 58, - [143] = 46, - [144] = 61, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 145, - [150] = 57, - [151] = 151, - [152] = 61, - [153] = 153, - [154] = 145, - [155] = 146, - [156] = 146, - [157] = 157, - [158] = 57, - [159] = 61, - [160] = 160, - [161] = 57, - [162] = 162, - [163] = 163, + [101] = 73, + [102] = 71, + [103] = 65, + [104] = 67, + [105] = 105, + [106] = 74, + [107] = 75, + [108] = 72, + [109] = 59, + [110] = 66, + [111] = 61, + [112] = 70, + [113] = 113, + [114] = 114, + [115] = 84, + [116] = 85, + [117] = 117, + [118] = 50, + [119] = 52, + [120] = 120, + [121] = 51, + [122] = 48, + [123] = 49, + [124] = 52, + [125] = 120, + [126] = 120, + [127] = 127, + [128] = 73, + [129] = 59, + [130] = 66, + [131] = 65, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 70, + [136] = 136, + [137] = 67, + [138] = 138, + [139] = 139, + [140] = 71, + [141] = 132, + [142] = 60, + [143] = 72, + [144] = 144, + [145] = 76, + [146] = 61, + [147] = 75, + [148] = 62, + [149] = 74, + [150] = 50, + [151] = 132, + [152] = 152, + [153] = 152, + [154] = 63, + [155] = 49, + [156] = 152, + [157] = 48, + [158] = 51, + [159] = 63, + [160] = 60, + [161] = 60, + [162] = 63, + [163] = 77, [164] = 164, [165] = 165, - [166] = 61, - [167] = 54, + [166] = 166, + [167] = 167, [168] = 168, [169] = 169, - [170] = 163, + [170] = 170, [171] = 171, [172] = 172, [173] = 173, [174] = 174, - [175] = 73, + [175] = 175, [176] = 176, [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 69, - [182] = 182, - [183] = 183, + [178] = 54, + [179] = 176, + [180] = 175, + [181] = 181, + [182] = 171, + [183] = 172, [184] = 184, - [185] = 185, - [186] = 179, - [187] = 180, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 190, - [192] = 189, - [193] = 183, - [194] = 194, - [195] = 195, - [196] = 182, - [197] = 184, - [198] = 180, - [199] = 195, - [200] = 189, - [201] = 180, - [202] = 195, - [203] = 189, - [204] = 184, - [205] = 180, - [206] = 184, - [207] = 180, - [208] = 190, + [185] = 177, + [186] = 176, + [187] = 165, + [188] = 173, + [189] = 177, + [190] = 175, + [191] = 164, + [192] = 177, + [193] = 171, + [194] = 172, + [195] = 172, + [196] = 171, + [197] = 197, + [198] = 176, + [199] = 171, + [200] = 172, + [201] = 174, + [202] = 202, + [203] = 176, + [204] = 177, + [205] = 176, + [206] = 177, + [207] = 172, + [208] = 171, [209] = 209, - [210] = 195, - [211] = 189, - [212] = 180, - [213] = 184, - [214] = 195, - [215] = 194, - [216] = 209, - [217] = 190, - [218] = 185, - [219] = 184, - [220] = 178, - [221] = 189, - [222] = 184, - [223] = 189, - [224] = 188, - [225] = 180, - [226] = 184, - [227] = 189, - [228] = 195, - [229] = 195, - [230] = 195, - [231] = 47, - [232] = 78, - [233] = 45, - [234] = 74, - [235] = 47, - [236] = 46, - [237] = 50, - [238] = 49, - [239] = 239, - [240] = 74, - [241] = 79, - [242] = 46, - [243] = 243, - [244] = 243, - [245] = 245, - [246] = 245, - [247] = 50, + [210] = 171, + [211] = 172, + [212] = 176, + [213] = 170, + [214] = 168, + [215] = 167, + [216] = 177, + [217] = 181, + [218] = 176, + [219] = 219, + [220] = 220, + [221] = 175, + [222] = 222, + [223] = 177, + [224] = 172, + [225] = 171, + [226] = 60, + [227] = 63, + [228] = 228, + [229] = 229, + [230] = 209, + [231] = 231, + [232] = 232, + [233] = 64, + [234] = 80, + [235] = 52, + [236] = 49, + [237] = 48, + [238] = 51, + [239] = 52, + [240] = 80, + [241] = 50, + [242] = 242, + [243] = 81, + [244] = 83, + [245] = 48, + [246] = 246, + [247] = 247, [248] = 248, - [249] = 249, - [250] = 49, - [251] = 45, - [252] = 248, - [253] = 249, - [254] = 254, - [255] = 254, - [256] = 61, - [257] = 57, - [258] = 172, - [259] = 259, - [260] = 260, - [261] = 261, + [249] = 51, + [250] = 248, + [251] = 49, + [252] = 247, + [253] = 253, + [254] = 50, + [255] = 253, + [256] = 246, + [257] = 257, + [258] = 257, + [259] = 60, + [260] = 63, + [261] = 197, [262] = 262, [263] = 263, [264] = 264, - [265] = 100, - [266] = 96, + [265] = 265, + [266] = 266, [267] = 267, - [268] = 268, - [269] = 111, - [270] = 123, - [271] = 129, + [268] = 114, + [269] = 113, + [270] = 117, + [271] = 271, [272] = 272, - [273] = 273, - [274] = 272, - [275] = 273, - [276] = 272, - [277] = 273, - [278] = 273, - [279] = 272, - [280] = 171, - [281] = 164, - [282] = 282, - [283] = 283, + [273] = 139, + [274] = 127, + [275] = 275, + [276] = 275, + [277] = 277, + [278] = 275, + [279] = 277, + [280] = 275, + [281] = 277, + [282] = 277, + [283] = 219, [284] = 284, - [285] = 163, - [286] = 163, - [287] = 284, - [288] = 282, - [289] = 283, - [290] = 162, - [291] = 282, - [292] = 174, - [293] = 176, - [294] = 177, - [295] = 173, - [296] = 169, - [297] = 168, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 202, + [289] = 166, + [290] = 165, + [291] = 232, + [292] = 184, + [293] = 169, + [294] = 286, + [295] = 284, + [296] = 222, + [297] = 220, [298] = 284, - [299] = 299, - [300] = 282, - [301] = 160, - [302] = 284, - [303] = 165, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 306, + [299] = 228, + [300] = 229, + [301] = 165, + [302] = 285, + [303] = 286, + [304] = 286, + [305] = 231, + [306] = 284, + [307] = 307, [308] = 308, - [309] = 309, + [309] = 308, [310] = 310, [311] = 311, - [312] = 312, - [313] = 310, - [314] = 310, + [312] = 310, + [313] = 313, + [314] = 314, [315] = 315, - [316] = 310, - [317] = 309, - [318] = 318, - [319] = 306, - [320] = 309, - [321] = 315, - [322] = 309, + [316] = 316, + [317] = 317, + [318] = 316, + [319] = 319, + [320] = 315, + [321] = 321, + [322] = 316, [323] = 323, - [324] = 311, - [325] = 325, + [324] = 314, + [325] = 314, [326] = 326, - [327] = 326, - [328] = 326, - [329] = 329, - [330] = 326, - [331] = 326, + [327] = 316, + [328] = 314, + [329] = 310, + [330] = 313, + [331] = 308, [332] = 332, - [333] = 326, - [334] = 326, - [335] = 335, - [336] = 336, - [337] = 329, - [338] = 326, + [333] = 333, + [334] = 332, + [335] = 332, + [336] = 332, + [337] = 337, + [338] = 338, [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, + [340] = 332, + [341] = 332, + [342] = 333, + [343] = 332, [344] = 344, - [345] = 343, - [346] = 343, - [347] = 343, - [348] = 343, + [345] = 332, + [346] = 346, + [347] = 347, + [348] = 348, [349] = 349, [350] = 350, - [351] = 351, - [352] = 341, - [353] = 344, - [354] = 351, + [351] = 349, + [352] = 349, + [353] = 349, + [354] = 349, [355] = 355, - [356] = 342, + [356] = 350, [357] = 357, - [358] = 343, - [359] = 342, + [358] = 358, + [359] = 347, [360] = 360, - [361] = 355, - [362] = 362, - [363] = 357, + [361] = 361, + [362] = 348, + [363] = 358, [364] = 349, - [365] = 343, + [365] = 365, [366] = 355, - [367] = 360, - [368] = 344, - [369] = 369, - [370] = 340, + [367] = 367, + [368] = 346, + [369] = 350, + [370] = 357, + [371] = 349, + [372] = 360, + [373] = 373, + [374] = 365, + [375] = 365, + [376] = 348, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1405,588 +1411,594 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(28); + if (eof) ADVANCE(29); if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(34); - if (lookahead == ')') ADVANCE(35); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(36); - if (lookahead == '-') ADVANCE(62); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(63); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == ':') ADVANCE(56); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(51); - if (lookahead == ']') ADVANCE(52); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(44); - if (lookahead == 'e') ADVANCE(42); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(83); - if (lookahead == '}') ADVANCE(32); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(56); + if (lookahead == '>') ADVANCE(73); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 1: if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(34); - if (lookahead == ')') ADVANCE(35); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(58); - if (lookahead == ',') ADVANCE(36); - if (lookahead == '-') ADVANCE(63); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(64); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == ':') ADVANCE(56); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(51); - if (lookahead == ']') ADVANCE(52); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '|') ADVANCE(83); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(73); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(15); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 2: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); if (lookahead == '&') ADVANCE(8); - if (lookahead == ')') ADVANCE(35); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(36); - if (lookahead == '-') ADVANCE(60); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(61); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ':') ADVANCE(56); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(21); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(56); + if (lookahead == '>') ADVANCE(73); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 3: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); if (lookahead == '&') ADVANCE(8); - if (lookahead == ')') ADVANCE(35); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(36); - if (lookahead == '-') ADVANCE(60); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(61); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ':') ADVANCE(56); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(21); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(73); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 4: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); if (lookahead == '&') ADVANCE(8); - if (lookahead == ')') ADVANCE(35); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(58); - if (lookahead == ',') ADVANCE(36); - if (lookahead == '-') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(62); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ':') ADVANCE(56); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(72); - if (lookahead == 'e') ADVANCE(42); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(21); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(14); + if (lookahead == '>') ADVANCE(73); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 5: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); if (lookahead == '&') ADVANCE(8); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(58); - if (lookahead == '-') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == '-') ADVANCE(62); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ':') ADVANCE(56); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(21); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(57); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(14); + if (lookahead == '>') ADVANCE(73); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 6: if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(20); + if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(34); - if (lookahead == ')') ADVANCE(35); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); if (lookahead == '+') ADVANCE(12); - if (lookahead == ',') ADVANCE(36); - if (lookahead == '-') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(53); - if (lookahead == '[') ADVANCE(51); - if (lookahead == ']') ADVANCE(52); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(82); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(15); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(50); + if (lookahead == '"') ADVANCE(51); if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: - if (lookahead == '&') ADVANCE(69); + if (lookahead == '&') ADVANCE(70); END_STATE(); case 9: - if (lookahead == '\'') ADVANCE(50); + if (lookahead == '\'') ADVANCE(51); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == '.') ADVANCE(57); + if (lookahead == '.') ADVANCE(58); END_STATE(); case 11: - if (lookahead == '=') ADVANCE(68); + if (lookahead == '=') ADVANCE(69); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(77); + if (lookahead == '=') ADVANCE(78); END_STATE(); case 13: - if (lookahead == '=') ADVANCE(67); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '=') ADVANCE(68); END_STATE(); case 14: - if (lookahead == '`') ADVANCE(50); - if (lookahead != 0) ADVANCE(14); + if (lookahead == '=') ADVANCE(68); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 15: - if (lookahead == 'f') ADVANCE(18); + if (lookahead == '`') ADVANCE(51); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == 'f') ADVANCE(79); + if (lookahead == 'f') ADVANCE(19); END_STATE(); case 17: - if (lookahead == 'i') ADVANCE(16); + if (lookahead == 'f') ADVANCE(80); END_STATE(); case 18: - if (lookahead == 'o') ADVANCE(19); + if (lookahead == 'i') ADVANCE(17); END_STATE(); case 19: - if (lookahead == 'r') ADVANCE(81); + if (lookahead == 'o') ADVANCE(20); END_STATE(); case 20: - if (lookahead == '|') ADVANCE(30); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(29); - if (lookahead != 0) ADVANCE(20); + if (lookahead == 'r') ADVANCE(82); END_STATE(); case 21: - if (lookahead == '|') ADVANCE(70); + if (lookahead == '|') ADVANCE(31); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(30); + if (lookahead != 0) ADVANCE(21); END_STATE(); case 22: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == '|') ADVANCE(71); END_STATE(); case 23: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == '=') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 24: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == '=') ADVANCE(79); END_STATE(); case 25: - if (eof) ADVANCE(28); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(66); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(34); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(59); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == ':') ADVANCE(56); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(51); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(44); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(83); - if (lookahead == '}') ADVANCE(32); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 26: - if (eof) ADVANCE(28); + if (eof) ADVANCE(29); + if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(20); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(34); - if (lookahead == '+') ADVANCE(12); - if (lookahead == '-') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '=') ADVANCE(53); - if (lookahead == '>') ADVANCE(71); - if (lookahead == '[') ADVANCE(51); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(44); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(32); + if (lookahead == '(') ADVANCE(35); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(75); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(73); + if (lookahead == '[') ADVANCE(52); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 27: - if (eof) ADVANCE(28); + if (eof) ADVANCE(29); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(20); + if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(34); - if (lookahead == '-') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == ';') ADVANCE(33); - if (lookahead == '[') ADVANCE(51); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(44); - if (lookahead == 'e') ADVANCE(42); - if (lookahead == '{') ADVANCE(31); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(32); + if (lookahead == '(') ADVANCE(35); + if (lookahead == '+') ADVANCE(12); + if (lookahead == '-') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 28: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(29); + if (lookahead == '"') ADVANCE(7); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == '-') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '[') ADVANCE(52); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(28) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 29: - ACCEPT_TOKEN(sym__comment); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 30: ACCEPT_TOKEN(sym__comment); - if (lookahead == '|') ADVANCE(30); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(29); - if (lookahead != 0) ADVANCE(20); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym__comment); + if (lookahead == '|') ADVANCE(31); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(30); + if (lookahead != 0) ADVANCE(21); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 37: - ACCEPT_TOKEN(sym_identifier); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 38: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 39: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == ' ') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 40: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == ' ') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 41: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 'c') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 42: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 'e') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 43: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 'l') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 44: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 'n') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 45: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 's') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 46: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 's') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 47: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 'y') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 48: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 49: - ACCEPT_TOKEN(sym_float); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 50: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_string); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(67); END_STATE(); case 55: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(67); - if (lookahead == '>') ADVANCE(80); + if (lookahead == '=') ADVANCE(68); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(68); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(77); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(84); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(84); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(85); END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(84); + if (lookahead == '>') ADVANCE(85); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead == '>') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(85); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == '>') ADVANCE(85); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(75); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(76); END_STATE(); case 74: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(76); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(77); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_elseif); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_asyncfor); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_asyncfor); END_STATE(); case 83: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(70); END_STATE(); case 84: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(71); + END_STATE(); + case 85: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); default: @@ -2731,91 +2743,91 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 26}, + [1] = {.lex_state = 27}, [2] = {.lex_state = 6}, [3] = {.lex_state = 6}, [4] = {.lex_state = 6}, [5] = {.lex_state = 6}, [6] = {.lex_state = 6}, [7] = {.lex_state = 6}, - [8] = {.lex_state = 26}, - [9] = {.lex_state = 26}, - [10] = {.lex_state = 26}, - [11] = {.lex_state = 26}, - [12] = {.lex_state = 26}, - [13] = {.lex_state = 26}, - [14] = {.lex_state = 26}, - [15] = {.lex_state = 26}, - [16] = {.lex_state = 26}, - [17] = {.lex_state = 26}, - [18] = {.lex_state = 26}, - [19] = {.lex_state = 26}, - [20] = {.lex_state = 26}, - [21] = {.lex_state = 26}, - [22] = {.lex_state = 26}, - [23] = {.lex_state = 26}, - [24] = {.lex_state = 26}, - [25] = {.lex_state = 26}, - [26] = {.lex_state = 26}, - [27] = {.lex_state = 26}, - [28] = {.lex_state = 26}, - [29] = {.lex_state = 26}, - [30] = {.lex_state = 26}, - [31] = {.lex_state = 26}, - [32] = {.lex_state = 26}, - [33] = {.lex_state = 26}, - [34] = {.lex_state = 26}, - [35] = {.lex_state = 26}, - [36] = {.lex_state = 26}, - [37] = {.lex_state = 26}, - [38] = {.lex_state = 26}, - [39] = {.lex_state = 26}, - [40] = {.lex_state = 26}, - [41] = {.lex_state = 26}, - [42] = {.lex_state = 26}, - [43] = {.lex_state = 26}, - [44] = {.lex_state = 26}, - [45] = {.lex_state = 25}, - [46] = {.lex_state = 25}, - [47] = {.lex_state = 25}, - [48] = {.lex_state = 25}, - [49] = {.lex_state = 25}, - [50] = {.lex_state = 25}, - [51] = {.lex_state = 25}, - [52] = {.lex_state = 25}, - [53] = {.lex_state = 25}, - [54] = {.lex_state = 25}, - [55] = {.lex_state = 25}, - [56] = {.lex_state = 25}, - [57] = {.lex_state = 25}, - [58] = {.lex_state = 25}, - [59] = {.lex_state = 25}, - [60] = {.lex_state = 25}, - [61] = {.lex_state = 25}, - [62] = {.lex_state = 25}, - [63] = {.lex_state = 25}, - [64] = {.lex_state = 25}, - [65] = {.lex_state = 25}, - [66] = {.lex_state = 25}, - [67] = {.lex_state = 25}, - [68] = {.lex_state = 25}, - [69] = {.lex_state = 25}, - [70] = {.lex_state = 25}, - [71] = {.lex_state = 25}, - [72] = {.lex_state = 1}, - [73] = {.lex_state = 25}, - [74] = {.lex_state = 25}, - [75] = {.lex_state = 25}, - [76] = {.lex_state = 1}, - [77] = {.lex_state = 1}, - [78] = {.lex_state = 25}, - [79] = {.lex_state = 25}, + [8] = {.lex_state = 27}, + [9] = {.lex_state = 27}, + [10] = {.lex_state = 27}, + [11] = {.lex_state = 27}, + [12] = {.lex_state = 27}, + [13] = {.lex_state = 27}, + [14] = {.lex_state = 27}, + [15] = {.lex_state = 27}, + [16] = {.lex_state = 27}, + [17] = {.lex_state = 27}, + [18] = {.lex_state = 27}, + [19] = {.lex_state = 27}, + [20] = {.lex_state = 27}, + [21] = {.lex_state = 27}, + [22] = {.lex_state = 27}, + [23] = {.lex_state = 27}, + [24] = {.lex_state = 27}, + [25] = {.lex_state = 27}, + [26] = {.lex_state = 27}, + [27] = {.lex_state = 27}, + [28] = {.lex_state = 27}, + [29] = {.lex_state = 27}, + [30] = {.lex_state = 27}, + [31] = {.lex_state = 27}, + [32] = {.lex_state = 27}, + [33] = {.lex_state = 27}, + [34] = {.lex_state = 27}, + [35] = {.lex_state = 27}, + [36] = {.lex_state = 27}, + [37] = {.lex_state = 27}, + [38] = {.lex_state = 27}, + [39] = {.lex_state = 27}, + [40] = {.lex_state = 27}, + [41] = {.lex_state = 27}, + [42] = {.lex_state = 27}, + [43] = {.lex_state = 27}, + [44] = {.lex_state = 27}, + [45] = {.lex_state = 27}, + [46] = {.lex_state = 27}, + [47] = {.lex_state = 27}, + [48] = {.lex_state = 26}, + [49] = {.lex_state = 26}, + [50] = {.lex_state = 26}, + [51] = {.lex_state = 26}, + [52] = {.lex_state = 26}, + [53] = {.lex_state = 26}, + [54] = {.lex_state = 26}, + [55] = {.lex_state = 26}, + [56] = {.lex_state = 26}, + [57] = {.lex_state = 26}, + [58] = {.lex_state = 26}, + [59] = {.lex_state = 26}, + [60] = {.lex_state = 26}, + [61] = {.lex_state = 26}, + [62] = {.lex_state = 26}, + [63] = {.lex_state = 26}, + [64] = {.lex_state = 26}, + [65] = {.lex_state = 26}, + [66] = {.lex_state = 26}, + [67] = {.lex_state = 26}, + [68] = {.lex_state = 26}, + [69] = {.lex_state = 1}, + [70] = {.lex_state = 26}, + [71] = {.lex_state = 26}, + [72] = {.lex_state = 26}, + [73] = {.lex_state = 26}, + [74] = {.lex_state = 26}, + [75] = {.lex_state = 26}, + [76] = {.lex_state = 26}, + [77] = {.lex_state = 26}, + [78] = {.lex_state = 1}, + [79] = {.lex_state = 1}, [80] = {.lex_state = 26}, [81] = {.lex_state = 26}, - [82] = {.lex_state = 1}, - [83] = {.lex_state = 1}, - [84] = {.lex_state = 1}, - [85] = {.lex_state = 1}, + [82] = {.lex_state = 26}, + [83] = {.lex_state = 26}, + [84] = {.lex_state = 27}, + [85] = {.lex_state = 27}, [86] = {.lex_state = 1}, [87] = {.lex_state = 1}, [88] = {.lex_state = 1}, @@ -2826,11 +2838,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [93] = {.lex_state = 1}, [94] = {.lex_state = 1}, [95] = {.lex_state = 1}, - [96] = {.lex_state = 27}, + [96] = {.lex_state = 1}, [97] = {.lex_state = 1}, [98] = {.lex_state = 1}, [99] = {.lex_state = 1}, - [100] = {.lex_state = 27}, + [100] = {.lex_state = 1}, [101] = {.lex_state = 1}, [102] = {.lex_state = 1}, [103] = {.lex_state = 1}, @@ -2841,83 +2853,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 1}, [109] = {.lex_state = 1}, [110] = {.lex_state = 1}, - [111] = {.lex_state = 27}, - [112] = {.lex_state = 3}, - [113] = {.lex_state = 6}, - [114] = {.lex_state = 3}, - [115] = {.lex_state = 1}, + [111] = {.lex_state = 1}, + [112] = {.lex_state = 1}, + [113] = {.lex_state = 28}, + [114] = {.lex_state = 28}, + [115] = {.lex_state = 6}, [116] = {.lex_state = 6}, - [117] = {.lex_state = 3}, + [117] = {.lex_state = 28}, [118] = {.lex_state = 3}, [119] = {.lex_state = 3}, - [120] = {.lex_state = 3}, - [121] = {.lex_state = 2}, + [120] = {.lex_state = 1}, + [121] = {.lex_state = 3}, [122] = {.lex_state = 3}, - [123] = {.lex_state = 27}, - [124] = {.lex_state = 2}, - [125] = {.lex_state = 2}, + [123] = {.lex_state = 3}, + [124] = {.lex_state = 3}, + [125] = {.lex_state = 1}, [126] = {.lex_state = 1}, - [127] = {.lex_state = 1}, + [127] = {.lex_state = 28}, [128] = {.lex_state = 2}, - [129] = {.lex_state = 27}, - [130] = {.lex_state = 27}, - [131] = {.lex_state = 3}, - [132] = {.lex_state = 2}, - [133] = {.lex_state = 3}, - [134] = {.lex_state = 2}, + [129] = {.lex_state = 2}, + [130] = {.lex_state = 2}, + [131] = {.lex_state = 2}, + [132] = {.lex_state = 6}, + [133] = {.lex_state = 6}, + [134] = {.lex_state = 6}, [135] = {.lex_state = 2}, - [136] = {.lex_state = 2}, + [136] = {.lex_state = 6}, [137] = {.lex_state = 2}, - [138] = {.lex_state = 2}, - [139] = {.lex_state = 2}, + [138] = {.lex_state = 6}, + [139] = {.lex_state = 28}, [140] = {.lex_state = 2}, - [141] = {.lex_state = 1}, - [142] = {.lex_state = 2}, - [143] = {.lex_state = 3}, - [144] = {.lex_state = 27}, - [145] = {.lex_state = 6}, - [146] = {.lex_state = 6}, - [147] = {.lex_state = 6}, - [148] = {.lex_state = 6}, - [149] = {.lex_state = 6}, - [150] = {.lex_state = 4}, + [141] = {.lex_state = 6}, + [142] = {.lex_state = 28}, + [143] = {.lex_state = 2}, + [144] = {.lex_state = 6}, + [145] = {.lex_state = 2}, + [146] = {.lex_state = 2}, + [147] = {.lex_state = 2}, + [148] = {.lex_state = 2}, + [149] = {.lex_state = 2}, + [150] = {.lex_state = 3}, [151] = {.lex_state = 6}, - [152] = {.lex_state = 4}, + [152] = {.lex_state = 6}, [153] = {.lex_state = 6}, - [154] = {.lex_state = 6}, - [155] = {.lex_state = 6}, + [154] = {.lex_state = 28}, + [155] = {.lex_state = 3}, [156] = {.lex_state = 6}, - [157] = {.lex_state = 6}, + [157] = {.lex_state = 3}, [158] = {.lex_state = 3}, - [159] = {.lex_state = 3}, - [160] = {.lex_state = 26}, - [161] = {.lex_state = 26}, - [162] = {.lex_state = 26}, - [163] = {.lex_state = 26}, - [164] = {.lex_state = 26}, - [165] = {.lex_state = 26}, - [166] = {.lex_state = 26}, - [167] = {.lex_state = 3}, - [168] = {.lex_state = 26}, - [169] = {.lex_state = 26}, - [170] = {.lex_state = 26}, - [171] = {.lex_state = 26}, - [172] = {.lex_state = 26}, - [173] = {.lex_state = 26}, - [174] = {.lex_state = 26}, - [175] = {.lex_state = 3}, - [176] = {.lex_state = 26}, - [177] = {.lex_state = 26}, - [178] = {.lex_state = 6}, + [159] = {.lex_state = 4}, + [160] = {.lex_state = 3}, + [161] = {.lex_state = 4}, + [162] = {.lex_state = 3}, + [163] = {.lex_state = 3}, + [164] = {.lex_state = 6}, + [165] = {.lex_state = 27}, + [166] = {.lex_state = 27}, + [167] = {.lex_state = 6}, + [168] = {.lex_state = 6}, + [169] = {.lex_state = 27}, + [170] = {.lex_state = 6}, + [171] = {.lex_state = 6}, + [172] = {.lex_state = 6}, + [173] = {.lex_state = 6}, + [174] = {.lex_state = 6}, + [175] = {.lex_state = 6}, + [176] = {.lex_state = 6}, + [177] = {.lex_state = 6}, + [178] = {.lex_state = 3}, [179] = {.lex_state = 6}, [180] = {.lex_state = 6}, - [181] = {.lex_state = 3}, + [181] = {.lex_state = 6}, [182] = {.lex_state = 6}, [183] = {.lex_state = 6}, - [184] = {.lex_state = 6}, + [184] = {.lex_state = 27}, [185] = {.lex_state = 6}, [186] = {.lex_state = 6}, - [187] = {.lex_state = 6}, + [187] = {.lex_state = 27}, [188] = {.lex_state = 6}, [189] = {.lex_state = 6}, [190] = {.lex_state = 6}, @@ -2927,12 +2939,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 6}, [195] = {.lex_state = 6}, [196] = {.lex_state = 6}, - [197] = {.lex_state = 6}, + [197] = {.lex_state = 27}, [198] = {.lex_state = 6}, [199] = {.lex_state = 6}, [200] = {.lex_state = 6}, [201] = {.lex_state = 6}, - [202] = {.lex_state = 6}, + [202] = {.lex_state = 27}, [203] = {.lex_state = 6}, [204] = {.lex_state = 6}, [205] = {.lex_state = 6}, @@ -2949,62 +2961,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [216] = {.lex_state = 6}, [217] = {.lex_state = 6}, [218] = {.lex_state = 6}, - [219] = {.lex_state = 6}, - [220] = {.lex_state = 6}, + [219] = {.lex_state = 27}, + [220] = {.lex_state = 27}, [221] = {.lex_state = 6}, - [222] = {.lex_state = 6}, + [222] = {.lex_state = 27}, [223] = {.lex_state = 6}, [224] = {.lex_state = 6}, [225] = {.lex_state = 6}, - [226] = {.lex_state = 6}, - [227] = {.lex_state = 6}, - [228] = {.lex_state = 6}, - [229] = {.lex_state = 6}, + [226] = {.lex_state = 27}, + [227] = {.lex_state = 27}, + [228] = {.lex_state = 27}, + [229] = {.lex_state = 27}, [230] = {.lex_state = 6}, - [231] = {.lex_state = 5}, - [232] = {.lex_state = 3}, - [233] = {.lex_state = 5}, + [231] = {.lex_state = 27}, + [232] = {.lex_state = 27}, + [233] = {.lex_state = 3}, [234] = {.lex_state = 3}, [235] = {.lex_state = 5}, [236] = {.lex_state = 5}, [237] = {.lex_state = 5}, [238] = {.lex_state = 5}, - [239] = {.lex_state = 26}, + [239] = {.lex_state = 5}, [240] = {.lex_state = 3}, - [241] = {.lex_state = 3}, - [242] = {.lex_state = 5}, + [241] = {.lex_state = 5}, + [242] = {.lex_state = 27}, [243] = {.lex_state = 3}, [244] = {.lex_state = 3}, - [245] = {.lex_state = 3}, + [245] = {.lex_state = 5}, [246] = {.lex_state = 3}, - [247] = {.lex_state = 5}, + [247] = {.lex_state = 3}, [248] = {.lex_state = 3}, - [249] = {.lex_state = 3}, - [250] = {.lex_state = 5}, + [249] = {.lex_state = 5}, + [250] = {.lex_state = 3}, [251] = {.lex_state = 5}, [252] = {.lex_state = 3}, [253] = {.lex_state = 3}, - [254] = {.lex_state = 4}, - [255] = {.lex_state = 4}, - [256] = {.lex_state = 6}, - [257] = {.lex_state = 6}, - [258] = {.lex_state = 6}, + [254] = {.lex_state = 5}, + [255] = {.lex_state = 3}, + [256] = {.lex_state = 3}, + [257] = {.lex_state = 4}, + [258] = {.lex_state = 4}, [259] = {.lex_state = 6}, [260] = {.lex_state = 6}, [261] = {.lex_state = 6}, [262] = {.lex_state = 6}, [263] = {.lex_state = 6}, [264] = {.lex_state = 6}, - [265] = {.lex_state = 4}, - [266] = {.lex_state = 4}, + [265] = {.lex_state = 6}, + [266] = {.lex_state = 6}, [267] = {.lex_state = 6}, - [268] = {.lex_state = 6}, + [268] = {.lex_state = 4}, [269] = {.lex_state = 4}, [270] = {.lex_state = 4}, - [271] = {.lex_state = 4}, + [271] = {.lex_state = 6}, [272] = {.lex_state = 6}, - [273] = {.lex_state = 6}, - [274] = {.lex_state = 6}, + [273] = {.lex_state = 4}, + [274] = {.lex_state = 4}, [275] = {.lex_state = 6}, [276] = {.lex_state = 6}, [277] = {.lex_state = 6}, @@ -3013,13 +3025,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 6}, [281] = {.lex_state = 6}, [282] = {.lex_state = 6}, - [283] = {.lex_state = 26}, + [283] = {.lex_state = 6}, [284] = {.lex_state = 6}, - [285] = {.lex_state = 6}, + [285] = {.lex_state = 27}, [286] = {.lex_state = 6}, [287] = {.lex_state = 6}, [288] = {.lex_state = 6}, - [289] = {.lex_state = 26}, + [289] = {.lex_state = 6}, [290] = {.lex_state = 6}, [291] = {.lex_state = 6}, [292] = {.lex_state = 6}, @@ -3032,7 +3044,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [299] = {.lex_state = 6}, [300] = {.lex_state = 6}, [301] = {.lex_state = 6}, - [302] = {.lex_state = 6}, + [302] = {.lex_state = 27}, [303] = {.lex_state = 6}, [304] = {.lex_state = 6}, [305] = {.lex_state = 6}, @@ -3056,51 +3068,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 6}, [324] = {.lex_state = 6}, [325] = {.lex_state = 6}, - [326] = {.lex_state = 26}, - [327] = {.lex_state = 26}, - [328] = {.lex_state = 26}, - [329] = {.lex_state = 26}, - [330] = {.lex_state = 26}, - [331] = {.lex_state = 26}, - [332] = {.lex_state = 6}, - [333] = {.lex_state = 26}, - [334] = {.lex_state = 26}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 6}, - [337] = {.lex_state = 26}, - [338] = {.lex_state = 26}, + [326] = {.lex_state = 6}, + [327] = {.lex_state = 6}, + [328] = {.lex_state = 6}, + [329] = {.lex_state = 6}, + [330] = {.lex_state = 6}, + [331] = {.lex_state = 6}, + [332] = {.lex_state = 27}, + [333] = {.lex_state = 27}, + [334] = {.lex_state = 27}, + [335] = {.lex_state = 27}, + [336] = {.lex_state = 27}, + [337] = {.lex_state = 0}, + [338] = {.lex_state = 6}, [339] = {.lex_state = 6}, - [340] = {.lex_state = 6}, - [341] = {.lex_state = 6}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 0}, - [344] = {.lex_state = 0}, - [345] = {.lex_state = 0}, - [346] = {.lex_state = 0}, - [347] = {.lex_state = 0}, + [340] = {.lex_state = 27}, + [341] = {.lex_state = 27}, + [342] = {.lex_state = 27}, + [343] = {.lex_state = 27}, + [344] = {.lex_state = 6}, + [345] = {.lex_state = 27}, + [346] = {.lex_state = 6}, + [347] = {.lex_state = 6}, [348] = {.lex_state = 0}, [349] = {.lex_state = 0}, - [350] = {.lex_state = 26}, - [351] = {.lex_state = 6}, - [352] = {.lex_state = 6}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 0}, + [352] = {.lex_state = 0}, [353] = {.lex_state = 0}, - [354] = {.lex_state = 6}, - [355] = {.lex_state = 0}, + [354] = {.lex_state = 0}, + [355] = {.lex_state = 6}, [356] = {.lex_state = 0}, [357] = {.lex_state = 6}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 0}, - [360] = {.lex_state = 6}, - [361] = {.lex_state = 0}, + [358] = {.lex_state = 6}, + [359] = {.lex_state = 6}, + [360] = {.lex_state = 0}, + [361] = {.lex_state = 27}, [362] = {.lex_state = 0}, [363] = {.lex_state = 6}, [364] = {.lex_state = 0}, [365] = {.lex_state = 0}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 6}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 26}, + [366] = {.lex_state = 6}, + [367] = {.lex_state = 27}, + [368] = {.lex_state = 6}, + [369] = {.lex_state = 0}, [370] = {.lex_state = 6}, + [371] = {.lex_state = 0}, + [372] = {.lex_state = 0}, + [373] = {.lex_state = 0}, + [374] = {.lex_state = 0}, + [375] = {.lex_state = 0}, + [376] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -3198,34 +3216,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(362), - [sym_block] = STATE(163), - [sym_statement] = STATE(23), - [sym_expression] = STATE(74), - [sym__expression_kind] = STATE(58), - [sym_value] = STATE(58), + [sym_root] = STATE(373), + [sym_block] = STATE(187), + [sym_statement] = STATE(25), + [sym_expression] = STATE(80), + [sym__expression_kind] = STATE(61), + [sym_value] = STATE(61), [sym_boolean] = STATE(62), [sym_list] = STATE(62), [sym_map] = STATE(62), - [sym_index] = STATE(69), - [sym_math] = STATE(58), - [sym_logic] = STATE(58), - [sym_assignment] = STATE(163), - [sym_index_assignment] = STATE(163), - [sym_if_else] = STATE(163), - [sym_if] = STATE(100), - [sym_match] = STATE(163), - [sym_while] = STATE(163), - [sym_for] = STATE(163), - [sym_select] = STATE(163), - [sym_insert] = STATE(163), + [sym_index] = STATE(64), + [sym_math] = STATE(61), + [sym_logic] = STATE(61), + [sym_assignment] = STATE(187), + [sym_index_assignment] = STATE(187), + [sym_if_else] = STATE(187), + [sym_if] = STATE(113), + [sym_match] = STATE(187), + [sym_while] = STATE(187), + [sym_for] = STATE(187), + [sym_select] = STATE(187), + [sym_insert] = STATE(187), [sym_table] = STATE(62), - [sym_return] = STATE(163), - [sym_use] = STATE(163), + [sym_return] = STATE(187), + [sym_use] = STATE(187), [sym_function] = STATE(62), - [sym_function_call] = STATE(58), - [sym_yield] = STATE(58), - [aux_sym_root_repeat1] = STATE(23), + [sym_function_call] = STATE(61), + [sym_yield] = STATE(61), + [aux_sym_root_repeat1] = STATE(25), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), @@ -3252,15 +3270,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 17, + [0] = 16, ACTIONS(3), 1, sym__comment, ACTIONS(43), 1, sym_identifier, ACTIONS(45), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(47), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(49), 1, sym_integer, ACTIONS(55), 1, @@ -3269,28 +3287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(59), 1, anon_sym_table, - STATE(72), 1, + STATE(69), 1, sym_expression, - STATE(151), 1, + STATE(134), 1, sym__built_in_function_name, - STATE(307), 1, - aux_sym_map_repeat1, ACTIONS(51), 2, sym_float, sym_string, ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(366), 2, + STATE(362), 2, sym__context_defined_function, sym_built_in_function, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(127), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -3330,12 +3346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [95] = 17, + [92] = 16, ACTIONS(3), 1, sym__comment, - ACTIONS(43), 1, - sym_identifier, ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, anon_sym_LPAREN, ACTIONS(49), 1, sym_integer, @@ -3346,101 +3362,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 1, anon_sym_table, ACTIONS(63), 1, - anon_sym_RPAREN, - STATE(72), 1, - sym_expression, - STATE(151), 1, - sym__built_in_function_name, - STATE(319), 1, - aux_sym_map_repeat1, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(355), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(61), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [190] = 17, - ACTIONS(3), 1, - sym__comment, - ACTIONS(43), 1, sym_identifier, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(65), 1, - anon_sym_RPAREN, - STATE(72), 1, + STATE(69), 1, sym_expression, - STATE(151), 1, + STATE(134), 1, sym__built_in_function_name, - STATE(306), 1, - aux_sym_map_repeat1, ACTIONS(51), 2, sym_float, sym_string, ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(361), 2, + STATE(374), 2, sym__context_defined_function, sym_built_in_function, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, @@ -3486,281 +3422,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [285] = 15, + [184] = 16, ACTIONS(3), 1, sym__comment, ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(151), 1, - sym__built_in_function_name, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(356), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(61), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [374] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(151), 1, - sym__built_in_function_name, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(342), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(61), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [463] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(151), 1, - sym__built_in_function_name, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(359), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(61), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [552] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(71), 1, - sym_identifier, - ACTIONS(74), 1, - anon_sym_async, - ACTIONS(77), 1, anon_sym_LBRACE, - ACTIONS(80), 1, + ACTIONS(47), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(49), 1, sym_integer, - ACTIONS(92), 1, + ACTIONS(55), 1, anon_sym_LBRACK, - ACTIONS(95), 1, - anon_sym_if, - ACTIONS(98), 1, - anon_sym_match, - ACTIONS(101), 1, - anon_sym_while, - ACTIONS(104), 1, - anon_sym_for, - ACTIONS(107), 1, - anon_sym_asyncfor, - ACTIONS(110), 1, - anon_sym_select, - ACTIONS(113), 1, - anon_sym_insert, - ACTIONS(116), 1, + ACTIONS(57), 1, anon_sym_PIPE, - ACTIONS(119), 1, + ACTIONS(59), 1, anon_sym_table, - ACTIONS(122), 1, - anon_sym_return, - ACTIONS(125), 1, - anon_sym_use, + ACTIONS(65), 1, + sym_identifier, STATE(69), 1, - sym_index, - STATE(74), 1, sym_expression, - STATE(100), 1, + STATE(134), 1, + sym__built_in_function_name, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(375), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(120), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [276] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(69), 1, + sym_expression, + STATE(134), 1, + sym__built_in_function_name, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(376), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [368] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(69), 1, + sym_expression, + STATE(134), 1, + sym__built_in_function_name, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(365), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(125), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [460] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(69), 1, + sym_expression, + STATE(134), 1, + sym__built_in_function_name, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(348), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [552] = 29, + ACTIONS(3), 1, + sym__comment, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(69), 1, + sym_identifier, + ACTIONS(71), 1, + anon_sym_RBRACE, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, sym_if, - ACTIONS(69), 2, + STATE(308), 1, + aux_sym_map_repeat1, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(23), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [662] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(75), 1, + sym_identifier, + ACTIONS(78), 1, + anon_sym_async, + ACTIONS(81), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + sym_integer, + ACTIONS(96), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_if, + ACTIONS(102), 1, + anon_sym_match, + ACTIONS(105), 1, + anon_sym_while, + ACTIONS(108), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_asyncfor, + ACTIONS(114), 1, + anon_sym_select, + ACTIONS(117), 1, + anon_sym_insert, + ACTIONS(120), 1, + anon_sym_PIPE, + ACTIONS(123), 1, + anon_sym_table, + ACTIONS(126), 1, + anon_sym_return, + ACTIONS(129), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(73), 2, ts_builtin_sym_end, anon_sym_RBRACE, - ACTIONS(86), 2, + ACTIONS(90), 2, sym_float, sym_string, - ACTIONS(89), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -3769,14 +3868,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -3788,11 +3887,9 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [660] = 28, + [770] = 29, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, - sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, @@ -3825,179 +3922,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(41), 1, anon_sym_use, - ACTIONS(128), 1, - anon_sym_RBRACE, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(8), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [767] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, + ACTIONS(69), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - ACTIONS(130), 1, - anon_sym_RBRACE, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(8), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [874] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, ACTIONS(132), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, + STATE(331), 1, + aux_sym_map_repeat1, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(19), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4006,14 +3949,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4025,7 +3968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [981] = 28, + [880] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4064,11 +4007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(134), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4076,7 +4019,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4085,14 +4028,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4104,7 +4047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1088] = 28, + [987] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4143,11 +4086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(136), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4155,7 +4098,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4164,14 +4107,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4183,7 +4126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1195] = 28, + [1094] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4222,11 +4165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(138), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4234,7 +4177,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4243,14 +4186,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4262,7 +4205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1302] = 28, + [1201] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4301,11 +4244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(140), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4313,7 +4256,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4322,14 +4265,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4341,7 +4284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1409] = 28, + [1308] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4380,11 +4323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(142), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4392,7 +4335,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4401,14 +4344,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4420,7 +4363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1516] = 28, + [1415] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4459,11 +4402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(144), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4471,7 +4414,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4480,14 +4423,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4499,7 +4442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1623] = 28, + [1522] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4538,11 +4481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(146), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4550,7 +4493,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4559,14 +4502,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4578,7 +4521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1730] = 28, + [1629] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4617,11 +4560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(148), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4629,7 +4572,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4638,14 +4581,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4657,7 +4600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1837] = 28, + [1736] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4696,11 +4639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(150), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4708,7 +4651,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4717,14 +4660,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4736,7 +4679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1944] = 28, + [1843] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4775,11 +4718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(152), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4787,7 +4730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4796,14 +4739,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4815,7 +4758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [2051] = 28, + [1950] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4854,11 +4797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(154), 1, anon_sym_RBRACE, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4866,7 +4809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -4875,14 +4818,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4894,7 +4837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [2158] = 28, + [2057] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4932,936 +4875,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(41), 1, anon_sym_use, ACTIONS(156), 1, - ts_builtin_sym_end, - STATE(69), 1, + anon_sym_RBRACE, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(8), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2265] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(18), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2369] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(11), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2473] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(20), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2577] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(16), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2681] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(14), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2785] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2889] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2993] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3097] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(13), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3201] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(21), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3305] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(19), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(163), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3409] = 27, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_asyncfor, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(39), 1, - anon_sym_return, - ACTIONS(41), 1, - anon_sym_use, - STATE(69), 1, - sym_index, - STATE(74), 1, - sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -5878,14 +4897,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -5897,7 +4916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [3513] = 27, + [2164] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -5934,11 +4953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(41), 1, anon_sym_use, - STATE(69), 1, + ACTIONS(158), 1, + anon_sym_RBRACE, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -5946,7 +4967,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(62), 5, @@ -5955,14 +4976,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -5974,7 +4995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [3617] = 27, + [2271] = 28, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6011,11 +5032,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(41), 1, anon_sym_use, - STATE(69), 1, + ACTIONS(160), 1, + anon_sym_RBRACE, + STATE(64), 1, sym_index, - STATE(74), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(9), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2378] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(162), 1, + ts_builtin_sym_end, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(9), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2485] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(13), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2589] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(18), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2693] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -6032,14 +5365,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(163), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6051,7 +5384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [3721] = 27, + [2797] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6088,34 +5421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(41), 1, anon_sym_use, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(75), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, - STATE(174), 1, - sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, + STATE(21), 2, + sym_statement, + aux_sym_root_repeat1, STATE(62), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(170), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6127,7 +5461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [3824] = 27, + [2901] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6164,34 +5498,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(41), 1, anon_sym_use, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(75), 1, + STATE(80), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, - STATE(168), 1, - sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, + STATE(20), 2, + sym_statement, + aux_sym_root_repeat1, STATE(62), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(170), 11, + STATE(187), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6203,71 +5538,764 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [3927] = 27, + [3005] = 27, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(160), 1, + ACTIONS(7), 1, anon_sym_async, - ACTIONS(162), 1, + ACTIONS(9), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(24), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3109] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(16), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3213] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(23), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3317] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3421] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(17), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3525] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(19), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3629] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3733] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3837] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(64), 1, + sym_index, + STATE(80), 1, + sym_expression, + STATE(113), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(15), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(187), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3941] = 27, + ACTIONS(3), 1, + sym__comment, ACTIONS(164), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(166), 1, - sym_integer, + anon_sym_async, + ACTIONS(168), 1, + anon_sym_LBRACE, + ACTIONS(170), 1, + anon_sym_LPAREN, ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_if, - ACTIONS(176), 1, - anon_sym_match, + sym_integer, ACTIONS(178), 1, - anon_sym_while, + anon_sym_LBRACK, ACTIONS(180), 1, - anon_sym_for, + anon_sym_if, ACTIONS(182), 1, - anon_sym_asyncfor, + anon_sym_match, ACTIONS(184), 1, - anon_sym_select, + anon_sym_while, ACTIONS(186), 1, - anon_sym_insert, + anon_sym_for, ACTIONS(188), 1, - anon_sym_PIPE, + anon_sym_asyncfor, ACTIONS(190), 1, - anon_sym_table, + anon_sym_select, ACTIONS(192), 1, - anon_sym_return, + anon_sym_insert, ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(198), 1, + anon_sym_return, + ACTIONS(200), 1, anon_sym_use, - STATE(181), 1, + STATE(233), 1, sym_index, STATE(240), 1, sym_expression, - STATE(265), 1, + STATE(269), 1, sym_if, - STATE(318), 1, + STATE(321), 1, sym_statement, - ACTIONS(168), 2, + ACTIONS(174), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(176), 2, anon_sym_true, anon_sym_false, - STATE(138), 5, + STATE(148), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(142), 6, + STATE(146), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(286), 11, + STATE(301), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6279,7 +6307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4030] = 27, + [4044] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6316,13 +6344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(41), 1, anon_sym_use, - STATE(69), 1, + STATE(64), 1, sym_index, - STATE(75), 1, + STATE(82), 1, sym_expression, - STATE(100), 1, + STATE(113), 1, sym_if, - STATE(173), 1, + STATE(169), 1, sym_statement, ACTIONS(15), 2, sym_float, @@ -6336,14 +6364,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(170), 11, + STATE(165), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6355,71 +6383,71 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4133] = 27, + [4147] = 27, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(160), 1, + ACTIONS(7), 1, anon_sym_async, - ACTIONS(162), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(164), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(13), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(174), 1, + ACTIONS(21), 1, anon_sym_if, - ACTIONS(176), 1, + ACTIONS(23), 1, anon_sym_match, - ACTIONS(178), 1, + ACTIONS(25), 1, anon_sym_while, - ACTIONS(180), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(182), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(184), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(186), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(188), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(190), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(192), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(194), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(181), 1, + STATE(64), 1, sym_index, - STATE(234), 1, + STATE(82), 1, sym_expression, - STATE(265), 1, + STATE(113), 1, sym_if, - STATE(292), 1, + STATE(231), 1, sym_statement, - ACTIONS(168), 2, + ACTIONS(15), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(138), 5, + STATE(62), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(142), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(285), 11, + STATE(165), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6431,71 +6459,71 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4236] = 27, + [4250] = 27, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(160), 1, + ACTIONS(7), 1, anon_sym_async, - ACTIONS(162), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(164), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(13), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(174), 1, + ACTIONS(21), 1, anon_sym_if, - ACTIONS(176), 1, + ACTIONS(23), 1, anon_sym_match, - ACTIONS(178), 1, + ACTIONS(25), 1, anon_sym_while, - ACTIONS(180), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(182), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(184), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(186), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(188), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(190), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(192), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(194), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(181), 1, + STATE(64), 1, sym_index, - STATE(234), 1, + STATE(82), 1, sym_expression, - STATE(265), 1, + STATE(113), 1, sym_if, - STATE(295), 1, + STATE(219), 1, sym_statement, - ACTIONS(168), 2, + ACTIONS(15), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(138), 5, + STATE(62), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(142), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(285), 11, + STATE(165), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6507,148 +6535,320 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4339] = 27, + [4353] = 27, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, - sym_identifier, - ACTIONS(160), 1, - anon_sym_async, - ACTIONS(162), 1, - anon_sym_LBRACE, ACTIONS(164), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(166), 1, - sym_integer, + anon_sym_async, + ACTIONS(168), 1, + anon_sym_LBRACE, + ACTIONS(170), 1, + anon_sym_LPAREN, ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_if, - ACTIONS(176), 1, - anon_sym_match, + sym_integer, ACTIONS(178), 1, - anon_sym_while, + anon_sym_LBRACK, ACTIONS(180), 1, - anon_sym_for, + anon_sym_if, ACTIONS(182), 1, - anon_sym_asyncfor, + anon_sym_match, ACTIONS(184), 1, - anon_sym_select, + anon_sym_while, ACTIONS(186), 1, - anon_sym_insert, + anon_sym_for, ACTIONS(188), 1, - anon_sym_PIPE, + anon_sym_asyncfor, ACTIONS(190), 1, - anon_sym_table, + anon_sym_select, ACTIONS(192), 1, - anon_sym_return, + anon_sym_insert, ACTIONS(194), 1, - anon_sym_use, - STATE(181), 1, - sym_index, - STATE(234), 1, - sym_expression, - STATE(265), 1, - sym_if, - STATE(297), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(285), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [4442] = 11, - ACTIONS(3), 1, - sym__comment, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(198), 1, + anon_sym_return, ACTIONS(200), 1, - anon_sym_COLON, - ACTIONS(210), 1, - anon_sym_DASH_GT, - STATE(184), 1, - sym_math_operator, - STATE(187), 1, - sym_logic_operator, - ACTIONS(202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(196), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_use, + STATE(233), 1, + sym_index, + STATE(240), 1, + sym_expression, + STATE(269), 1, + sym_if, + STATE(321), 1, + sym_statement, + ACTIONS(174), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - ACTIONS(198), 16, - anon_sym_async, - sym_identifier, - sym_integer, + ACTIONS(176), 2, anon_sym_true, anon_sym_false, - anon_sym_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [4511] = 5, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(301), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [4456] = 27, ACTIONS(3), 1, sym__comment, - STATE(184), 1, - sym_math_operator, - STATE(187), 1, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_async, + ACTIONS(168), 1, + anon_sym_LBRACE, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(180), 1, + anon_sym_if, + ACTIONS(182), 1, + anon_sym_match, + ACTIONS(184), 1, + anon_sym_while, + ACTIONS(186), 1, + anon_sym_for, + ACTIONS(188), 1, + anon_sym_asyncfor, + ACTIONS(190), 1, + anon_sym_select, + ACTIONS(192), 1, + anon_sym_insert, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(198), 1, + anon_sym_return, + ACTIONS(200), 1, + anon_sym_use, + STATE(233), 1, + sym_index, + STATE(234), 1, + sym_expression, + STATE(269), 1, + sym_if, + STATE(293), 1, + sym_statement, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(290), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [4559] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_async, + ACTIONS(168), 1, + anon_sym_LBRACE, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(180), 1, + anon_sym_if, + ACTIONS(182), 1, + anon_sym_match, + ACTIONS(184), 1, + anon_sym_while, + ACTIONS(186), 1, + anon_sym_for, + ACTIONS(188), 1, + anon_sym_asyncfor, + ACTIONS(190), 1, + anon_sym_select, + ACTIONS(192), 1, + anon_sym_insert, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(198), 1, + anon_sym_return, + ACTIONS(200), 1, + anon_sym_use, + STATE(233), 1, + sym_index, + STATE(234), 1, + sym_expression, + STATE(269), 1, + sym_if, + STATE(305), 1, + sym_statement, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(290), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [4662] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_async, + ACTIONS(168), 1, + anon_sym_LBRACE, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(180), 1, + anon_sym_if, + ACTIONS(182), 1, + anon_sym_match, + ACTIONS(184), 1, + anon_sym_while, + ACTIONS(186), 1, + anon_sym_for, + ACTIONS(188), 1, + anon_sym_asyncfor, + ACTIONS(190), 1, + anon_sym_select, + ACTIONS(192), 1, + anon_sym_insert, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(198), 1, + anon_sym_return, + ACTIONS(200), 1, + anon_sym_use, + STATE(233), 1, + sym_index, + STATE(234), 1, + sym_expression, + STATE(269), 1, + sym_if, + STATE(283), 1, + sym_statement, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(290), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [4765] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(206), 1, + anon_sym_COLON, + STATE(210), 1, sym_logic_operator, - ACTIONS(214), 20, + STATE(211), 1, + sym_math_operator, + ACTIONS(204), 20, anon_sym_async, sym_identifier, sym_integer, @@ -6669,7 +6869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(212), 23, + ACTIONS(202), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -6678,7 +6878,6 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -6693,26 +6892,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [4568] = 6, + [4824] = 11, ACTIONS(3), 1, sym__comment, + ACTIONS(206), 1, + anon_sym_COLON, ACTIONS(220), 1, - anon_sym_DOT_DOT, - STATE(184), 1, - sym_math_operator, - STATE(187), 1, + anon_sym_DASH_GT, + STATE(210), 1, sym_logic_operator, - ACTIONS(218), 20, + STATE(211), 1, + sym_math_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(208), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(210), 16, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, @@ -6723,90 +6950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(216), 22, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [4627] = 5, + [4893] = 5, ACTIONS(3), 1, sym__comment, - STATE(184), 1, - sym_math_operator, - STATE(187), 1, + STATE(210), 1, sym_logic_operator, - ACTIONS(218), 20, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(216), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [4684] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(200), 1, - anon_sym_COLON, - STATE(184), 1, + STATE(211), 1, sym_math_operator, - STATE(187), 1, - sym_logic_operator, ACTIONS(224), 20, anon_sym_async, sym_identifier, @@ -6828,7 +6978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(222), 22, + ACTIONS(222), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -6837,6 +6987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -6851,28 +7002,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [4743] = 11, + [4950] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(200), 1, + ACTIONS(206), 1, anon_sym_COLON, - ACTIONS(210), 1, + ACTIONS(220), 1, anon_sym_DASH_GT, - STATE(184), 1, - sym_math_operator, - STATE(187), 1, + STATE(210), 1, sym_logic_operator, - ACTIONS(202), 2, + STATE(211), 1, + sym_math_operator, + ACTIONS(212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 3, + ACTIONS(214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, @@ -6909,73 +7060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [4812] = 11, + [5019] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(210), 1, - anon_sym_DASH_GT, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(225), 1, + ACTIONS(234), 1, + anon_sym_DOT_DOT, + STATE(210), 1, sym_logic_operator, - STATE(226), 1, + STATE(211), 1, sym_math_operator, - ACTIONS(202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(196), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - ACTIONS(198), 16, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [4880] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(225), 1, - sym_logic_operator, - STATE(226), 1, - sym_math_operator, - ACTIONS(224), 20, + ACTIONS(232), 20, anon_sym_async, sym_identifier, sym_integer, @@ -6996,7 +7090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(222), 21, + ACTIONS(230), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7005,6 +7099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -7018,28 +7113,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [4938] = 11, + [5078] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(210), 1, - anon_sym_DASH_GT, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(225), 1, + STATE(210), 1, sym_logic_operator, - STATE(226), 1, + STATE(211), 1, sym_math_operator, - ACTIONS(202), 2, + ACTIONS(232), 20, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(208), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 3, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(230), 23, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [5135] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(240), 1, + anon_sym_EQ, + ACTIONS(242), 1, + anon_sym_LT, + STATE(41), 1, + sym_assignment_operator, + STATE(285), 1, + sym_type, + ACTIONS(244), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(238), 18, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(236), 20, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [5197] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(220), 1, + anon_sym_DASH_GT, + ACTIONS(246), 1, + anon_sym_COLON, + STATE(224), 1, + sym_math_operator, + STATE(225), 1, + sym_logic_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, @@ -7075,68 +7276,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [5006] = 8, + [5265] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(236), 1, - anon_sym_EQ, - ACTIONS(238), 1, - anon_sym_LT, - STATE(39), 1, - sym_assignment_operator, - STATE(283), 1, - sym_type, - ACTIONS(240), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(234), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(232), 20, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, + ACTIONS(246), 1, 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_asyncfor, - anon_sym_DASH_GT, - [5068] = 5, - ACTIONS(3), 1, - sym__comment, + STATE(224), 1, + sym_math_operator, STATE(225), 1, sym_logic_operator, - STATE(226), 1, + ACTIONS(204), 20, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(202), 21, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [5323] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(220), 1, + anon_sym_DASH_GT, + ACTIONS(246), 1, + anon_sym_COLON, + STATE(224), 1, sym_math_operator, - ACTIONS(214), 20, + STATE(225), 1, + sym_logic_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(208), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(210), 16, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [5391] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(224), 1, + sym_math_operator, + STATE(225), 1, + sym_logic_operator, + ACTIONS(224), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7157,7 +7413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(212), 22, + ACTIONS(222), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7180,10 +7436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5124] = 3, + [5447] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(244), 20, + ACTIONS(250), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7204,7 +7460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(242), 23, + ACTIONS(248), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7228,10 +7484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5175] = 3, + [5498] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(248), 20, + ACTIONS(254), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7252,7 +7508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(246), 23, + ACTIONS(252), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7276,10 +7532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5226] = 3, + [5549] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(252), 20, + ACTIONS(258), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7300,7 +7556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(250), 23, + ACTIONS(256), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7324,10 +7580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5277] = 3, + [5600] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(256), 20, + ACTIONS(262), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7348,7 +7604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(254), 23, + ACTIONS(260), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7372,10 +7628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5328] = 3, + [5651] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(260), 20, + ACTIONS(266), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7396,7 +7652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(258), 23, + ACTIONS(264), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7420,10 +7676,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5379] = 3, + [5702] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(264), 20, + ACTIONS(240), 1, + anon_sym_EQ, + STATE(42), 1, + sym_assignment_operator, + ACTIONS(244), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(238), 19, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(236), 20, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [5759] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7444,7 +7751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(262), 23, + ACTIONS(268), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7468,10 +7775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5430] = 3, + [5810] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 20, + ACTIONS(274), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7492,7 +7799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(266), 23, + ACTIONS(272), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7516,10 +7823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5481] = 3, + [5861] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(272), 20, + ACTIONS(278), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7540,7 +7847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(270), 23, + ACTIONS(276), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7564,20 +7871,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5532] = 3, + [5912] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(276), 20, + ACTIONS(242), 1, + anon_sym_LT, + ACTIONS(280), 1, + anon_sym_EQ, + STATE(41), 1, + sym_assignment_operator, + STATE(285), 1, + sym_type, + ACTIONS(244), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(238), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, @@ -7588,8 +7904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(274), 23, - ts_builtin_sym_end, + ACTIONS(236), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -7598,7 +7913,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -7608,155 +7922,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5583] = 3, + [5973] = 23, ACTIONS(3), 1, sym__comment, - ACTIONS(280), 20, - anon_sym_async, + ACTIONS(43), 1, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(278), 23, - ts_builtin_sym_end, + ACTIONS(45), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(47), 1, anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(282), 1, + anon_sym_RPAREN, + ACTIONS(284), 1, + anon_sym_COLON, + ACTIONS(286), 1, + anon_sym_PIPE, + ACTIONS(288), 1, + anon_sym_DASH_GT, + STATE(105), 1, + sym_expression, + STATE(136), 1, + aux_sym__expression_list, + STATE(195), 1, + sym_math_operator, + STATE(196), 1, + sym_logic_operator, + ACTIONS(51), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [5634] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(284), 20, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(282), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [5685] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(288), 20, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(286), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [5736] = 3, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [6064] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(292), 20, @@ -7804,58 +8040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5787] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(236), 1, - anon_sym_EQ, - STATE(41), 1, - sym_assignment_operator, - ACTIONS(240), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(234), 19, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(232), 20, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [5844] = 3, + [6115] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(296), 20, @@ -7903,7 +8088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5895] = 3, + [6166] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(300), 20, @@ -7951,296 +8136,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - [5946] = 22, + [6217] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, + ACTIONS(304), 20, + anon_sym_async, sym_identifier, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(302), 1, - anon_sym_RPAREN, - ACTIONS(304), 1, - anon_sym_COLON, - ACTIONS(306), 1, - anon_sym_PIPE, - ACTIONS(308), 1, - anon_sym_DASH_GT, - STATE(104), 1, - sym_expression, - STATE(147), 1, - aux_sym__expression_list, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, - sym_math_operator, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, + sym_integer, anon_sym_true, anon_sym_false, - ACTIONS(208), 2, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(302), 23, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - ACTIONS(206), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [6034] = 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [6268] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(308), 20, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(306), 23, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [6319] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 20, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(310), 23, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [6370] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(316), 20, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(314), 23, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [6421] = 14, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(210), 1, + ACTIONS(220), 1, anon_sym_DASH_GT, - ACTIONS(230), 1, + ACTIONS(246), 1, anon_sym_COLON, - STATE(162), 1, - sym_block, - STATE(225), 1, - sym_logic_operator, - STATE(226), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(310), 8, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(312), 14, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [6106] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(210), 1, - anon_sym_DASH_GT, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(318), 1, - anon_sym_SEMI, - STATE(225), 1, - sym_logic_operator, - STATE(226), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(314), 8, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(316), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [6173] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(210), 1, - anon_sym_DASH_GT, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(225), 1, - sym_logic_operator, - STATE(226), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(314), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(316), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [6238] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(304), 1, - anon_sym_COLON, - ACTIONS(308), 1, - anon_sym_DASH_GT, - ACTIONS(320), 1, - sym_identifier, ACTIONS(322), 1, - anon_sym_PIPE, - ACTIONS(324), 1, - anon_sym_table, - STATE(81), 1, - aux_sym_match_repeat1, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, + anon_sym_LBRACE, + STATE(166), 1, + sym_block, + STATE(224), 1, sym_math_operator, - STATE(255), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(208), 2, + STATE(225), 1, + sym_logic_operator, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - STATE(138), 5, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(318), 8, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(320), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [6493] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(284), 1, + anon_sym_COLON, + ACTIONS(288), 1, + anon_sym_DASH_GT, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + anon_sym_PIPE, + ACTIONS(330), 1, + anon_sym_table, + STATE(85), 1, + aux_sym_match_repeat1, + STATE(195), 1, + sym_math_operator, + STATE(196), 1, + sym_logic_operator, + STATE(257), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + STATE(148), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(142), 7, + STATE(146), 7, sym__expression_kind, sym_value, sym_index, @@ -8248,63 +8452,65 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [6323] = 21, + [6581] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(164), 1, + ACTIONS(170), 1, anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(304), 1, + ACTIONS(284), 1, anon_sym_COLON, - ACTIONS(308), 1, + ACTIONS(288), 1, anon_sym_DASH_GT, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(322), 1, - anon_sym_PIPE, ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + anon_sym_PIPE, + ACTIONS(330), 1, anon_sym_table, STATE(116), 1, aux_sym_match_repeat1, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, + STATE(195), 1, sym_math_operator, - STATE(254), 1, + STATE(196), 1, + sym_logic_operator, + STATE(258), 1, sym_expression, - ACTIONS(168), 2, + ACTIONS(174), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(176), 2, anon_sym_true, anon_sym_false, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - STATE(138), 5, + STATE(148), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(142), 7, + STATE(146), 7, sym__expression_kind, sym_value, sym_index, @@ -8312,272 +8518,390 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [6408] = 11, + [6669] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(210), 1, + ACTIONS(220), 1, anon_sym_DASH_GT, - ACTIONS(230), 1, + ACTIONS(246), 1, anon_sym_COLON, - STATE(225), 1, - sym_logic_operator, - STATE(226), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(326), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(328), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [6473] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(210), 1, - anon_sym_DASH_GT, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(225), 1, - sym_logic_operator, - STATE(226), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(330), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(332), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [6538] = 15, - ACTIONS(3), 1, - sym__comment, ACTIONS(336), 1, - sym_identifier, - ACTIONS(341), 1, + anon_sym_SEMI, + STATE(224), 1, + sym_math_operator, + STATE(225), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(332), 8, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(344), 1, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(334), 15, + anon_sym_async, + sym_identifier, sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [6736] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(220), 1, + anon_sym_DASH_GT, + ACTIONS(246), 1, + anon_sym_COLON, + STATE(224), 1, + sym_math_operator, + STATE(225), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(338), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(340), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [6801] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(220), 1, + anon_sym_DASH_GT, + ACTIONS(246), 1, + anon_sym_COLON, + STATE(224), 1, + sym_math_operator, + STATE(225), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(332), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(334), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [6866] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(220), 1, + anon_sym_DASH_GT, + ACTIONS(246), 1, + anon_sym_COLON, + STATE(224), 1, + sym_math_operator, + STATE(225), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(342), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(344), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [6931] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(348), 1, + sym_identifier, ACTIONS(353), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(356), 1, - anon_sym_PIPE, + anon_sym_LPAREN, ACTIONS(359), 1, - anon_sym_table, - STATE(80), 1, - aux_sym_match_repeat1, - STATE(255), 1, - sym_expression, - ACTIONS(347), 2, - sym_float, - sym_string, - ACTIONS(350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(334), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_asyncfor, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(339), 9, - anon_sym_async, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_return, - anon_sym_use, - [6608] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(80), 1, - aux_sym_match_repeat1, - STATE(255), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(362), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_asyncfor, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(364), 9, - anon_sym_async, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_return, - anon_sym_use, - [6678] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(197), 1, - sym_math_operator, - STATE(198), 1, - sym_logic_operator, - ACTIONS(218), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(216), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [6721] = 6, - ACTIONS(3), 1, - sym__comment, ACTIONS(368), 1, - anon_sym_DOT_DOT, - STATE(197), 1, - sym_math_operator, - STATE(198), 1, + anon_sym_LBRACK, + ACTIONS(371), 1, + anon_sym_PIPE, + ACTIONS(374), 1, + anon_sym_table, + STATE(84), 1, + aux_sym_match_repeat1, + STATE(257), 1, + sym_expression, + ACTIONS(362), 2, + sym_float, + sym_string, + ACTIONS(365), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(346), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_asyncfor, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(351), 9, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_return, + anon_sym_use, + [7003] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(84), 1, + aux_sym_match_repeat1, + STATE(257), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(377), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_asyncfor, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(379), 9, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_return, + anon_sym_use, + [7075] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_DASH_GT, + ACTIONS(383), 1, + anon_sym_COLON, + STATE(199), 1, sym_logic_operator, - ACTIONS(218), 9, + STATE(200), 1, + sym_math_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(228), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(226), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [7131] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(383), 1, + anon_sym_COLON, + STATE(199), 1, + sym_logic_operator, + STATE(200), 1, + sym_math_operator, + ACTIONS(204), 9, sym_identifier, sym_integer, anon_sym_true, @@ -8587,7 +8911,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(216), 19, + ACTIONS(202), 20, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7177] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_DASH_GT, + ACTIONS(383), 1, + anon_sym_COLON, + STATE(199), 1, + sym_logic_operator, + STATE(200), 1, + sym_math_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(210), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(216), 6, + 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(208), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [7233] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(385), 1, + anon_sym_DOT_DOT, + STATE(199), 1, + sym_logic_operator, + STATE(200), 1, + sym_math_operator, + ACTIONS(232), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(230), 20, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -8607,15 +9017,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [6766] = 6, + [7279] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(370), 1, + ACTIONS(266), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(264), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - STATE(197), 1, - sym_math_operator, - STATE(198), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7319] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(199), 1, sym_logic_operator, + STATE(200), 1, + sym_math_operator, ACTIONS(224), 9, sym_identifier, sym_integer, @@ -8626,7 +9071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(222), 19, + ACTIONS(222), 21, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -8634,6 +9080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, @@ -8646,14 +9093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [6811] = 5, + [7363] = 3, ACTIONS(3), 1, sym__comment, - STATE(197), 1, - sym_math_operator, - STATE(198), 1, - sym_logic_operator, - ACTIONS(214), 9, + ACTIONS(254), 9, sym_identifier, sym_integer, anon_sym_true, @@ -8663,7 +9106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(212), 20, + ACTIONS(252), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -8684,28 +9130,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [6854] = 11, + [7403] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(308), 1, - anon_sym_DASH_GT, - ACTIONS(370), 1, - anon_sym_COLON, - STATE(197), 1, - sym_math_operator, - STATE(198), 1, + STATE(199), 1, sym_logic_operator, - ACTIONS(208), 2, + STATE(200), 1, + sym_math_operator, + ACTIONS(232), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(230), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + anon_sym_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, + [7447] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(284), 1, + anon_sym_COLON, + ACTIONS(288), 1, + anon_sym_DASH_GT, + STATE(195), 1, + sym_math_operator, + STATE(196), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, @@ -8720,6 +9205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_table, ACTIONS(226), 8, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -8727,43 +9213,43 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [6909] = 11, + [7502] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(308), 1, - anon_sym_DASH_GT, - ACTIONS(370), 1, + ACTIONS(284), 1, anon_sym_COLON, - STATE(197), 1, + ACTIONS(288), 1, + anon_sym_DASH_GT, + STATE(195), 1, sym_math_operator, - STATE(198), 1, + STATE(196), 1, sym_logic_operator, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(198), 6, + ACTIONS(210), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, - ACTIONS(206), 6, + ACTIONS(216), 6, 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(196), 8, + ACTIONS(208), 8, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -8771,166 +9257,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [6964] = 3, + [7557] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(264), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(262), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7002] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, + STATE(195), 1, sym_math_operator, - ACTIONS(214), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(212), 19, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7044] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(248), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(246), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7082] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(304), 1, - anon_sym_COLON, - ACTIONS(308), 1, - anon_sym_DASH_GT, - STATE(180), 1, + STATE(196), 1, sym_logic_operator, - STATE(219), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(228), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(226), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - [7136] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(304), 1, - anon_sym_COLON, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, - sym_math_operator, ACTIONS(224), 9, sym_identifier, sym_integer, @@ -8941,188 +9274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(222), 18, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7180] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(304), 1, - anon_sym_COLON, - ACTIONS(308), 1, - anon_sym_DASH_GT, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(198), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(206), 6, - 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(196), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - [7234] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(288), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(286), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7271] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(256), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(254), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7308] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(376), 1, - anon_sym_elseif, - ACTIONS(378), 1, - anon_sym_else, - STATE(176), 1, - sym_else, - STATE(111), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(372), 10, - ts_builtin_sym_end, + ACTIONS(222), 20, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(374), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [7353] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(284), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(282), 20, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -9131,7 +9284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -9143,261 +9295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [7390] = 3, + [7600] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(260), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(258), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(284), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7427] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(292), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(290), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7464] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(376), 1, - anon_sym_elseif, - ACTIONS(378), 1, - anon_sym_else, - STATE(160), 1, - sym_else, - STATE(96), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(380), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(382), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [7509] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(270), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7546] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(280), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(278), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7583] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(244), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(242), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [7620] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(304), 1, - anon_sym_COLON, - ACTIONS(308), 1, - anon_sym_DASH_GT, - ACTIONS(388), 1, - anon_sym_COMMA, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, + STATE(195), 1, sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(386), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - ACTIONS(206), 6, - 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(384), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - [7675] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(300), 9, + STATE(196), 1, + sym_logic_operator, + ACTIONS(204), 9, sym_identifier, sym_integer, anon_sym_true, @@ -9407,7 +9314,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(298), 20, + ACTIONS(202), 19, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7645] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(262), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(260), 21, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -9428,7 +9369,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [7712] = 3, + [7683] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(316), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(314), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7721] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(284), 1, + anon_sym_COLON, + ACTIONS(288), 1, + anon_sym_DASH_GT, + ACTIONS(391), 1, + anon_sym_COMMA, + STATE(195), 1, + sym_math_operator, + STATE(196), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(387), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(389), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7777] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(302), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7815] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(296), 9, @@ -9441,7 +9496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(294), 20, + ACTIONS(294), 21, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -9462,10 +9518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [7749] = 3, + [7853] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(252), 9, + ACTIONS(270), 9, sym_identifier, sym_integer, anon_sym_true, @@ -9475,7 +9531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(250), 20, + ACTIONS(268), 21, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -9496,53 +9553,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [7786] = 12, + [7891] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(278), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, anon_sym_DASH, - ACTIONS(304), 1, - anon_sym_COLON, - ACTIONS(308), 1, - anon_sym_DASH_GT, - ACTIONS(394), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(276), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(180), 1, - sym_logic_operator, - STATE(219), 1, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7929] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(284), 1, + anon_sym_COLON, + ACTIONS(288), 1, + anon_sym_DASH_GT, + ACTIONS(397), 1, + anon_sym_COMMA, + STATE(195), 1, sym_math_operator, - ACTIONS(208), 2, + STATE(196), 1, + sym_logic_operator, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 5, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(206), 6, + ACTIONS(216), 6, 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(390), 6, + ACTIONS(393), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, - [7841] = 3, + ACTIONS(395), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + [7985] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(276), 9, + ACTIONS(308), 9, sym_identifier, sym_integer, anon_sym_true, @@ -9552,7 +9645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(274), 20, + ACTIONS(306), 21, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -9573,10 +9667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [7878] = 3, + [8023] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 9, + ACTIONS(312), 9, sym_identifier, sym_integer, anon_sym_true, @@ -9586,7 +9680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(266), 20, + ACTIONS(310), 21, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -9607,15 +9702,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [7915] = 5, + [8061] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(400), 1, + ACTIONS(300), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(298), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8099] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(250), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(248), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8137] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(274), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(272), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8175] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(258), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(256), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8213] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(290), 21, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8251] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(403), 1, anon_sym_elseif, - STATE(111), 2, + ACTIONS(405), 1, + anon_sym_else, + STATE(232), 1, + sym_else, + STATE(114), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(396), 10, + ACTIONS(399), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9626,7 +9900,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(398), 15, + ACTIONS(401), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [8296] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(403), 1, + anon_sym_elseif, + ACTIONS(405), 1, + anon_sym_else, + STATE(228), 1, + sym_else, + STATE(117), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(407), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(409), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [8341] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(348), 1, + sym_identifier, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(356), 1, + anon_sym_LPAREN, + ACTIONS(359), 1, + sym_integer, + ACTIONS(368), 1, + anon_sym_LBRACK, + ACTIONS(371), 1, + anon_sym_PIPE, + ACTIONS(374), 1, + anon_sym_table, + STATE(115), 1, + aux_sym_match_repeat1, + STATE(258), 1, + sym_expression, + ACTIONS(362), 2, + sym_float, + sym_string, + ACTIONS(365), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(346), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8401] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(115), 1, + aux_sym_match_repeat1, + STATE(258), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(377), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8461] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(415), 1, + anon_sym_elseif, + STATE(117), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(411), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(413), 15, anon_sym_async, sym_identifier, sym_integer, @@ -9642,24 +10078,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [7955] = 11, + [8501] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(403), 1, - anon_sym_COLON, - ACTIONS(405), 1, - anon_sym_DASH_GT, - STATE(201), 1, + STATE(171), 1, sym_logic_operator, - STATE(213), 1, + STATE(172), 1, sym_math_operator, - ACTIONS(202), 2, + ACTIONS(224), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(208), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 3, + ACTIONS(222), 18, + 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_DASH_GT, + [8540] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(171), 1, + sym_logic_operator, + STATE(172), 1, + sym_math_operator, + ACTIONS(232), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(230), 18, + 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_DASH_GT, + [8579] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(418), 1, + anon_sym_RPAREN, + ACTIONS(258), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(256), 17, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8616] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(420), 1, + anon_sym_COLON, + ACTIONS(422), 1, + anon_sym_DASH_GT, + STATE(171), 1, + sym_logic_operator, + STATE(172), 1, + sym_math_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9667,7 +10204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_EQ, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, @@ -9676,48 +10213,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, ACTIONS(226), 7, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [8006] = 14, + [8667] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(336), 1, + ACTIONS(420), 1, + anon_sym_COLON, + STATE(171), 1, + sym_logic_operator, + STATE(172), 1, + sym_math_operator, + ACTIONS(204), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(202), 17, + 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_DASH_GT, + [8708] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(420), 1, + anon_sym_COLON, + ACTIONS(422), 1, + anon_sym_DASH_GT, + STATE(171), 1, + sym_logic_operator, + STATE(172), 1, + sym_math_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + 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(208), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [8759] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(424), 1, + anon_sym_DOT_DOT, + STATE(171), 1, + sym_logic_operator, + STATE(172), 1, + sym_math_operator, + ACTIONS(232), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(230), 17, + 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_DASH_GT, + [8800] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(426), 1, + anon_sym_RPAREN, + ACTIONS(258), 9, sym_identifier, - ACTIONS(341), 1, - anon_sym_LPAREN, - ACTIONS(344), 1, sym_integer, - ACTIONS(353), 1, - anon_sym_LBRACK, - ACTIONS(356), 1, - anon_sym_PIPE, - ACTIONS(359), 1, - anon_sym_table, - STATE(113), 1, - aux_sym_match_repeat1, - STATE(254), 1, - sym_expression, - ACTIONS(347), 2, - sym_float, - sym_string, - ACTIONS(350), 2, anon_sym_true, anon_sym_false, - ACTIONS(334), 3, - anon_sym_SEMI, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(256), 17, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8837] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(428), 1, anon_sym_RPAREN, + ACTIONS(258), 9, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(256), 17, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [8874] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(430), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(432), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [8908] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(302), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(138), 5, + 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, + [8942] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(250), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(248), 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, + [8976] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(274), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(272), 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, + [9010] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(268), 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, + [9044] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(434), 1, + anon_sym_RBRACK, + STATE(100), 1, + sym_expression, + STATE(152), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(142), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -9725,109 +10593,42 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [8063] = 5, + [9102] = 15, ACTIONS(3), 1, sym__comment, - STATE(201), 1, - sym_logic_operator, - STATE(213), 1, - sym_math_operator, - ACTIONS(218), 7, - anon_sym_async, + ACTIONS(43), 1, sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(216), 18, + ACTIONS(45), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [8102] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(407), 1, - anon_sym_EQ, - ACTIONS(234), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(232), 17, + ACTIONS(47), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [8139] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(49), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(55), 1, anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, + ACTIONS(57), 1, anon_sym_PIPE, - STATE(113), 1, - aux_sym_match_repeat1, - STATE(254), 1, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(436), 1, + anon_sym_RPAREN, + STATE(105), 1, sym_expression, - ACTIONS(168), 2, + STATE(138), 1, + aux_sym__expression_list, + ACTIONS(51), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - ACTIONS(362), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(138), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(142), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -9835,668 +10636,50 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [8196] = 5, + [9160] = 15, ACTIONS(3), 1, sym__comment, - STATE(201), 1, - sym_logic_operator, - STATE(213), 1, - sym_math_operator, - ACTIONS(214), 7, - anon_sym_async, + ACTIONS(43), 1, sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(212), 18, + ACTIONS(45), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [8235] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(403), 1, - anon_sym_COLON, - ACTIONS(405), 1, - anon_sym_DASH_GT, - STATE(201), 1, - sym_logic_operator, - STATE(213), 1, - sym_math_operator, - ACTIONS(202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(198), 3, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - ACTIONS(204), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - 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(196), 7, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [8286] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(403), 1, - anon_sym_COLON, - STATE(201), 1, - sym_logic_operator, - STATE(213), 1, - sym_math_operator, - ACTIONS(224), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 17, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [8327] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(409), 1, - anon_sym_DOT_DOT, - STATE(201), 1, - sym_logic_operator, - STATE(213), 1, - sym_math_operator, - ACTIONS(218), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(216), 17, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [8368] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(294), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8402] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(411), 1, - anon_sym_COLON, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(224), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 16, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [8442] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(413), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(47), 1, anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(438), 1, + anon_sym_RPAREN, + STATE(105), 1, + sym_expression, + STATE(133), 1, + aux_sym__expression_list, + ACTIONS(51), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(415), 15, - anon_sym_async, - sym_identifier, - sym_integer, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [8476] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(260), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(258), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8510] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(256), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(254), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8544] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(417), 1, - anon_sym_RPAREN, - ACTIONS(252), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(250), 16, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [8580] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(419), 1, - anon_sym_RPAREN, - ACTIONS(252), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(250), 16, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [8616] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(288), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(286), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8650] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(421), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(423), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [8684] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(246), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(248), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [8718] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(411), 1, - anon_sym_COLON, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(198), 3, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - ACTIONS(204), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(196), 6, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [8768] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(300), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8802] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(411), 1, - anon_sym_COLON, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(228), 3, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(226), 6, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [8852] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(270), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8886] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(280), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(278), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8920] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(244), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(242), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8954] = 3, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9218] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(292), 7, @@ -10509,8 +10692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(290), 19, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, @@ -10527,135 +10710,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [8988] = 3, + [9252] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 7, - anon_sym_async, + ACTIONS(43), 1, sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(266), 19, + ACTIONS(45), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [9022] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(276), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(274), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [9056] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(284), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(282), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [9090] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(425), 1, - anon_sym_RPAREN, - ACTIONS(252), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(250), 16, + ACTIONS(47), 1, anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(440), 1, + anon_sym_RPAREN, + STATE(105), 1, + sym_expression, + STATE(138), 1, + aux_sym__expression_list, + ACTIONS(51), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [9126] = 3, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9310] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(252), 7, + ACTIONS(278), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -10663,313 +10764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(250), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [9160] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(214), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(212), 17, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [9198] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 11, - ts_builtin_sym_end, + ACTIONS(276), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(264), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [9232] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(427), 1, - anon_sym_RBRACK, - STATE(108), 1, - sym_expression, - STATE(157), 1, - aux_sym_list_repeat1, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9287] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(429), 1, - anon_sym_RBRACK, - STATE(108), 1, - sym_expression, - STATE(154), 1, - aux_sym_list_repeat1, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9342] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_RPAREN, - STATE(104), 1, - sym_expression, - STATE(153), 1, - aux_sym__expression_list, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9397] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(433), 1, - anon_sym_RPAREN, - STATE(104), 1, - sym_expression, - STATE(153), 1, - aux_sym__expression_list, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9452] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(435), 1, - anon_sym_RBRACK, - STATE(108), 1, - sym_expression, - STATE(157), 1, - aux_sym_list_repeat1, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9507] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(248), 6, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_else, - ACTIONS(246), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -10979,114 +10780,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_elseif, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [9540] = 14, + [9344] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(437), 1, - anon_sym_RPAREN, - STATE(104), 1, - sym_expression, - STATE(148), 1, - aux_sym__expression_list, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9595] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(264), 6, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_else, - ACTIONS(262), 19, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [9628] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(439), 1, - sym_identifier, ACTIONS(442), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(445), 1, + anon_sym_LBRACE, + ACTIONS(448), 1, + anon_sym_LPAREN, + ACTIONS(451), 1, anon_sym_RPAREN, - ACTIONS(447), 1, + ACTIONS(453), 1, sym_integer, - ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_PIPE, ACTIONS(462), 1, + anon_sym_LBRACK, + ACTIONS(465), 1, + anon_sym_PIPE, + ACTIONS(468), 1, anon_sym_table, - STATE(104), 1, + STATE(105), 1, + sym_expression, + STATE(138), 1, + aux_sym__expression_list, + ACTIONS(456), 2, + sym_float, + sym_string, + ACTIONS(459), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9402] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(471), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(473), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [9436] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(296), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(294), 19, + anon_sym_LBRACE, + anon_sym_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, + [9470] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(475), 1, + anon_sym_RBRACK, + STATE(100), 1, + sym_expression, + STATE(156), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9528] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(254), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [9562] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(298), 19, + anon_sym_LBRACE, + anon_sym_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, + [9596] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(477), 1, + sym_identifier, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_LPAREN, + ACTIONS(486), 1, + sym_integer, + ACTIONS(495), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_RBRACK, + ACTIONS(500), 1, + anon_sym_PIPE, + ACTIONS(503), 1, + anon_sym_table, + STATE(100), 1, + sym_expression, + STATE(144), 1, + aux_sym_list_repeat1, + ACTIONS(489), 2, + sym_float, + sym_string, + ACTIONS(492), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9654] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(316), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 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, + [9688] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(258), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(256), 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, + [9722] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 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, + [9756] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(262), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(260), 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, + [9790] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(308), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(306), 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, + [9824] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(182), 1, + sym_logic_operator, + STATE(183), 1, + sym_math_operator, + ACTIONS(224), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(222), 17, + 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_DASH_GT, + [9862] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(506), 1, + anon_sym_RBRACK, + STATE(100), 1, sym_expression, STATE(153), 1, - aux_sym__expression_list, - ACTIONS(450), 2, + aux_sym_list_repeat1, + ACTIONS(51), 2, sym_float, sym_string, - ACTIONS(453), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(107), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -11094,10 +11268,14 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [9683] = 14, + [9920] = 15, ACTIONS(3), 1, sym__comment, + ACTIONS(43), 1, + sym_identifier, ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, anon_sym_LPAREN, ACTIONS(49), 1, sym_integer, @@ -11107,13 +11285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(59), 1, anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(465), 1, + ACTIONS(508), 1, anon_sym_RBRACK, - STATE(108), 1, + STATE(100), 1, sym_expression, - STATE(157), 1, + STATE(144), 1, aux_sym_list_repeat1, ACTIONS(51), 2, sym_float, @@ -11121,13 +11297,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(107), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -11135,10 +11311,14 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [9738] = 14, + [9978] = 15, ACTIONS(3), 1, sym__comment, + ACTIONS(43), 1, + sym_identifier, ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, anon_sym_LPAREN, ACTIONS(49), 1, sym_integer, @@ -11148,13 +11328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(59), 1, anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(467), 1, + ACTIONS(510), 1, anon_sym_RBRACK, - STATE(108), 1, + STATE(100), 1, sym_expression, - STATE(145), 1, + STATE(144), 1, aux_sym_list_repeat1, ACTIONS(51), 2, sym_float, @@ -11162,13 +11340,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(107), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -11176,10 +11354,84 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [9793] = 14, + [10036] = 3, ACTIONS(3), 1, sym__comment, + ACTIONS(264), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(266), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10070] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(512), 1, + anon_sym_COLON, + STATE(182), 1, + sym_logic_operator, + STATE(183), 1, + sym_math_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(208), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [10120] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, anon_sym_LPAREN, ACTIONS(49), 1, sym_integer, @@ -11189,13 +11441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(59), 1, anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(469), 1, + ACTIONS(514), 1, anon_sym_RBRACK, - STATE(108), 1, + STATE(100), 1, sym_expression, - STATE(149), 1, + STATE(144), 1, aux_sym_list_repeat1, ACTIONS(51), 2, sym_float, @@ -11203,13 +11453,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(107), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -11217,51 +11467,16 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [9848] = 14, + [10178] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(477), 1, - sym_integer, - ACTIONS(486), 1, - anon_sym_LBRACK, - ACTIONS(489), 1, - anon_sym_RBRACK, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(494), 1, - anon_sym_table, - STATE(108), 1, - sym_expression, - STATE(157), 1, - aux_sym_list_repeat1, - ACTIONS(480), 2, - sym_float, - sym_string, - ACTIONS(483), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9903] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(248), 7, + ACTIONS(512), 1, + anon_sym_COLON, + STATE(182), 1, + sym_logic_operator, + STATE(183), 1, + sym_math_operator, + ACTIONS(204), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -11269,43 +11484,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(246), 18, + ACTIONS(202), 16, 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_DASH_GT, + [10218] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(512), 1, + anon_sym_COLON, + STATE(182), 1, + sym_logic_operator, + STATE(183), 1, + sym_math_operator, + ACTIONS(212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(228), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(226), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [10268] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(266), 6, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_else, + ACTIONS(264), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [9936] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(264), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(262), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -11315,494 +11567,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, + anon_sym_elseif, + anon_sym_EQ_GT, anon_sym_DASH_GT, - [9969] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(372), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(374), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10001] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(246), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(248), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10033] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(497), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(499), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10065] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_SEMI, - ACTIONS(314), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(316), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10099] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(501), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(503), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10131] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(505), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(507), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10163] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(264), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10195] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(236), 1, - anon_sym_EQ, - ACTIONS(238), 1, - anon_sym_LT, - STATE(44), 1, - sym_assignment_operator, - STATE(289), 1, - sym_type, - ACTIONS(240), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(234), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - ACTIONS(232), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [10237] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(509), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(511), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10269] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(513), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(515), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, [10301] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(314), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(316), 14, + ACTIONS(254), 7, anon_sym_async, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10333] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(517), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(519), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10365] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(521), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(523), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10397] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(525), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(527), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10429] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(529), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(531), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10461] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(160), 1, - anon_sym_async, - ACTIONS(162), 1, - anon_sym_LBRACE, - ACTIONS(202), 1, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(312), 1, - sym_identifier, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(411), 1, - anon_sym_COLON, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - STATE(290), 1, - sym_block, - ACTIONS(208), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(310), 3, + ACTIONS(252), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(204), 4, - anon_sym_PLUS, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [10515] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [10334] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(533), 10, + ACTIONS(254), 6, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_else, + ACTIONS(252), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [10367] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(266), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(264), 18, + 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_DASH_GT, + [10400] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(166), 1, + anon_sym_async, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(512), 1, + anon_sym_COLON, + ACTIONS(516), 1, + anon_sym_LBRACE, + STATE(182), 1, + sym_logic_operator, + STATE(183), 1, + sym_math_operator, + STATE(289), 1, + sym_block, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [10454] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(253), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10506] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(332), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -11813,7 +11753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(535), 14, + ACTIONS(334), 14, anon_sym_async, sym_identifier, sym_integer, @@ -11828,10 +11768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [10547] = 3, + [10538] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(537), 10, + ACTIONS(518), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -11842,7 +11782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(539), 14, + ACTIONS(520), 14, anon_sym_async, sym_identifier, sym_integer, @@ -11857,7 +11797,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [10579] = 12, + [10570] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(248), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10622] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(78), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10674] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(522), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(524), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10706] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(247), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10758] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, + anon_sym_table, + STATE(123), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10810] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, + anon_sym_table, + STATE(122), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10862] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + STATE(163), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10914] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + STATE(243), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10966] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, @@ -11870,9 +12112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(37), 1, anon_sym_table, - ACTIONS(541), 1, + ACTIONS(528), 1, sym_identifier, - STATE(73), 1, + ACTIONS(530), 1, + anon_sym_LBRACE, + STATE(58), 1, sym_expression, ACTIONS(15), 2, sym_float, @@ -11886,7 +12130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 7, + STATE(61), 7, sym__expression_kind, sym_value, sym_index, @@ -11894,73 +12138,38 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [10628] = 12, + [11018] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(164), 1, + ACTIONS(170), 1, anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(244), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10677] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, sym_integer, - ACTIONS(55), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(57), 1, + ACTIONS(194), 1, anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, + ACTIONS(324), 1, sym_identifier, - STATE(91), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, + anon_sym_table, + STATE(121), 1, sym_expression, - ACTIONS(51), 2, + ACTIONS(174), 2, sym_float, sym_string, - ACTIONS(53), 2, + ACTIONS(176), 2, anon_sym_true, anon_sym_false, - STATE(110), 5, + STATE(148), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(107), 7, + STATE(146), 7, sym__expression_kind, sym_value, sym_index, @@ -11968,24 +12177,66 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [10726] = 6, + [11070] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(236), 1, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, + anon_sym_table, + STATE(119), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11122] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(240), 1, anon_sym_EQ, - STATE(43), 1, + ACTIONS(242), 1, + anon_sym_LT, + STATE(45), 1, sym_assignment_operator, - ACTIONS(240), 2, + STATE(302), 1, + sym_type, + ACTIONS(244), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(234), 4, + ACTIONS(238), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_LT, - ACTIONS(232), 15, + ACTIONS(236), 15, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, anon_sym_COLON, @@ -11999,47 +12250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [10763] = 12, + [11164] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, + ACTIONS(43), 1, sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(245), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10812] = 12, - ACTIONS(3), 1, - sym__comment, ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, anon_sym_LPAREN, ACTIONS(49), 1, sym_integer, @@ -12049,9 +12267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(59), 1, anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(77), 1, + STATE(94), 1, sym_expression, ACTIONS(51), 2, sym_float, @@ -12059,13 +12275,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(110), 5, + STATE(98), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(107), 7, + STATE(111), 7, sym__expression_kind, sym_value, sym_index, @@ -12073,7 +12289,46 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [10861] = 12, + [11216] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + STATE(150), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11268] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, @@ -12084,9 +12339,1103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(541), 1, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(528), 1, sym_identifier, - ACTIONS(543), 1, + ACTIONS(530), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11320] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11372] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + STATE(157), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11424] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(532), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(534), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [11456] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, + anon_sym_table, + STATE(124), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11508] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + STATE(158), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11560] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(336), 1, + anon_sym_SEMI, + ACTIONS(332), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(334), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [11594] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + STATE(77), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11646] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(536), 1, + anon_sym_table, + STATE(89), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11698] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(96), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11750] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(255), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11802] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(536), 1, + anon_sym_table, + STATE(93), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11854] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(381), 1, + anon_sym_PIPE, + ACTIONS(538), 1, + anon_sym_table, + STATE(236), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11906] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(381), 1, + anon_sym_PIPE, + ACTIONS(538), 1, + anon_sym_table, + STATE(237), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11958] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(97), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12010] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(95), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12062] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(540), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(542), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [12094] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(381), 1, + anon_sym_PIPE, + ACTIONS(538), 1, + anon_sym_table, + STATE(238), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12146] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(536), 1, + anon_sym_table, + STATE(88), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12198] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(536), 1, + anon_sym_table, + STATE(87), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12250] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + STATE(81), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12302] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(544), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(546), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [12334] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(536), 1, + anon_sym_table, + STATE(86), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12386] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + ACTIONS(548), 1, + anon_sym_table, + STATE(53), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12438] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(249), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12490] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(381), 1, + anon_sym_PIPE, + ACTIONS(538), 1, + anon_sym_table, + STATE(239), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12542] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(245), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12594] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(251), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12646] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(256), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12698] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + ACTIONS(548), 1, anon_sym_table, STATE(49), 1, sym_expression, @@ -12102,7 +13451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 7, + STATE(61), 7, sym__expression_kind, sym_value, sym_index, @@ -12110,81 +13459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [10910] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(232), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10959] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(243), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11008] = 12, + [12750] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, @@ -12195,83 +13470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(541), 1, + ACTIONS(528), 1, sym_identifier, - ACTIONS(543), 1, - anon_sym_table, - STATE(50), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11057] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(248), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11106] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(541), 1, - sym_identifier, - ACTIONS(543), 1, + ACTIONS(530), 1, + anon_sym_LBRACE, + ACTIONS(548), 1, anon_sym_table, STATE(48), 1, sym_expression, @@ -12287,7 +13490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 7, + STATE(61), 7, sym__expression_kind, sym_value, sym_index, @@ -12295,7 +13498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [11155] = 12, + [12802] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, @@ -12306,1490 +13509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(541), 1, + ACTIONS(528), 1, sym_identifier, - STATE(55), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11204] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, + ACTIONS(530), 1, + anon_sym_LBRACE, + ACTIONS(548), 1, anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(89), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11253] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(366), 1, - anon_sym_PIPE, - ACTIONS(545), 1, - anon_sym_table, - STATE(231), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11302] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(76), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11351] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(249), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11400] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_table, - STATE(87), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11449] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(246), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11498] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_table, - STATE(84), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11547] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_table, - STATE(86), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11596] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(366), 1, - anon_sym_PIPE, - ACTIONS(545), 1, - anon_sym_table, - STATE(233), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11645] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(549), 1, - anon_sym_table, - STATE(114), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11694] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(549), 1, - anon_sym_table, - STATE(112), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11743] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(251), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11792] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(366), 1, - anon_sym_PIPE, - ACTIONS(545), 1, - anon_sym_table, - STATE(235), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11841] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(250), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11890] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(247), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11939] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(366), 1, - anon_sym_PIPE, - ACTIONS(545), 1, - anon_sym_table, - STATE(238), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11988] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(366), 1, - anon_sym_PIPE, - ACTIONS(545), 1, - anon_sym_table, - STATE(237), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12037] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(143), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12086] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(541), 1, - sym_identifier, - STATE(79), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12135] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(93), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12184] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_table, - STATE(82), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12233] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(133), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12282] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(549), 1, - anon_sym_table, - STATE(119), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12331] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(549), 1, - anon_sym_table, - STATE(118), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12380] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(253), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12429] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(241), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12478] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(242), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12527] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(541), 1, - sym_identifier, - STATE(78), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12576] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(59), 1, - anon_sym_table, - ACTIONS(67), 1, - sym_identifier, - STATE(92), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12625] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(175), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12674] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(49), 1, - sym_integer, - ACTIONS(55), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_PIPE, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_table, - STATE(83), 1, - sym_expression, - ACTIONS(51), 2, - sym_float, - sym_string, - ACTIONS(53), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(107), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12723] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(122), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12772] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(549), 1, - anon_sym_table, - STATE(120), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12821] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - sym_identifier, - ACTIONS(324), 1, - anon_sym_table, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(252), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12870] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(541), 1, - sym_identifier, - STATE(53), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12919] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(541), 1, - sym_identifier, - STATE(52), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12968] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(541), 1, - sym_identifier, - ACTIONS(543), 1, - anon_sym_table, - STATE(47), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13017] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(541), 1, - sym_identifier, - ACTIONS(543), 1, - anon_sym_table, - STATE(45), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(62), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(58), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13066] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(164), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_PIPE, - ACTIONS(190), 1, - anon_sym_table, - ACTIONS(320), 1, - sym_identifier, - STATE(131), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(138), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(142), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13115] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_PIPE, - ACTIONS(37), 1, - anon_sym_table, - ACTIONS(541), 1, - sym_identifier, STATE(51), 1, sym_expression, ACTIONS(15), 2, @@ -13804,7 +13529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_table, sym_function, - STATE(58), 7, + STATE(61), 7, sym__expression_kind, sym_value, sym_index, @@ -13812,264 +13537,255 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [13164] = 5, + [12854] = 13, ACTIONS(3), 1, sym__comment, - STATE(206), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(218), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(216), 16, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [13197] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(411), 1, - anon_sym_COLON, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(326), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, sym_identifier, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13240] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(551), 1, - anon_sym_COLON, - STATE(206), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 4, - anon_sym_async, + ACTIONS(326), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13283] = 10, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(252), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12906] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(411), 1, - anon_sym_COLON, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(314), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(43), 1, sym_identifier, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13326] = 6, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(79), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(111), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12958] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(553), 1, - anon_sym_DOT_DOT, - STATE(206), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(218), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(216), 15, - anon_sym_async, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [13361] = 5, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(250), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13010] = 13, ACTIONS(3), 1, sym__comment, - STATE(206), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(214), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(212), 16, - anon_sym_async, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [13394] = 10, + ACTIONS(381), 1, + anon_sym_PIPE, + ACTIONS(538), 1, + anon_sym_table, + STATE(235), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13062] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(551), 1, - anon_sym_COLON, - STATE(206), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(226), 4, - anon_sym_async, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_PIPE, + ACTIONS(196), 1, + anon_sym_table, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13437] = 6, + STATE(244), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13114] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(551), 1, - anon_sym_COLON, - STATE(206), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(224), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 15, - anon_sym_async, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [13472] = 3, + STATE(55), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13166] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(557), 7, + ACTIONS(550), 10, + ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(555), 14, + ACTIONS(552), 14, anon_sym_async, sym_identifier, sym_integer, @@ -14084,85 +13800,634 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [13501] = 11, + [13198] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(411), 1, - anon_sym_COLON, - ACTIONS(559), 1, + ACTIONS(554), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(212), 1, - sym_logic_operator, - STATE(222), 1, - sym_math_operator, - ACTIONS(208), 2, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(556), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13230] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(254), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13282] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(558), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(560), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13314] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + ACTIONS(548), 1, + anon_sym_table, + STATE(52), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13366] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + STATE(56), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13418] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LBRACE, + STATE(57), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13470] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(254), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13502] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(266), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13534] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(562), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(564), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13566] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(566), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(568), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13598] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(170), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + sym_integer, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_table, + ACTIONS(381), 1, + anon_sym_PIPE, + STATE(246), 1, + sym_expression, + ACTIONS(174), 2, + sym_float, + sym_string, + ACTIONS(176), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(146), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13650] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(570), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(572), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13682] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(409), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [13714] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(240), 1, + anon_sym_EQ, + STATE(46), 1, + sym_assignment_operator, + ACTIONS(244), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(238), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(314), 3, - anon_sym_RPAREN, + ACTIONS(236), 15, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - ACTIONS(204), 4, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13546] = 10, + anon_sym_DASH_GT, + [13751] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(411), 1, + ACTIONS(512), 1, anon_sym_COLON, - STATE(212), 1, + STATE(182), 1, sym_logic_operator, - STATE(222), 1, + STATE(183), 1, sym_math_operator, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(330), 4, + ACTIONS(332), 4, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13589] = 5, + [13794] = 5, ACTIONS(3), 1, sym__comment, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, + STATE(193), 1, sym_logic_operator, - ACTIONS(214), 3, + STATE(194), 1, + sym_math_operator, + ACTIONS(232), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(212), 15, + ACTIONS(230), 16, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [13827] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(574), 1, + anon_sym_COLON, + STATE(193), 1, + sym_logic_operator, + STATE(194), 1, + sym_math_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(208), 4, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13870] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(574), 1, + anon_sym_COLON, + STATE(193), 1, + sym_logic_operator, + STATE(194), 1, + sym_math_operator, + ACTIONS(204), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(202), 15, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [13905] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(574), 1, + anon_sym_COLON, + STATE(193), 1, + sym_logic_operator, + STATE(194), 1, + sym_math_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(226), 4, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13948] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(576), 1, + anon_sym_DOT_DOT, + STATE(193), 1, + sym_logic_operator, + STATE(194), 1, + sym_math_operator, + ACTIONS(232), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(230), 15, anon_sym_async, anon_sym_LBRACE, anon_sym_COLON, @@ -14178,258 +14443,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [13621] = 12, + [13983] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(561), 1, - anon_sym_async, - ACTIONS(563), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(512), 1, anon_sym_COLON, - STATE(123), 1, - sym_block, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, + ACTIONS(578), 1, + anon_sym_SEMI, + STATE(182), 1, sym_logic_operator, - ACTIONS(208), 2, + STATE(183), 1, + sym_math_operator, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(332), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13667] = 12, + [14028] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(565), 1, - anon_sym_COLON, - ACTIONS(567), 1, - anon_sym_async, - ACTIONS(569), 1, - anon_sym_LBRACE, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, + STATE(193), 1, sym_logic_operator, - STATE(270), 1, - sym_block, - ACTIONS(208), 2, + STATE(194), 1, + sym_math_operator, + ACTIONS(224), 3, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(222), 16, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13713] = 12, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [14061] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(162), 1, + ACTIONS(582), 7, anon_sym_LBRACE, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(565), 1, - anon_sym_COLON, - ACTIONS(571), 1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(580), 14, anon_sym_async, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [14090] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(512), 1, + anon_sym_COLON, + STATE(182), 1, sym_logic_operator, - STATE(296), 1, - sym_block, - ACTIONS(208), 2, + STATE(183), 1, + sym_math_operator, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(338), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13759] = 12, + [14133] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(512), 1, anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_async, - STATE(169), 1, - sym_block, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, + STATE(182), 1, sym_logic_operator, - ACTIONS(208), 2, + STATE(183), 1, + sym_math_operator, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(342), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13805] = 10, + [14176] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - STATE(204), 1, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, sym_logic_operator, - ACTIONS(208), 2, + ACTIONS(204), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(202), 14, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [14210] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(584), 1, + anon_sym_COLON, + ACTIONS(586), 1, + anon_sym_async, + ACTIONS(588), 1, + anon_sym_LBRACE, + STATE(127), 1, + sym_block, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14256] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(322), 1, + anon_sym_LBRACE, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(584), 1, + anon_sym_COLON, + ACTIONS(590), 1, + anon_sym_async, + STATE(184), 1, + sym_block, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14302] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(584), 1, + anon_sym_COLON, + ACTIONS(586), 1, + anon_sym_async, + ACTIONS(588), 1, + anon_sym_LBRACE, + STATE(139), 1, + sym_block, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14348] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(584), 1, + anon_sym_COLON, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, ACTIONS(226), 3, anon_sym_async, anon_sym_LBRACE, anon_sym_EQ_GT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13847] = 12, + [14390] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - ACTIONS(567), 1, + ACTIONS(592), 1, anon_sym_async, - ACTIONS(569), 1, + ACTIONS(594), 1, anon_sym_LBRACE, - STATE(204), 1, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, sym_logic_operator, - STATE(271), 1, + STATE(273), 1, sym_block, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13893] = 12, + [14436] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(162), 1, - anon_sym_LBRACE, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - ACTIONS(571), 1, - anon_sym_async, - STATE(204), 1, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, sym_logic_operator, - STATE(280), 1, - sym_block, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(208), 3, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_EQ_GT, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13939] = 6, + [14478] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(565), 1, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(584), 1, anon_sym_COLON, - STATE(204), 1, + ACTIONS(596), 1, + anon_sym_async, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, + sym_logic_operator, + STATE(292), 1, + sym_block, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14524] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_DASH, + ACTIONS(422), 1, + anon_sym_DASH_GT, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(584), 1, + anon_sym_COLON, + ACTIONS(596), 1, + anon_sym_async, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + STATE(288), 1, + sym_block, + ACTIONS(218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(216), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14570] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, sym_logic_operator, ACTIONS(224), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(222), 14, + ACTIONS(222), 15, anon_sym_async, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -14442,354 +14920,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [13973] = 10, + [14602] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(565), 1, - anon_sym_COLON, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, - sym_logic_operator, - ACTIONS(208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 3, - anon_sym_async, + ACTIONS(322), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - ACTIONS(204), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [14015] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(202), 1, - anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(561), 1, - anon_sym_async, - ACTIONS(563), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - STATE(129), 1, + ACTIONS(590), 1, + anon_sym_async, + STATE(202), 1, sym_block, - STATE(204), 1, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, sym_logic_operator, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [14061] = 12, + [14648] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(592), 1, anon_sym_async, - STATE(171), 1, + ACTIONS(594), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + STATE(274), 1, sym_block, - STATE(204), 1, - sym_math_operator, - STATE(205), 1, - sym_logic_operator, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [14107] = 10, + [14694] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - ACTIONS(575), 1, + ACTIONS(598), 1, anon_sym_EQ_GT, - STATE(204), 1, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, sym_logic_operator, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [14147] = 10, + [14734] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, + ACTIONS(212), 1, anon_sym_DASH, - ACTIONS(405), 1, + ACTIONS(422), 1, anon_sym_DASH_GT, - ACTIONS(565), 1, + ACTIONS(584), 1, anon_sym_COLON, - ACTIONS(577), 1, + ACTIONS(600), 1, anon_sym_EQ_GT, - STATE(204), 1, + STATE(207), 1, sym_math_operator, - STATE(205), 1, + STATE(208), 1, sym_logic_operator, - ACTIONS(208), 2, + ACTIONS(218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 4, + ACTIONS(214), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(216), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [14187] = 3, + [14774] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(264), 5, + ACTIONS(254), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(262), 8, + ACTIONS(252), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, - [14208] = 3, + [14796] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(248), 5, + ACTIONS(266), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(246), 8, + ACTIONS(264), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, - [14229] = 3, + [14818] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(523), 5, + ACTIONS(542), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(521), 8, + ACTIONS(540), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, - [14250] = 3, + [14840] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(581), 5, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_PIPE, - ACTIONS(579), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_from, - anon_sym_table, - [14269] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(583), 5, + ACTIONS(602), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(489), 6, + ACTIONS(498), 7, + anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, - [14288] = 3, + [14860] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(585), 5, + ACTIONS(604), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(445), 6, + ACTIONS(451), 7, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, - [14307] = 3, + [14880] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(589), 5, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_PIPE, - ACTIONS(587), 6, + ACTIONS(606), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_from, anon_sym_table, - [14326] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(591), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_table, - ACTIONS(593), 5, + ACTIONS(608), 6, + anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, - [14344] = 3, + [14900] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(595), 5, + ACTIONS(610), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, + anon_sym_from, anon_sym_table, - ACTIONS(597), 5, + ACTIONS(612), 6, + anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, - [14362] = 7, + [14920] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(382), 1, + ACTIONS(614), 5, sym_identifier, - ACTIONS(599), 1, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_table, + ACTIONS(616), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_PIPE, + [14939] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(618), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_table, + ACTIONS(620), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_PIPE, + [14958] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(622), 1, anon_sym_elseif, - ACTIONS(601), 1, + ACTIONS(624), 1, anon_sym_else, - STATE(301), 1, + STATE(299), 1, sym_else, - STATE(266), 2, + STATE(270), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(380), 3, + ACTIONS(407), 3, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, - [14387] = 7, + [14983] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(374), 1, + ACTIONS(401), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(622), 1, anon_sym_elseif, - ACTIONS(601), 1, + ACTIONS(624), 1, anon_sym_else, - STATE(293), 1, + STATE(291), 1, sym_else, - STATE(269), 2, + STATE(268), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(372), 3, + ACTIONS(399), 3, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, - [14412] = 2, + [15008] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(603), 8, + ACTIONS(626), 1, + anon_sym_elseif, + ACTIONS(413), 2, + sym_identifier, + anon_sym_else, + STATE(270), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(411), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [15028] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(629), 2, + anon_sym_async, + sym_identifier, + ACTIONS(631), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE, + [15044] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(633), 8, anon_sym_table, anon_sym_any, anon_sym_bool, @@ -14798,1190 +15281,1195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_map, anon_sym_str, - [14426] = 3, + [15058] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(605), 2, - anon_sym_async, - sym_identifier, - ACTIONS(607), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE, - [14442] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(609), 1, - anon_sym_elseif, - ACTIONS(398), 2, + ACTIONS(473), 2, sym_identifier, anon_sym_else, - STATE(269), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(396), 3, + ACTIONS(471), 4, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - [14462] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(415), 2, - sym_identifier, - anon_sym_else, - ACTIONS(413), 4, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_elseif, - [14476] = 3, + [15072] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(423), 2, + ACTIONS(432), 2, sym_identifier, anon_sym_else, - ACTIONS(421), 4, + ACTIONS(430), 4, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_elseif, - [14490] = 6, + [15086] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(612), 1, - anon_sym_async, - ACTIONS(614), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(596), 1, + anon_sym_async, + ACTIONS(635), 1, anon_sym_LT, - STATE(59), 1, + STATE(102), 1, sym_block, - STATE(322), 1, + STATE(318), 1, sym_type, - [14509] = 6, + [15105] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(162), 1, - anon_sym_LBRACE, - ACTIONS(571), 1, + ACTIONS(592), 1, anon_sym_async, - ACTIONS(616), 1, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, anon_sym_LT, - STATE(98), 1, + STATE(140), 1, sym_block, - STATE(313), 1, + STATE(327), 1, sym_type, - [14528] = 6, + [15124] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(162), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(571), 1, + ACTIONS(596), 1, anon_sym_async, - ACTIONS(616), 1, + ACTIONS(635), 1, anon_sym_LT, - STATE(95), 1, - sym_block, - STATE(320), 1, - sym_type, - [14547] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(616), 1, - anon_sym_LT, - ACTIONS(618), 1, - anon_sym_async, - ACTIONS(620), 1, - anon_sym_LBRACE, - STATE(124), 1, - sym_block, - STATE(316), 1, - sym_type, - [14566] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(616), 1, - anon_sym_LT, - ACTIONS(618), 1, - anon_sym_async, - ACTIONS(620), 1, - anon_sym_LBRACE, - STATE(125), 1, - sym_block, - STATE(317), 1, - sym_type, - [14585] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(612), 1, - anon_sym_async, - ACTIONS(614), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, - anon_sym_LT, - STATE(60), 1, - sym_block, - STATE(310), 1, - sym_type, - [14604] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(567), 1, - anon_sym_async, - ACTIONS(569), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, - anon_sym_LT, - STATE(124), 1, + STATE(103), 1, sym_block, STATE(314), 1, sym_type, - [14623] = 6, + [15143] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(567), 1, - anon_sym_async, - ACTIONS(569), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(635), 1, anon_sym_LT, - STATE(125), 1, - sym_block, - STATE(309), 1, - sym_type, - [14642] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(517), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14652] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(501), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14662] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_PIPE, - STATE(284), 2, - sym_parameter, - aux_sym_function_repeat1, - [14676] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(38), 1, - sym_assignment_operator, - ACTIONS(240), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [14688] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_PIPE, - STATE(299), 2, - sym_parameter, - aux_sym_function_repeat1, - [14702] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14712] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(559), 1, - anon_sym_SEMI, - ACTIONS(314), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14724] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(628), 1, - anon_sym_PIPE, - STATE(299), 2, - sym_parameter, - aux_sym_function_repeat1, - [14738] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(630), 1, - anon_sym_PIPE, - STATE(287), 2, - sym_parameter, - aux_sym_function_repeat1, - [14752] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(42), 1, - sym_assignment_operator, - ACTIONS(240), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [14764] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(497), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14774] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_PIPE, - STATE(298), 2, - sym_parameter, - aux_sym_function_repeat1, - [14788] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(529), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14798] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(533), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14808] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(537), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14818] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(525), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14828] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(513), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14838] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(509), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14848] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(634), 1, - anon_sym_PIPE, - STATE(299), 2, - sym_parameter, - aux_sym_function_repeat1, - [14862] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(636), 1, - sym_identifier, + ACTIONS(637), 1, + anon_sym_async, ACTIONS(639), 1, - anon_sym_PIPE, - STATE(299), 2, - sym_parameter, - aux_sym_function_repeat1, - [14876] = 4, + anon_sym_LBRACE, + STATE(140), 1, + sym_block, + STATE(322), 1, + sym_type, + [15162] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(622), 1, - sym_identifier, + ACTIONS(635), 1, + anon_sym_LT, + ACTIONS(637), 1, + anon_sym_async, + ACTIONS(639), 1, + anon_sym_LBRACE, + STATE(131), 1, + sym_block, + STATE(324), 1, + sym_type, + [15181] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(635), 1, + anon_sym_LT, ACTIONS(641), 1, - anon_sym_PIPE, - STATE(302), 2, - sym_parameter, - aux_sym_function_repeat1, - [14890] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(372), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [14900] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - sym_identifier, + anon_sym_async, ACTIONS(643), 1, - anon_sym_PIPE, - STATE(299), 2, - sym_parameter, - aux_sym_function_repeat1, - [14914] = 2, + anon_sym_LBRACE, + STATE(71), 1, + sym_block, + STATE(316), 1, + sym_type, + [15200] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(505), 4, + ACTIONS(635), 1, + anon_sym_LT, + ACTIONS(641), 1, + anon_sym_async, + ACTIONS(643), 1, + anon_sym_LBRACE, + STATE(65), 1, + sym_block, + STATE(325), 1, + sym_type, + [15219] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(592), 1, + anon_sym_async, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, + anon_sym_LT, + STATE(131), 1, + sym_block, + STATE(328), 1, + sym_type, + [15238] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(550), 4, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [14924] = 4, + [15248] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(645), 1, sym_identifier, ACTIONS(647), 1, anon_sym_PIPE, - STATE(312), 1, - aux_sym_identifier_list_repeat1, - [14937] = 4, + STATE(287), 2, + sym_parameter, + aux_sym_function_repeat1, + [15262] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(649), 1, + STATE(43), 1, + sym_assignment_operator, + ACTIONS(244), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [15274] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(645), 1, sym_identifier, - ACTIONS(652), 1, - anon_sym_RPAREN, - STATE(305), 1, - aux_sym_map_repeat1, - [14950] = 4, + ACTIONS(649), 1, + anon_sym_PIPE, + STATE(284), 2, + sym_parameter, + aux_sym_function_repeat1, + [15288] = 4, ACTIONS(3), 1, sym__comment, + ACTIONS(651), 1, + sym_identifier, ACTIONS(654), 1, + anon_sym_PIPE, + STATE(287), 2, + sym_parameter, + aux_sym_function_repeat1, + [15302] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(544), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15312] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(518), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15322] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(332), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15332] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15342] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(532), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15352] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(522), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15362] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(645), 1, sym_identifier, ACTIONS(656), 1, - anon_sym_RPAREN, - STATE(305), 1, - aux_sym_map_repeat1, - [14963] = 4, + anon_sym_PIPE, + STATE(295), 2, + sym_parameter, + aux_sym_function_repeat1, + [15376] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(654), 1, + ACTIONS(645), 1, sym_identifier, ACTIONS(658), 1, - anon_sym_RPAREN, - STATE(305), 1, - aux_sym_map_repeat1, - [14976] = 4, + anon_sym_PIPE, + STATE(287), 2, + sym_parameter, + aux_sym_function_repeat1, + [15390] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(558), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15400] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(554), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15410] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(645), 1, sym_identifier, ACTIONS(660), 1, anon_sym_PIPE, - STATE(304), 1, - aux_sym_identifier_list_repeat1, - [14989] = 4, + STATE(287), 2, + sym_parameter, + aux_sym_function_repeat1, + [15424] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(567), 1, - anon_sym_async, - ACTIONS(569), 1, - anon_sym_LBRACE, - STATE(124), 1, - sym_block, - [15002] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(612), 1, - anon_sym_async, - ACTIONS(614), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_block, - [15015] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(162), 1, - anon_sym_LBRACE, - ACTIONS(571), 1, - anon_sym_async, - STATE(294), 1, - sym_block, - [15028] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(662), 1, - sym_identifier, - ACTIONS(665), 1, - anon_sym_PIPE, - STATE(312), 1, - aux_sym_identifier_list_repeat1, - [15041] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(162), 1, - anon_sym_LBRACE, - ACTIONS(571), 1, - anon_sym_async, - STATE(97), 1, - sym_block, - [15054] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(567), 1, - anon_sym_async, - ACTIONS(569), 1, - anon_sym_LBRACE, - STATE(140), 1, - sym_block, - [15067] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(573), 1, - anon_sym_async, - STATE(172), 1, - sym_block, - [15080] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(618), 1, - anon_sym_async, - ACTIONS(620), 1, - anon_sym_LBRACE, - STATE(140), 1, - sym_block, - [15093] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(618), 1, - anon_sym_async, - ACTIONS(620), 1, - anon_sym_LBRACE, - STATE(124), 1, - sym_block, - [15106] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(669), 1, + ACTIONS(562), 4, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(667), 2, - anon_sym_RPAREN, sym_identifier, - [15117] = 4, + [15434] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(654), 1, + ACTIONS(566), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15444] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(578), 1, + anon_sym_SEMI, + ACTIONS(332), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + [15456] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(47), 1, + sym_assignment_operator, + ACTIONS(244), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [15468] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(662), 1, + anon_sym_PIPE, + STATE(298), 2, + sym_parameter, + aux_sym_function_repeat1, + [15482] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(664), 1, + anon_sym_PIPE, + STATE(306), 2, + sym_parameter, + aux_sym_function_repeat1, + [15496] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(570), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [15506] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_PIPE, + STATE(287), 2, + sym_parameter, + aux_sym_function_repeat1, + [15520] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(668), 1, sym_identifier, ACTIONS(671), 1, - anon_sym_RPAREN, - STATE(305), 1, - aux_sym_map_repeat1, - [15130] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(162), 1, - anon_sym_LBRACE, - ACTIONS(571), 1, - anon_sym_async, - STATE(98), 1, - sym_block, - [15143] = 4, + anon_sym_PIPE, + STATE(307), 1, + aux_sym_identifier_list_repeat1, + [15533] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, - anon_sym_async, + sym_identifier, ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(258), 1, - sym_block, - [15156] = 4, + anon_sym_RBRACE, + STATE(323), 1, + aux_sym_map_repeat1, + [15546] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(612), 1, - anon_sym_async, - ACTIONS(614), 1, - anon_sym_LBRACE, - STATE(60), 1, - sym_block, - [15169] = 3, + ACTIONS(673), 1, + sym_identifier, + ACTIONS(677), 1, + anon_sym_RBRACE, + STATE(323), 1, + aux_sym_map_repeat1, + [15559] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(132), 1, + anon_sym_RBRACE, + ACTIONS(673), 1, + sym_identifier, + STATE(331), 1, + aux_sym_map_repeat1, + [15572] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(679), 1, - anon_sym_COMMA, - ACTIONS(677), 2, sym_identifier, + ACTIONS(681), 1, anon_sym_PIPE, - [15180] = 4, + STATE(307), 1, + aux_sym_identifier_list_repeat1, + [15585] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, + ACTIONS(71), 1, + anon_sym_RBRACE, + ACTIONS(673), 1, + sym_identifier, + STATE(308), 1, + aux_sym_map_repeat1, + [15598] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(573), 1, + ACTIONS(596), 1, anon_sym_async, - STATE(177), 1, + STATE(300), 1, sym_block, - [15193] = 3, + [15611] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_async, + STATE(102), 1, + sym_block, + [15624] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(683), 1, + anon_sym_async, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(261), 1, + sym_block, + [15637] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(641), 1, + anon_sym_async, + ACTIONS(643), 1, + anon_sym_LBRACE, + STATE(73), 1, + sym_block, + [15650] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, anon_sym_COMMA, - ACTIONS(681), 2, - sym_identifier, - anon_sym_PIPE, - [15204] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(195), 1, - sym_identifier_list, - [15214] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(202), 1, - sym_identifier_list, - [15224] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(210), 1, - sym_identifier_list, - [15234] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(341), 1, - sym_identifier_list, - [15244] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(214), 1, - sym_identifier_list, - [15254] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(230), 1, - sym_identifier_list, - [15264] = 2, - ACTIONS(3), 1, - sym__comment, ACTIONS(687), 2, - anon_sym_RPAREN, - sym_identifier, - [15272] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(229), 1, - sym_identifier_list, - [15282] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(228), 1, - sym_identifier_list, - [15292] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(616), 1, - anon_sym_LT, - STATE(323), 1, - sym_type, - [15302] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(689), 2, sym_identifier, anon_sym_PIPE, - [15310] = 3, + [15661] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(352), 1, - sym_identifier_list, - [15320] = 3, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_async, + STATE(101), 1, + sym_block, + [15674] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(685), 1, - anon_sym_PIPE, - STATE(199), 1, - sym_identifier_list, - [15330] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(665), 2, + ACTIONS(679), 1, sym_identifier, - anon_sym_PIPE, - [15338] = 2, - ACTIONS(3), 1, - sym__comment, ACTIONS(691), 1, - sym_identifier, - [15345] = 2, + anon_sym_PIPE, + STATE(311), 1, + aux_sym_identifier_list_repeat1, + [15687] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(693), 1, - anon_sym_from, - [15352] = 2, + ACTIONS(322), 1, + anon_sym_LBRACE, + ACTIONS(590), 1, + anon_sym_async, + STATE(197), 1, + sym_block, + [15700] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(695), 1, - anon_sym_RPAREN, - [15359] = 2, + anon_sym_COMMA, + ACTIONS(693), 2, + anon_sym_RBRACE, + sym_identifier, + [15711] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(637), 1, + anon_sym_async, + ACTIONS(639), 1, + anon_sym_LBRACE, + STATE(128), 1, + sym_block, + [15724] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(697), 1, - anon_sym_LBRACE, - [15366] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(699), 1, - anon_sym_LPAREN, - [15373] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(701), 1, - anon_sym_LBRACE, - [15380] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(703), 1, - anon_sym_LBRACE, - [15387] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(705), 1, - anon_sym_LBRACE, - [15394] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(707), 1, - anon_sym_LBRACE, - [15401] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(709), 1, - sym_string, - [15408] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(711), 1, - anon_sym_GT, - [15415] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(713), 1, sym_identifier, - [15422] = 2, + ACTIONS(700), 1, + anon_sym_RBRACE, + STATE(323), 1, + aux_sym_map_repeat1, + [15737] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(715), 1, + ACTIONS(637), 1, + anon_sym_async, + ACTIONS(639), 1, + anon_sym_LBRACE, + STATE(140), 1, + sym_block, + [15750] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(641), 1, + anon_sym_async, + ACTIONS(643), 1, + anon_sym_LBRACE, + STATE(71), 1, + sym_block, + [15763] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(704), 1, + anon_sym_COMMA, + ACTIONS(702), 2, + sym_identifier, + anon_sym_PIPE, + [15774] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(592), 1, + anon_sym_async, + ACTIONS(594), 1, + anon_sym_LBRACE, + STATE(128), 1, + sym_block, + [15787] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(592), 1, + anon_sym_async, + ACTIONS(594), 1, + anon_sym_LBRACE, + STATE(140), 1, + sym_block, + [15800] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(673), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_RBRACE, + STATE(309), 1, + aux_sym_map_repeat1, + [15813] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(322), 1, + anon_sym_LBRACE, + ACTIONS(590), 1, + anon_sym_async, + STATE(229), 1, + sym_block, + [15826] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(673), 1, + sym_identifier, + ACTIONS(708), 1, + anon_sym_RBRACE, + STATE(323), 1, + aux_sym_map_repeat1, + [15839] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(198), 1, + sym_identifier_list, + [15849] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(363), 1, + sym_identifier_list, + [15859] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(179), 1, + sym_identifier_list, + [15869] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(176), 1, + sym_identifier_list, + [15879] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(205), 1, + sym_identifier_list, + [15889] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(635), 1, + anon_sym_LT, + STATE(326), 1, + sym_type, + [15899] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(712), 2, + sym_identifier, + anon_sym_PIPE, + [15907] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(714), 2, + anon_sym_RBRACE, + sym_identifier, + [15915] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(212), 1, + sym_identifier_list, + [15925] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(186), 1, + sym_identifier_list, + [15935] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(358), 1, + sym_identifier_list, + [15945] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(218), 1, + sym_identifier_list, + [15955] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(671), 2, + sym_identifier, + anon_sym_PIPE, + [15963] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(710), 1, + anon_sym_PIPE, + STATE(203), 1, + sym_identifier_list, + [15973] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(716), 1, + sym_identifier, + [15980] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(718), 1, + sym_identifier, + [15987] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(720), 1, + anon_sym_RPAREN, + [15994] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(722), 1, + anon_sym_LBRACE, + [16001] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + [16008] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(726), 1, + anon_sym_LBRACE, + [16015] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(728), 1, + anon_sym_LBRACE, + [16022] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(730), 1, + anon_sym_LBRACE, + [16029] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(732), 1, + anon_sym_LBRACE, + [16036] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(734), 1, + anon_sym_into, + [16043] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(736), 1, + anon_sym_LPAREN, + [16050] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(738), 1, + anon_sym_in, + [16057] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(740), 1, anon_sym_from, - [15429] = 2, + [16064] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(717), 1, - anon_sym_LPAREN, - [15436] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(719), 1, + ACTIONS(742), 1, sym_identifier, - [15443] = 2, + [16071] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(721), 1, - anon_sym_RPAREN, - [15450] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(723), 1, - anon_sym_RPAREN, - [15457] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(725), 1, - anon_sym_in, - [15464] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(727), 1, - anon_sym_LBRACE, - [15471] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(729), 1, - anon_sym_RPAREN, - [15478] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(731), 1, - anon_sym_into, - [15485] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_RPAREN, - [15492] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(735), 1, - ts_builtin_sym_end, - [15499] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(737), 1, - anon_sym_in, - [15506] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(739), 1, + ACTIONS(744), 1, sym_string, - [15513] = 2, + [16078] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(741), 1, - anon_sym_LBRACE, - [15520] = 2, + ACTIONS(746), 1, + anon_sym_GT, + [16085] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(743), 1, + ACTIONS(748), 1, anon_sym_RPAREN, - [15527] = 2, + [16092] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(745), 1, + ACTIONS(750), 1, + anon_sym_from, + [16099] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(752), 1, + anon_sym_LBRACE, + [16106] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(754), 1, + anon_sym_RPAREN, + [16113] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(756), 1, anon_sym_into, - [15534] = 2, + [16120] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(747), 1, - anon_sym_LPAREN, - [15541] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(749), 1, + ACTIONS(758), 1, anon_sym_EQ, - [15548] = 2, + [16127] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(751), 1, + ACTIONS(760), 1, sym_identifier, + [16134] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(762), 1, + anon_sym_LPAREN, + [16141] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(764), 1, + anon_sym_in, + [16148] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(766), 1, + anon_sym_LBRACE, + [16155] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(768), 1, + sym_string, + [16162] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(770), 1, + ts_builtin_sym_end, + [16169] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(772), 1, + anon_sym_RPAREN, + [16176] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(774), 1, + anon_sym_RPAREN, + [16183] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(776), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 95, - [SMALL_STATE(4)] = 190, - [SMALL_STATE(5)] = 285, - [SMALL_STATE(6)] = 374, - [SMALL_STATE(7)] = 463, + [SMALL_STATE(3)] = 92, + [SMALL_STATE(4)] = 184, + [SMALL_STATE(5)] = 276, + [SMALL_STATE(6)] = 368, + [SMALL_STATE(7)] = 460, [SMALL_STATE(8)] = 552, - [SMALL_STATE(9)] = 660, - [SMALL_STATE(10)] = 767, - [SMALL_STATE(11)] = 874, - [SMALL_STATE(12)] = 981, - [SMALL_STATE(13)] = 1088, - [SMALL_STATE(14)] = 1195, - [SMALL_STATE(15)] = 1302, - [SMALL_STATE(16)] = 1409, - [SMALL_STATE(17)] = 1516, - [SMALL_STATE(18)] = 1623, - [SMALL_STATE(19)] = 1730, - [SMALL_STATE(20)] = 1837, - [SMALL_STATE(21)] = 1944, - [SMALL_STATE(22)] = 2051, - [SMALL_STATE(23)] = 2158, - [SMALL_STATE(24)] = 2265, - [SMALL_STATE(25)] = 2369, - [SMALL_STATE(26)] = 2473, - [SMALL_STATE(27)] = 2577, - [SMALL_STATE(28)] = 2681, - [SMALL_STATE(29)] = 2785, - [SMALL_STATE(30)] = 2889, - [SMALL_STATE(31)] = 2993, - [SMALL_STATE(32)] = 3097, - [SMALL_STATE(33)] = 3201, - [SMALL_STATE(34)] = 3305, - [SMALL_STATE(35)] = 3409, - [SMALL_STATE(36)] = 3513, - [SMALL_STATE(37)] = 3617, - [SMALL_STATE(38)] = 3721, - [SMALL_STATE(39)] = 3824, - [SMALL_STATE(40)] = 3927, - [SMALL_STATE(41)] = 4030, - [SMALL_STATE(42)] = 4133, - [SMALL_STATE(43)] = 4236, - [SMALL_STATE(44)] = 4339, - [SMALL_STATE(45)] = 4442, - [SMALL_STATE(46)] = 4511, - [SMALL_STATE(47)] = 4568, - [SMALL_STATE(48)] = 4627, - [SMALL_STATE(49)] = 4684, - [SMALL_STATE(50)] = 4743, - [SMALL_STATE(51)] = 4812, - [SMALL_STATE(52)] = 4880, - [SMALL_STATE(53)] = 4938, - [SMALL_STATE(54)] = 5006, - [SMALL_STATE(55)] = 5068, - [SMALL_STATE(56)] = 5124, - [SMALL_STATE(57)] = 5175, - [SMALL_STATE(58)] = 5226, - [SMALL_STATE(59)] = 5277, - [SMALL_STATE(60)] = 5328, - [SMALL_STATE(61)] = 5379, - [SMALL_STATE(62)] = 5430, - [SMALL_STATE(63)] = 5481, - [SMALL_STATE(64)] = 5532, - [SMALL_STATE(65)] = 5583, - [SMALL_STATE(66)] = 5634, - [SMALL_STATE(67)] = 5685, - [SMALL_STATE(68)] = 5736, - [SMALL_STATE(69)] = 5787, - [SMALL_STATE(70)] = 5844, - [SMALL_STATE(71)] = 5895, - [SMALL_STATE(72)] = 5946, - [SMALL_STATE(73)] = 6034, - [SMALL_STATE(74)] = 6106, - [SMALL_STATE(75)] = 6173, - [SMALL_STATE(76)] = 6238, - [SMALL_STATE(77)] = 6323, - [SMALL_STATE(78)] = 6408, - [SMALL_STATE(79)] = 6473, - [SMALL_STATE(80)] = 6538, - [SMALL_STATE(81)] = 6608, - [SMALL_STATE(82)] = 6678, - [SMALL_STATE(83)] = 6721, - [SMALL_STATE(84)] = 6766, - [SMALL_STATE(85)] = 6811, - [SMALL_STATE(86)] = 6854, - [SMALL_STATE(87)] = 6909, - [SMALL_STATE(88)] = 6964, - [SMALL_STATE(89)] = 7002, - [SMALL_STATE(90)] = 7044, - [SMALL_STATE(91)] = 7082, - [SMALL_STATE(92)] = 7136, - [SMALL_STATE(93)] = 7180, - [SMALL_STATE(94)] = 7234, - [SMALL_STATE(95)] = 7271, - [SMALL_STATE(96)] = 7308, - [SMALL_STATE(97)] = 7353, - [SMALL_STATE(98)] = 7390, - [SMALL_STATE(99)] = 7427, - [SMALL_STATE(100)] = 7464, - [SMALL_STATE(101)] = 7509, - [SMALL_STATE(102)] = 7546, - [SMALL_STATE(103)] = 7583, - [SMALL_STATE(104)] = 7620, - [SMALL_STATE(105)] = 7675, - [SMALL_STATE(106)] = 7712, - [SMALL_STATE(107)] = 7749, - [SMALL_STATE(108)] = 7786, - [SMALL_STATE(109)] = 7841, - [SMALL_STATE(110)] = 7878, - [SMALL_STATE(111)] = 7915, - [SMALL_STATE(112)] = 7955, - [SMALL_STATE(113)] = 8006, - [SMALL_STATE(114)] = 8063, - [SMALL_STATE(115)] = 8102, - [SMALL_STATE(116)] = 8139, - [SMALL_STATE(117)] = 8196, - [SMALL_STATE(118)] = 8235, - [SMALL_STATE(119)] = 8286, - [SMALL_STATE(120)] = 8327, - [SMALL_STATE(121)] = 8368, - [SMALL_STATE(122)] = 8402, - [SMALL_STATE(123)] = 8442, - [SMALL_STATE(124)] = 8476, - [SMALL_STATE(125)] = 8510, - [SMALL_STATE(126)] = 8544, - [SMALL_STATE(127)] = 8580, - [SMALL_STATE(128)] = 8616, - [SMALL_STATE(129)] = 8650, - [SMALL_STATE(130)] = 8684, - [SMALL_STATE(131)] = 8718, - [SMALL_STATE(132)] = 8768, - [SMALL_STATE(133)] = 8802, - [SMALL_STATE(134)] = 8852, - [SMALL_STATE(135)] = 8886, - [SMALL_STATE(136)] = 8920, - [SMALL_STATE(137)] = 8954, - [SMALL_STATE(138)] = 8988, - [SMALL_STATE(139)] = 9022, - [SMALL_STATE(140)] = 9056, - [SMALL_STATE(141)] = 9090, - [SMALL_STATE(142)] = 9126, - [SMALL_STATE(143)] = 9160, - [SMALL_STATE(144)] = 9198, - [SMALL_STATE(145)] = 9232, - [SMALL_STATE(146)] = 9287, - [SMALL_STATE(147)] = 9342, - [SMALL_STATE(148)] = 9397, - [SMALL_STATE(149)] = 9452, - [SMALL_STATE(150)] = 9507, - [SMALL_STATE(151)] = 9540, - [SMALL_STATE(152)] = 9595, - [SMALL_STATE(153)] = 9628, - [SMALL_STATE(154)] = 9683, - [SMALL_STATE(155)] = 9738, - [SMALL_STATE(156)] = 9793, - [SMALL_STATE(157)] = 9848, - [SMALL_STATE(158)] = 9903, - [SMALL_STATE(159)] = 9936, - [SMALL_STATE(160)] = 9969, - [SMALL_STATE(161)] = 10001, - [SMALL_STATE(162)] = 10033, - [SMALL_STATE(163)] = 10065, - [SMALL_STATE(164)] = 10099, - [SMALL_STATE(165)] = 10131, - [SMALL_STATE(166)] = 10163, - [SMALL_STATE(167)] = 10195, - [SMALL_STATE(168)] = 10237, - [SMALL_STATE(169)] = 10269, - [SMALL_STATE(170)] = 10301, - [SMALL_STATE(171)] = 10333, - [SMALL_STATE(172)] = 10365, - [SMALL_STATE(173)] = 10397, - [SMALL_STATE(174)] = 10429, - [SMALL_STATE(175)] = 10461, - [SMALL_STATE(176)] = 10515, - [SMALL_STATE(177)] = 10547, - [SMALL_STATE(178)] = 10579, - [SMALL_STATE(179)] = 10628, - [SMALL_STATE(180)] = 10677, - [SMALL_STATE(181)] = 10726, - [SMALL_STATE(182)] = 10763, - [SMALL_STATE(183)] = 10812, - [SMALL_STATE(184)] = 10861, - [SMALL_STATE(185)] = 10910, - [SMALL_STATE(186)] = 10959, - [SMALL_STATE(187)] = 11008, - [SMALL_STATE(188)] = 11057, - [SMALL_STATE(189)] = 11106, - [SMALL_STATE(190)] = 11155, - [SMALL_STATE(191)] = 11204, - [SMALL_STATE(192)] = 11253, - [SMALL_STATE(193)] = 11302, - [SMALL_STATE(194)] = 11351, - [SMALL_STATE(195)] = 11400, - [SMALL_STATE(196)] = 11449, - [SMALL_STATE(197)] = 11498, - [SMALL_STATE(198)] = 11547, - [SMALL_STATE(199)] = 11596, - [SMALL_STATE(200)] = 11645, - [SMALL_STATE(201)] = 11694, - [SMALL_STATE(202)] = 11743, - [SMALL_STATE(203)] = 11792, - [SMALL_STATE(204)] = 11841, - [SMALL_STATE(205)] = 11890, - [SMALL_STATE(206)] = 11939, - [SMALL_STATE(207)] = 11988, - [SMALL_STATE(208)] = 12037, - [SMALL_STATE(209)] = 12086, - [SMALL_STATE(210)] = 12135, - [SMALL_STATE(211)] = 12184, - [SMALL_STATE(212)] = 12233, - [SMALL_STATE(213)] = 12282, - [SMALL_STATE(214)] = 12331, - [SMALL_STATE(215)] = 12380, - [SMALL_STATE(216)] = 12429, - [SMALL_STATE(217)] = 12478, - [SMALL_STATE(218)] = 12527, - [SMALL_STATE(219)] = 12576, - [SMALL_STATE(220)] = 12625, - [SMALL_STATE(221)] = 12674, - [SMALL_STATE(222)] = 12723, - [SMALL_STATE(223)] = 12772, - [SMALL_STATE(224)] = 12821, - [SMALL_STATE(225)] = 12870, - [SMALL_STATE(226)] = 12919, - [SMALL_STATE(227)] = 12968, - [SMALL_STATE(228)] = 13017, - [SMALL_STATE(229)] = 13066, - [SMALL_STATE(230)] = 13115, - [SMALL_STATE(231)] = 13164, - [SMALL_STATE(232)] = 13197, - [SMALL_STATE(233)] = 13240, - [SMALL_STATE(234)] = 13283, - [SMALL_STATE(235)] = 13326, - [SMALL_STATE(236)] = 13361, - [SMALL_STATE(237)] = 13394, - [SMALL_STATE(238)] = 13437, - [SMALL_STATE(239)] = 13472, - [SMALL_STATE(240)] = 13501, - [SMALL_STATE(241)] = 13546, - [SMALL_STATE(242)] = 13589, - [SMALL_STATE(243)] = 13621, - [SMALL_STATE(244)] = 13667, - [SMALL_STATE(245)] = 13713, - [SMALL_STATE(246)] = 13759, - [SMALL_STATE(247)] = 13805, - [SMALL_STATE(248)] = 13847, - [SMALL_STATE(249)] = 13893, - [SMALL_STATE(250)] = 13939, - [SMALL_STATE(251)] = 13973, - [SMALL_STATE(252)] = 14015, - [SMALL_STATE(253)] = 14061, - [SMALL_STATE(254)] = 14107, - [SMALL_STATE(255)] = 14147, - [SMALL_STATE(256)] = 14187, - [SMALL_STATE(257)] = 14208, - [SMALL_STATE(258)] = 14229, - [SMALL_STATE(259)] = 14250, - [SMALL_STATE(260)] = 14269, - [SMALL_STATE(261)] = 14288, - [SMALL_STATE(262)] = 14307, - [SMALL_STATE(263)] = 14326, - [SMALL_STATE(264)] = 14344, - [SMALL_STATE(265)] = 14362, - [SMALL_STATE(266)] = 14387, - [SMALL_STATE(267)] = 14412, - [SMALL_STATE(268)] = 14426, - [SMALL_STATE(269)] = 14442, - [SMALL_STATE(270)] = 14462, - [SMALL_STATE(271)] = 14476, - [SMALL_STATE(272)] = 14490, - [SMALL_STATE(273)] = 14509, - [SMALL_STATE(274)] = 14528, - [SMALL_STATE(275)] = 14547, - [SMALL_STATE(276)] = 14566, - [SMALL_STATE(277)] = 14585, - [SMALL_STATE(278)] = 14604, - [SMALL_STATE(279)] = 14623, - [SMALL_STATE(280)] = 14642, - [SMALL_STATE(281)] = 14652, - [SMALL_STATE(282)] = 14662, - [SMALL_STATE(283)] = 14676, - [SMALL_STATE(284)] = 14688, - [SMALL_STATE(285)] = 14702, - [SMALL_STATE(286)] = 14712, - [SMALL_STATE(287)] = 14724, - [SMALL_STATE(288)] = 14738, - [SMALL_STATE(289)] = 14752, - [SMALL_STATE(290)] = 14764, - [SMALL_STATE(291)] = 14774, - [SMALL_STATE(292)] = 14788, - [SMALL_STATE(293)] = 14798, - [SMALL_STATE(294)] = 14808, - [SMALL_STATE(295)] = 14818, - [SMALL_STATE(296)] = 14828, - [SMALL_STATE(297)] = 14838, - [SMALL_STATE(298)] = 14848, - [SMALL_STATE(299)] = 14862, - [SMALL_STATE(300)] = 14876, - [SMALL_STATE(301)] = 14890, - [SMALL_STATE(302)] = 14900, - [SMALL_STATE(303)] = 14914, - [SMALL_STATE(304)] = 14924, - [SMALL_STATE(305)] = 14937, - [SMALL_STATE(306)] = 14950, - [SMALL_STATE(307)] = 14963, - [SMALL_STATE(308)] = 14976, - [SMALL_STATE(309)] = 14989, - [SMALL_STATE(310)] = 15002, - [SMALL_STATE(311)] = 15015, - [SMALL_STATE(312)] = 15028, - [SMALL_STATE(313)] = 15041, - [SMALL_STATE(314)] = 15054, - [SMALL_STATE(315)] = 15067, - [SMALL_STATE(316)] = 15080, - [SMALL_STATE(317)] = 15093, - [SMALL_STATE(318)] = 15106, - [SMALL_STATE(319)] = 15117, - [SMALL_STATE(320)] = 15130, - [SMALL_STATE(321)] = 15143, - [SMALL_STATE(322)] = 15156, - [SMALL_STATE(323)] = 15169, - [SMALL_STATE(324)] = 15180, - [SMALL_STATE(325)] = 15193, - [SMALL_STATE(326)] = 15204, - [SMALL_STATE(327)] = 15214, - [SMALL_STATE(328)] = 15224, - [SMALL_STATE(329)] = 15234, - [SMALL_STATE(330)] = 15244, - [SMALL_STATE(331)] = 15254, - [SMALL_STATE(332)] = 15264, - [SMALL_STATE(333)] = 15272, - [SMALL_STATE(334)] = 15282, - [SMALL_STATE(335)] = 15292, - [SMALL_STATE(336)] = 15302, - [SMALL_STATE(337)] = 15310, - [SMALL_STATE(338)] = 15320, - [SMALL_STATE(339)] = 15330, - [SMALL_STATE(340)] = 15338, - [SMALL_STATE(341)] = 15345, - [SMALL_STATE(342)] = 15352, - [SMALL_STATE(343)] = 15359, - [SMALL_STATE(344)] = 15366, - [SMALL_STATE(345)] = 15373, - [SMALL_STATE(346)] = 15380, - [SMALL_STATE(347)] = 15387, - [SMALL_STATE(348)] = 15394, - [SMALL_STATE(349)] = 15401, - [SMALL_STATE(350)] = 15408, - [SMALL_STATE(351)] = 15415, - [SMALL_STATE(352)] = 15422, - [SMALL_STATE(353)] = 15429, - [SMALL_STATE(354)] = 15436, - [SMALL_STATE(355)] = 15443, - [SMALL_STATE(356)] = 15450, - [SMALL_STATE(357)] = 15457, - [SMALL_STATE(358)] = 15464, - [SMALL_STATE(359)] = 15471, - [SMALL_STATE(360)] = 15478, - [SMALL_STATE(361)] = 15485, - [SMALL_STATE(362)] = 15492, - [SMALL_STATE(363)] = 15499, - [SMALL_STATE(364)] = 15506, - [SMALL_STATE(365)] = 15513, - [SMALL_STATE(366)] = 15520, - [SMALL_STATE(367)] = 15527, - [SMALL_STATE(368)] = 15534, - [SMALL_STATE(369)] = 15541, - [SMALL_STATE(370)] = 15548, + [SMALL_STATE(9)] = 662, + [SMALL_STATE(10)] = 770, + [SMALL_STATE(11)] = 880, + [SMALL_STATE(12)] = 987, + [SMALL_STATE(13)] = 1094, + [SMALL_STATE(14)] = 1201, + [SMALL_STATE(15)] = 1308, + [SMALL_STATE(16)] = 1415, + [SMALL_STATE(17)] = 1522, + [SMALL_STATE(18)] = 1629, + [SMALL_STATE(19)] = 1736, + [SMALL_STATE(20)] = 1843, + [SMALL_STATE(21)] = 1950, + [SMALL_STATE(22)] = 2057, + [SMALL_STATE(23)] = 2164, + [SMALL_STATE(24)] = 2271, + [SMALL_STATE(25)] = 2378, + [SMALL_STATE(26)] = 2485, + [SMALL_STATE(27)] = 2589, + [SMALL_STATE(28)] = 2693, + [SMALL_STATE(29)] = 2797, + [SMALL_STATE(30)] = 2901, + [SMALL_STATE(31)] = 3005, + [SMALL_STATE(32)] = 3109, + [SMALL_STATE(33)] = 3213, + [SMALL_STATE(34)] = 3317, + [SMALL_STATE(35)] = 3421, + [SMALL_STATE(36)] = 3525, + [SMALL_STATE(37)] = 3629, + [SMALL_STATE(38)] = 3733, + [SMALL_STATE(39)] = 3837, + [SMALL_STATE(40)] = 3941, + [SMALL_STATE(41)] = 4044, + [SMALL_STATE(42)] = 4147, + [SMALL_STATE(43)] = 4250, + [SMALL_STATE(44)] = 4353, + [SMALL_STATE(45)] = 4456, + [SMALL_STATE(46)] = 4559, + [SMALL_STATE(47)] = 4662, + [SMALL_STATE(48)] = 4765, + [SMALL_STATE(49)] = 4824, + [SMALL_STATE(50)] = 4893, + [SMALL_STATE(51)] = 4950, + [SMALL_STATE(52)] = 5019, + [SMALL_STATE(53)] = 5078, + [SMALL_STATE(54)] = 5135, + [SMALL_STATE(55)] = 5197, + [SMALL_STATE(56)] = 5265, + [SMALL_STATE(57)] = 5323, + [SMALL_STATE(58)] = 5391, + [SMALL_STATE(59)] = 5447, + [SMALL_STATE(60)] = 5498, + [SMALL_STATE(61)] = 5549, + [SMALL_STATE(62)] = 5600, + [SMALL_STATE(63)] = 5651, + [SMALL_STATE(64)] = 5702, + [SMALL_STATE(65)] = 5759, + [SMALL_STATE(66)] = 5810, + [SMALL_STATE(67)] = 5861, + [SMALL_STATE(68)] = 5912, + [SMALL_STATE(69)] = 5973, + [SMALL_STATE(70)] = 6064, + [SMALL_STATE(71)] = 6115, + [SMALL_STATE(72)] = 6166, + [SMALL_STATE(73)] = 6217, + [SMALL_STATE(74)] = 6268, + [SMALL_STATE(75)] = 6319, + [SMALL_STATE(76)] = 6370, + [SMALL_STATE(77)] = 6421, + [SMALL_STATE(78)] = 6493, + [SMALL_STATE(79)] = 6581, + [SMALL_STATE(80)] = 6669, + [SMALL_STATE(81)] = 6736, + [SMALL_STATE(82)] = 6801, + [SMALL_STATE(83)] = 6866, + [SMALL_STATE(84)] = 6931, + [SMALL_STATE(85)] = 7003, + [SMALL_STATE(86)] = 7075, + [SMALL_STATE(87)] = 7131, + [SMALL_STATE(88)] = 7177, + [SMALL_STATE(89)] = 7233, + [SMALL_STATE(90)] = 7279, + [SMALL_STATE(91)] = 7319, + [SMALL_STATE(92)] = 7363, + [SMALL_STATE(93)] = 7403, + [SMALL_STATE(94)] = 7447, + [SMALL_STATE(95)] = 7502, + [SMALL_STATE(96)] = 7557, + [SMALL_STATE(97)] = 7600, + [SMALL_STATE(98)] = 7645, + [SMALL_STATE(99)] = 7683, + [SMALL_STATE(100)] = 7721, + [SMALL_STATE(101)] = 7777, + [SMALL_STATE(102)] = 7815, + [SMALL_STATE(103)] = 7853, + [SMALL_STATE(104)] = 7891, + [SMALL_STATE(105)] = 7929, + [SMALL_STATE(106)] = 7985, + [SMALL_STATE(107)] = 8023, + [SMALL_STATE(108)] = 8061, + [SMALL_STATE(109)] = 8099, + [SMALL_STATE(110)] = 8137, + [SMALL_STATE(111)] = 8175, + [SMALL_STATE(112)] = 8213, + [SMALL_STATE(113)] = 8251, + [SMALL_STATE(114)] = 8296, + [SMALL_STATE(115)] = 8341, + [SMALL_STATE(116)] = 8401, + [SMALL_STATE(117)] = 8461, + [SMALL_STATE(118)] = 8501, + [SMALL_STATE(119)] = 8540, + [SMALL_STATE(120)] = 8579, + [SMALL_STATE(121)] = 8616, + [SMALL_STATE(122)] = 8667, + [SMALL_STATE(123)] = 8708, + [SMALL_STATE(124)] = 8759, + [SMALL_STATE(125)] = 8800, + [SMALL_STATE(126)] = 8837, + [SMALL_STATE(127)] = 8874, + [SMALL_STATE(128)] = 8908, + [SMALL_STATE(129)] = 8942, + [SMALL_STATE(130)] = 8976, + [SMALL_STATE(131)] = 9010, + [SMALL_STATE(132)] = 9044, + [SMALL_STATE(133)] = 9102, + [SMALL_STATE(134)] = 9160, + [SMALL_STATE(135)] = 9218, + [SMALL_STATE(136)] = 9252, + [SMALL_STATE(137)] = 9310, + [SMALL_STATE(138)] = 9344, + [SMALL_STATE(139)] = 9402, + [SMALL_STATE(140)] = 9436, + [SMALL_STATE(141)] = 9470, + [SMALL_STATE(142)] = 9528, + [SMALL_STATE(143)] = 9562, + [SMALL_STATE(144)] = 9596, + [SMALL_STATE(145)] = 9654, + [SMALL_STATE(146)] = 9688, + [SMALL_STATE(147)] = 9722, + [SMALL_STATE(148)] = 9756, + [SMALL_STATE(149)] = 9790, + [SMALL_STATE(150)] = 9824, + [SMALL_STATE(151)] = 9862, + [SMALL_STATE(152)] = 9920, + [SMALL_STATE(153)] = 9978, + [SMALL_STATE(154)] = 10036, + [SMALL_STATE(155)] = 10070, + [SMALL_STATE(156)] = 10120, + [SMALL_STATE(157)] = 10178, + [SMALL_STATE(158)] = 10218, + [SMALL_STATE(159)] = 10268, + [SMALL_STATE(160)] = 10301, + [SMALL_STATE(161)] = 10334, + [SMALL_STATE(162)] = 10367, + [SMALL_STATE(163)] = 10400, + [SMALL_STATE(164)] = 10454, + [SMALL_STATE(165)] = 10506, + [SMALL_STATE(166)] = 10538, + [SMALL_STATE(167)] = 10570, + [SMALL_STATE(168)] = 10622, + [SMALL_STATE(169)] = 10674, + [SMALL_STATE(170)] = 10706, + [SMALL_STATE(171)] = 10758, + [SMALL_STATE(172)] = 10810, + [SMALL_STATE(173)] = 10862, + [SMALL_STATE(174)] = 10914, + [SMALL_STATE(175)] = 10966, + [SMALL_STATE(176)] = 11018, + [SMALL_STATE(177)] = 11070, + [SMALL_STATE(178)] = 11122, + [SMALL_STATE(179)] = 11164, + [SMALL_STATE(180)] = 11216, + [SMALL_STATE(181)] = 11268, + [SMALL_STATE(182)] = 11320, + [SMALL_STATE(183)] = 11372, + [SMALL_STATE(184)] = 11424, + [SMALL_STATE(185)] = 11456, + [SMALL_STATE(186)] = 11508, + [SMALL_STATE(187)] = 11560, + [SMALL_STATE(188)] = 11594, + [SMALL_STATE(189)] = 11646, + [SMALL_STATE(190)] = 11698, + [SMALL_STATE(191)] = 11750, + [SMALL_STATE(192)] = 11802, + [SMALL_STATE(193)] = 11854, + [SMALL_STATE(194)] = 11906, + [SMALL_STATE(195)] = 11958, + [SMALL_STATE(196)] = 12010, + [SMALL_STATE(197)] = 12062, + [SMALL_STATE(198)] = 12094, + [SMALL_STATE(199)] = 12146, + [SMALL_STATE(200)] = 12198, + [SMALL_STATE(201)] = 12250, + [SMALL_STATE(202)] = 12302, + [SMALL_STATE(203)] = 12334, + [SMALL_STATE(204)] = 12386, + [SMALL_STATE(205)] = 12438, + [SMALL_STATE(206)] = 12490, + [SMALL_STATE(207)] = 12542, + [SMALL_STATE(208)] = 12594, + [SMALL_STATE(209)] = 12646, + [SMALL_STATE(210)] = 12698, + [SMALL_STATE(211)] = 12750, + [SMALL_STATE(212)] = 12802, + [SMALL_STATE(213)] = 12854, + [SMALL_STATE(214)] = 12906, + [SMALL_STATE(215)] = 12958, + [SMALL_STATE(216)] = 13010, + [SMALL_STATE(217)] = 13062, + [SMALL_STATE(218)] = 13114, + [SMALL_STATE(219)] = 13166, + [SMALL_STATE(220)] = 13198, + [SMALL_STATE(221)] = 13230, + [SMALL_STATE(222)] = 13282, + [SMALL_STATE(223)] = 13314, + [SMALL_STATE(224)] = 13366, + [SMALL_STATE(225)] = 13418, + [SMALL_STATE(226)] = 13470, + [SMALL_STATE(227)] = 13502, + [SMALL_STATE(228)] = 13534, + [SMALL_STATE(229)] = 13566, + [SMALL_STATE(230)] = 13598, + [SMALL_STATE(231)] = 13650, + [SMALL_STATE(232)] = 13682, + [SMALL_STATE(233)] = 13714, + [SMALL_STATE(234)] = 13751, + [SMALL_STATE(235)] = 13794, + [SMALL_STATE(236)] = 13827, + [SMALL_STATE(237)] = 13870, + [SMALL_STATE(238)] = 13905, + [SMALL_STATE(239)] = 13948, + [SMALL_STATE(240)] = 13983, + [SMALL_STATE(241)] = 14028, + [SMALL_STATE(242)] = 14061, + [SMALL_STATE(243)] = 14090, + [SMALL_STATE(244)] = 14133, + [SMALL_STATE(245)] = 14176, + [SMALL_STATE(246)] = 14210, + [SMALL_STATE(247)] = 14256, + [SMALL_STATE(248)] = 14302, + [SMALL_STATE(249)] = 14348, + [SMALL_STATE(250)] = 14390, + [SMALL_STATE(251)] = 14436, + [SMALL_STATE(252)] = 14478, + [SMALL_STATE(253)] = 14524, + [SMALL_STATE(254)] = 14570, + [SMALL_STATE(255)] = 14602, + [SMALL_STATE(256)] = 14648, + [SMALL_STATE(257)] = 14694, + [SMALL_STATE(258)] = 14734, + [SMALL_STATE(259)] = 14774, + [SMALL_STATE(260)] = 14796, + [SMALL_STATE(261)] = 14818, + [SMALL_STATE(262)] = 14840, + [SMALL_STATE(263)] = 14860, + [SMALL_STATE(264)] = 14880, + [SMALL_STATE(265)] = 14900, + [SMALL_STATE(266)] = 14920, + [SMALL_STATE(267)] = 14939, + [SMALL_STATE(268)] = 14958, + [SMALL_STATE(269)] = 14983, + [SMALL_STATE(270)] = 15008, + [SMALL_STATE(271)] = 15028, + [SMALL_STATE(272)] = 15044, + [SMALL_STATE(273)] = 15058, + [SMALL_STATE(274)] = 15072, + [SMALL_STATE(275)] = 15086, + [SMALL_STATE(276)] = 15105, + [SMALL_STATE(277)] = 15124, + [SMALL_STATE(278)] = 15143, + [SMALL_STATE(279)] = 15162, + [SMALL_STATE(280)] = 15181, + [SMALL_STATE(281)] = 15200, + [SMALL_STATE(282)] = 15219, + [SMALL_STATE(283)] = 15238, + [SMALL_STATE(284)] = 15248, + [SMALL_STATE(285)] = 15262, + [SMALL_STATE(286)] = 15274, + [SMALL_STATE(287)] = 15288, + [SMALL_STATE(288)] = 15302, + [SMALL_STATE(289)] = 15312, + [SMALL_STATE(290)] = 15322, + [SMALL_STATE(291)] = 15332, + [SMALL_STATE(292)] = 15342, + [SMALL_STATE(293)] = 15352, + [SMALL_STATE(294)] = 15362, + [SMALL_STATE(295)] = 15376, + [SMALL_STATE(296)] = 15390, + [SMALL_STATE(297)] = 15400, + [SMALL_STATE(298)] = 15410, + [SMALL_STATE(299)] = 15424, + [SMALL_STATE(300)] = 15434, + [SMALL_STATE(301)] = 15444, + [SMALL_STATE(302)] = 15456, + [SMALL_STATE(303)] = 15468, + [SMALL_STATE(304)] = 15482, + [SMALL_STATE(305)] = 15496, + [SMALL_STATE(306)] = 15506, + [SMALL_STATE(307)] = 15520, + [SMALL_STATE(308)] = 15533, + [SMALL_STATE(309)] = 15546, + [SMALL_STATE(310)] = 15559, + [SMALL_STATE(311)] = 15572, + [SMALL_STATE(312)] = 15585, + [SMALL_STATE(313)] = 15598, + [SMALL_STATE(314)] = 15611, + [SMALL_STATE(315)] = 15624, + [SMALL_STATE(316)] = 15637, + [SMALL_STATE(317)] = 15650, + [SMALL_STATE(318)] = 15661, + [SMALL_STATE(319)] = 15674, + [SMALL_STATE(320)] = 15687, + [SMALL_STATE(321)] = 15700, + [SMALL_STATE(322)] = 15711, + [SMALL_STATE(323)] = 15724, + [SMALL_STATE(324)] = 15737, + [SMALL_STATE(325)] = 15750, + [SMALL_STATE(326)] = 15763, + [SMALL_STATE(327)] = 15774, + [SMALL_STATE(328)] = 15787, + [SMALL_STATE(329)] = 15800, + [SMALL_STATE(330)] = 15813, + [SMALL_STATE(331)] = 15826, + [SMALL_STATE(332)] = 15839, + [SMALL_STATE(333)] = 15849, + [SMALL_STATE(334)] = 15859, + [SMALL_STATE(335)] = 15869, + [SMALL_STATE(336)] = 15879, + [SMALL_STATE(337)] = 15889, + [SMALL_STATE(338)] = 15899, + [SMALL_STATE(339)] = 15907, + [SMALL_STATE(340)] = 15915, + [SMALL_STATE(341)] = 15925, + [SMALL_STATE(342)] = 15935, + [SMALL_STATE(343)] = 15945, + [SMALL_STATE(344)] = 15955, + [SMALL_STATE(345)] = 15963, + [SMALL_STATE(346)] = 15973, + [SMALL_STATE(347)] = 15980, + [SMALL_STATE(348)] = 15987, + [SMALL_STATE(349)] = 15994, + [SMALL_STATE(350)] = 16001, + [SMALL_STATE(351)] = 16008, + [SMALL_STATE(352)] = 16015, + [SMALL_STATE(353)] = 16022, + [SMALL_STATE(354)] = 16029, + [SMALL_STATE(355)] = 16036, + [SMALL_STATE(356)] = 16043, + [SMALL_STATE(357)] = 16050, + [SMALL_STATE(358)] = 16057, + [SMALL_STATE(359)] = 16064, + [SMALL_STATE(360)] = 16071, + [SMALL_STATE(361)] = 16078, + [SMALL_STATE(362)] = 16085, + [SMALL_STATE(363)] = 16092, + [SMALL_STATE(364)] = 16099, + [SMALL_STATE(365)] = 16106, + [SMALL_STATE(366)] = 16113, + [SMALL_STATE(367)] = 16120, + [SMALL_STATE(368)] = 16127, + [SMALL_STATE(369)] = 16134, + [SMALL_STATE(370)] = 16141, + [SMALL_STATE(371)] = 16148, + [SMALL_STATE(372)] = 16155, + [SMALL_STATE(373)] = 16162, + [SMALL_STATE(374)] = 16169, + [SMALL_STATE(375)] = 16176, + [SMALL_STATE(376)] = 16183, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -15989,355 +16477,366 @@ 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(54), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(358), - [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(35), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), - [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(62), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(62), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(64), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(146), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(186), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(193), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(196), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(370), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(370), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(367), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(282), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(331), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(218), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(364), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(364), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(8), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(62), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(62), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(141), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(167), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(170), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(368), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(368), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(342), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(366), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(303), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(343), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(181), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(360), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(142), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(2), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(138), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(138), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(139), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(155), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(291), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(327), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(224), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(107), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(3), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(110), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(110), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(109), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(156), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(300), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(328), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(107), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(3), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(110), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(110), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(109), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(156), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(300), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(328), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 2), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 2), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(188), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(335), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(369), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(325), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [735] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(310), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(4), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(148), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(148), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(135), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(151), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(286), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(336), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(230), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(111), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(329), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(6), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(112), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(132), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(304), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(334), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(111), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(329), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(6), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(112), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(132), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(304), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(334), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 2), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 2), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(209), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(337), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(317), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(367), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [770] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), }; #ifdef __cplusplus