From 80f5fce14a7a11b88ba26ae72071e165414e3fa9 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 1 Oct 2023 12:17:52 -0400 Subject: [PATCH] Improve AST --- bindings/dust | 2 +- examples/list.ds | 2 +- grammar.js | 2 +- src/grammar.json | 21 +- src/parser.c | 16846 +++++++++++++++++++++++---------------------- 5 files changed, 8502 insertions(+), 8371 deletions(-) diff --git a/bindings/dust b/bindings/dust index e9db34b..597d6bd 160000 --- a/bindings/dust +++ b/bindings/dust @@ -1 +1 @@ -Subproject commit e9db34be8bf38f1d636ffac82e4bc3db5c727524 +Subproject commit 597d6bd8b8aed37512ef8b27a4e2d5dea52d7cad diff --git a/examples/list.ds b/examples/list.ds index ea3f084..c27f974 100644 --- a/examples/list.ds +++ b/examples/list.ds @@ -1,4 +1,4 @@ -numbers = [1, 2 3] +numbers = [1, 2, 3] x = numbers.0 y = numbers.1 diff --git a/grammar.js b/grammar.js index 28fc0e9..f1365c1 100644 --- a/grammar.js +++ b/grammar.js @@ -164,7 +164,7 @@ module.exports = grammar({ function_call: $ => prec.right(seq( $.identifier, '<', - repeat($.expression), + repeat(seq($.expression, optional(','))), '>', )), diff --git a/src/grammar.json b/src/grammar.json index dfee1cc..26c7d60 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -733,8 +733,25 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index 7ad1698..be2a64a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 430 +#define STATE_COUNT 431 #define LARGE_STATE_COUNT 4 #define SYMBOL_COUNT 82 #define ALIAS_COUNT 0 @@ -616,156 +616,156 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 4, - [6] = 4, - [7] = 4, - [8] = 8, + [6] = 6, + [7] = 7, + [8] = 4, [9] = 9, - [10] = 8, - [11] = 11, - [12] = 4, - [13] = 9, - [14] = 9, - [15] = 8, - [16] = 9, - [17] = 9, - [18] = 8, - [19] = 8, + [10] = 6, + [11] = 4, + [12] = 7, + [13] = 4, + [14] = 6, + [15] = 7, + [16] = 6, + [17] = 6, + [18] = 7, + [19] = 7, [20] = 20, - [21] = 21, - [22] = 20, - [23] = 21, - [24] = 24, - [25] = 21, - [26] = 24, - [27] = 20, - [28] = 21, - [29] = 24, - [30] = 21, - [31] = 20, + [21] = 20, + [22] = 22, + [23] = 23, + [24] = 23, + [25] = 20, + [26] = 20, + [27] = 22, + [28] = 22, + [29] = 23, + [30] = 22, + [31] = 23, [32] = 20, - [33] = 24, - [34] = 24, + [33] = 22, + [34] = 23, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 36, + [39] = 37, [40] = 40, - [41] = 36, - [42] = 38, - [43] = 37, - [44] = 36, - [45] = 36, - [46] = 46, - [47] = 38, + [41] = 38, + [42] = 42, + [43] = 38, + [44] = 44, + [45] = 45, + [46] = 38, + [47] = 47, [48] = 38, - [49] = 38, - [50] = 40, - [51] = 51, - [52] = 46, - [53] = 35, - [54] = 54, - [55] = 40, - [56] = 56, - [57] = 51, - [58] = 35, - [59] = 37, - [60] = 46, - [61] = 37, - [62] = 54, - [63] = 63, - [64] = 64, - [65] = 54, - [66] = 37, - [67] = 51, - [68] = 68, - [69] = 68, - [70] = 68, - [71] = 71, - [72] = 72, - [73] = 73, + [49] = 37, + [50] = 35, + [51] = 45, + [52] = 36, + [53] = 40, + [54] = 36, + [55] = 35, + [56] = 42, + [57] = 45, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 40, + [62] = 37, + [63] = 42, + [64] = 47, + [65] = 42, + [66] = 42, + [67] = 37, + [68] = 47, + [69] = 69, + [70] = 70, + [71] = 69, + [72] = 44, + [73] = 69, [74] = 74, [75] = 75, [76] = 76, [77] = 77, - [78] = 76, - [79] = 74, + [78] = 74, + [79] = 79, [80] = 75, - [81] = 72, - [82] = 77, + [81] = 77, + [82] = 76, [83] = 83, - [84] = 84, - [85] = 73, - [86] = 76, - [87] = 77, - [88] = 76, - [89] = 89, - [90] = 84, - [91] = 77, - [92] = 77, - [93] = 89, - [94] = 89, - [95] = 75, - [96] = 84, - [97] = 77, - [98] = 73, - [99] = 84, - [100] = 73, - [101] = 83, - [102] = 83, - [103] = 89, - [104] = 73, - [105] = 75, - [106] = 106, - [107] = 74, - [108] = 71, - [109] = 106, - [110] = 72, - [111] = 84, - [112] = 89, - [113] = 106, - [114] = 83, - [115] = 77, - [116] = 83, - [117] = 75, - [118] = 76, - [119] = 119, - [120] = 77, + [84] = 74, + [85] = 74, + [86] = 86, + [87] = 87, + [88] = 77, + [89] = 86, + [90] = 75, + [91] = 91, + [92] = 83, + [93] = 86, + [94] = 76, + [95] = 79, + [96] = 91, + [97] = 91, + [98] = 74, + [99] = 77, + [100] = 76, + [101] = 79, + [102] = 75, + [103] = 103, + [104] = 104, + [105] = 70, + [106] = 87, + [107] = 75, + [108] = 86, + [109] = 103, + [110] = 74, + [111] = 111, + [112] = 112, + [113] = 83, + [114] = 114, + [115] = 103, + [116] = 76, + [117] = 77, + [118] = 86, + [119] = 74, + [120] = 87, [121] = 121, [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 119, - [128] = 121, - [129] = 125, - [130] = 130, - [131] = 131, + [123] = 87, + [124] = 83, + [125] = 87, + [126] = 74, + [127] = 83, + [128] = 128, + [129] = 129, + [130] = 111, + [131] = 114, [132] = 132, - [133] = 119, - [134] = 123, - [135] = 122, - [136] = 136, - [137] = 126, - [138] = 124, + [133] = 133, + [134] = 112, + [135] = 104, + [136] = 121, + [137] = 122, + [138] = 138, [139] = 139, [140] = 140, - [141] = 141, - [142] = 142, + [141] = 128, + [142] = 129, [143] = 143, - [144] = 144, - [145] = 132, + [144] = 143, + [145] = 70, [146] = 146, [147] = 147, - [148] = 126, - [149] = 124, - [150] = 119, - [151] = 131, - [152] = 147, - [153] = 136, - [154] = 154, - [155] = 130, + [148] = 148, + [149] = 132, + [150] = 150, + [151] = 151, + [152] = 133, + [153] = 70, + [154] = 140, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, @@ -776,270 +776,271 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 163, [164] = 164, [165] = 165, - [166] = 160, + [166] = 166, [167] = 167, - [168] = 168, - [169] = 169, - [170] = 167, - [171] = 158, - [172] = 169, - [173] = 162, - [174] = 161, - [175] = 124, - [176] = 140, - [177] = 168, - [178] = 159, - [179] = 139, - [180] = 154, - [181] = 157, - [182] = 119, - [183] = 165, - [184] = 71, - [185] = 164, - [186] = 144, - [187] = 163, - [188] = 143, - [189] = 141, - [190] = 156, - [191] = 142, - [192] = 146, + [168] = 104, + [169] = 138, + [170] = 139, + [171] = 151, + [172] = 150, + [173] = 112, + [174] = 148, + [175] = 157, + [176] = 147, + [177] = 163, + [178] = 158, + [179] = 161, + [180] = 156, + [181] = 164, + [182] = 155, + [183] = 167, + [184] = 112, + [185] = 160, + [186] = 159, + [187] = 166, + [188] = 162, + [189] = 165, + [190] = 146, + [191] = 44, + [192] = 70, [193] = 132, - [194] = 124, + [194] = 112, [195] = 195, - [196] = 132, - [197] = 123, - [198] = 125, + [196] = 111, + [197] = 132, + [198] = 114, [199] = 121, [200] = 122, - [201] = 147, - [202] = 130, - [203] = 136, - [204] = 131, - [205] = 132, - [206] = 71, - [207] = 119, - [208] = 159, - [209] = 124, - [210] = 210, - [211] = 119, - [212] = 126, - [213] = 125, - [214] = 123, - [215] = 122, - [216] = 121, - [217] = 217, - [218] = 136, - [219] = 130, - [220] = 124, - [221] = 131, - [222] = 222, - [223] = 132, - [224] = 71, - [225] = 225, - [226] = 164, - [227] = 157, - [228] = 161, - [229] = 141, - [230] = 168, - [231] = 154, - [232] = 162, - [233] = 169, - [234] = 160, - [235] = 225, - [236] = 139, - [237] = 146, - [238] = 225, - [239] = 147, - [240] = 142, - [241] = 159, - [242] = 242, + [201] = 129, + [202] = 143, + [203] = 128, + [204] = 132, + [205] = 133, + [206] = 44, + [207] = 70, + [208] = 155, + [209] = 121, + [210] = 70, + [211] = 112, + [212] = 104, + [213] = 111, + [214] = 214, + [215] = 215, + [216] = 114, + [217] = 122, + [218] = 218, + [219] = 133, + [220] = 128, + [221] = 129, + [222] = 44, + [223] = 223, + [224] = 112, + [225] = 132, + [226] = 146, + [227] = 140, + [228] = 228, + [229] = 158, + [230] = 138, + [231] = 143, + [232] = 139, + [233] = 163, + [234] = 164, + [235] = 147, + [236] = 228, + [237] = 166, + [238] = 228, + [239] = 228, + [240] = 240, + [241] = 167, + [242] = 161, [243] = 243, - [244] = 225, - [245] = 225, - [246] = 246, - [247] = 158, - [248] = 140, - [249] = 144, - [250] = 143, - [251] = 167, - [252] = 156, - [253] = 165, - [254] = 132, - [255] = 163, - [256] = 256, - [257] = 256, - [258] = 121, - [259] = 256, - [260] = 123, - [261] = 125, - [262] = 256, - [263] = 122, - [264] = 256, - [265] = 119, - [266] = 147, - [267] = 136, - [268] = 130, - [269] = 269, - [270] = 124, - [271] = 126, - [272] = 272, + [244] = 157, + [245] = 245, + [246] = 150, + [247] = 160, + [248] = 156, + [249] = 159, + [250] = 151, + [251] = 165, + [252] = 162, + [253] = 132, + [254] = 148, + [255] = 155, + [256] = 228, + [257] = 257, + [258] = 257, + [259] = 121, + [260] = 257, + [261] = 122, + [262] = 257, + [263] = 114, + [264] = 257, + [265] = 111, + [266] = 70, + [267] = 267, + [268] = 143, + [269] = 128, + [270] = 129, + [271] = 112, + [272] = 104, [273] = 273, [274] = 274, - [275] = 272, - [276] = 273, - [277] = 277, - [278] = 272, + [275] = 274, + [276] = 276, + [277] = 273, + [278] = 276, [279] = 273, [280] = 274, - [281] = 272, - [282] = 272, + [281] = 281, + [282] = 274, [283] = 274, - [284] = 284, - [285] = 167, - [286] = 161, + [284] = 276, + [285] = 285, + [286] = 157, [287] = 287, - [288] = 141, - [289] = 287, - [290] = 290, - [291] = 287, - [292] = 146, - [293] = 156, - [294] = 160, - [295] = 169, - [296] = 162, - [297] = 154, - [298] = 139, + [288] = 147, + [289] = 138, + [290] = 156, + [291] = 146, + [292] = 287, + [293] = 148, + [294] = 150, + [295] = 287, + [296] = 140, + [297] = 139, + [298] = 151, [299] = 299, [300] = 300, [301] = 301, [302] = 302, [303] = 302, [304] = 304, - [305] = 301, + [305] = 302, [306] = 302, - [307] = 302, - [308] = 304, - [309] = 301, - [310] = 302, - [311] = 304, - [312] = 301, - [313] = 304, - [314] = 304, - [315] = 301, - [316] = 316, + [307] = 304, + [308] = 308, + [309] = 308, + [310] = 304, + [311] = 308, + [312] = 302, + [313] = 308, + [314] = 308, + [315] = 304, + [316] = 304, [317] = 317, [318] = 318, [319] = 319, [320] = 320, - [321] = 316, + [321] = 321, [322] = 322, [323] = 320, - [324] = 322, - [325] = 320, - [326] = 317, - [327] = 317, - [328] = 131, - [329] = 322, + [324] = 324, + [325] = 318, + [326] = 318, + [327] = 324, + [328] = 318, + [329] = 319, [330] = 330, - [331] = 318, - [332] = 316, - [333] = 333, - [334] = 322, - [335] = 322, - [336] = 320, - [337] = 337, - [338] = 316, - [339] = 337, - [340] = 317, - [341] = 316, + [331] = 319, + [332] = 330, + [333] = 319, + [334] = 330, + [335] = 132, + [336] = 133, + [337] = 324, + [338] = 324, + [339] = 324, + [340] = 320, + [341] = 319, [342] = 318, - [343] = 132, - [344] = 337, - [345] = 337, - [346] = 320, - [347] = 317, - [348] = 318, - [349] = 337, - [350] = 318, - [351] = 351, - [352] = 141, - [353] = 353, - [354] = 353, - [355] = 353, - [356] = 356, - [357] = 353, - [358] = 351, - [359] = 351, - [360] = 139, - [361] = 154, - [362] = 160, - [363] = 161, - [364] = 162, - [365] = 169, - [366] = 167, - [367] = 351, - [368] = 146, - [369] = 156, - [370] = 353, - [371] = 371, - [372] = 351, - [373] = 373, + [343] = 330, + [344] = 344, + [345] = 320, + [346] = 344, + [347] = 344, + [348] = 330, + [349] = 344, + [350] = 344, + [351] = 320, + [352] = 352, + [353] = 147, + [354] = 354, + [355] = 352, + [356] = 352, + [357] = 357, + [358] = 352, + [359] = 359, + [360] = 359, + [361] = 157, + [362] = 156, + [363] = 148, + [364] = 151, + [365] = 352, + [366] = 359, + [367] = 139, + [368] = 150, + [369] = 359, + [370] = 140, + [371] = 359, + [372] = 146, + [373] = 138, [374] = 374, [375] = 375, [376] = 376, - [377] = 373, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, + [377] = 377, + [378] = 376, + [379] = 377, + [380] = 376, + [381] = 377, [382] = 376, - [383] = 381, + [383] = 375, [384] = 384, [385] = 385, - [386] = 376, - [387] = 381, + [386] = 386, + [387] = 385, [388] = 388, - [389] = 384, - [390] = 385, - [391] = 384, - [392] = 375, - [393] = 376, - [394] = 394, - [395] = 373, - [396] = 380, + [389] = 374, + [390] = 390, + [391] = 390, + [392] = 388, + [393] = 393, + [394] = 375, + [395] = 395, + [396] = 385, [397] = 374, - [398] = 385, - [399] = 399, - [400] = 380, - [401] = 374, - [402] = 381, - [403] = 378, + [398] = 386, + [399] = 374, + [400] = 400, + [401] = 393, + [402] = 390, + [403] = 403, [404] = 404, - [405] = 375, - [406] = 385, - [407] = 376, - [408] = 399, - [409] = 394, - [410] = 380, - [411] = 381, - [412] = 380, - [413] = 413, - [414] = 399, - [415] = 404, - [416] = 375, - [417] = 378, - [418] = 404, - [419] = 373, - [420] = 378, - [421] = 394, - [422] = 394, - [423] = 394, - [424] = 404, - [425] = 375, - [426] = 378, - [427] = 404, - [428] = 373, - [429] = 385, + [405] = 405, + [406] = 386, + [407] = 405, + [408] = 377, + [409] = 405, + [410] = 395, + [411] = 388, + [412] = 404, + [413] = 404, + [414] = 374, + [415] = 376, + [416] = 393, + [417] = 375, + [418] = 388, + [419] = 377, + [420] = 390, + [421] = 386, + [422] = 395, + [423] = 395, + [424] = 395, + [425] = 393, + [426] = 375, + [427] = 388, + [428] = 386, + [429] = 390, + [430] = 393, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1282,6 +1283,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(54); if (lookahead == '*') ADVANCE(121); if (lookahead == '+') ADVANCE(117); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(118); if (lookahead == '.') ADVANCE(89); if (lookahead == '/') ADVANCE(122); @@ -1315,6 +1317,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(54); if (lookahead == '*') ADVANCE(121); if (lookahead == '+') ADVANCE(117); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(118); if (lookahead == '.') ADVANCE(89); if (lookahead == '/') ADVANCE(122); @@ -1347,6 +1350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(54); if (lookahead == '*') ADVANCE(121); if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(119); if (lookahead == '.') ADVANCE(89); if (lookahead == '/') ADVANCE(122); @@ -1380,6 +1384,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(54); if (lookahead == '*') ADVANCE(121); if (lookahead == '+') ADVANCE(116); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(119); if (lookahead == '.') ADVANCE(89); if (lookahead == '/') ADVANCE(122); @@ -2168,7 +2173,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 48}, [42] = {.lex_state = 48}, [43] = {.lex_state = 48}, - [44] = {.lex_state = 48}, + [44] = {.lex_state = 44}, [45] = {.lex_state = 48}, [46] = {.lex_state = 48}, [47] = {.lex_state = 48}, @@ -2194,9 +2199,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 48}, [68] = {.lex_state = 48}, [69] = {.lex_state = 48}, - [70] = {.lex_state = 48}, - [71] = {.lex_state = 44}, - [72] = {.lex_state = 48}, + [70] = {.lex_state = 44}, + [71] = {.lex_state = 48}, + [72] = {.lex_state = 45}, [73] = {.lex_state = 48}, [74] = {.lex_state = 48}, [75] = {.lex_state = 48}, @@ -2228,58 +2233,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 48}, [102] = {.lex_state = 48}, [103] = {.lex_state = 48}, - [104] = {.lex_state = 48}, - [105] = {.lex_state = 48}, + [104] = {.lex_state = 44}, + [105] = {.lex_state = 45}, [106] = {.lex_state = 48}, [107] = {.lex_state = 48}, - [108] = {.lex_state = 45}, + [108] = {.lex_state = 48}, [109] = {.lex_state = 48}, [110] = {.lex_state = 48}, - [111] = {.lex_state = 48}, - [112] = {.lex_state = 48}, + [111] = {.lex_state = 44}, + [112] = {.lex_state = 44}, [113] = {.lex_state = 48}, - [114] = {.lex_state = 48}, + [114] = {.lex_state = 44}, [115] = {.lex_state = 48}, [116] = {.lex_state = 48}, [117] = {.lex_state = 48}, [118] = {.lex_state = 48}, - [119] = {.lex_state = 44}, + [119] = {.lex_state = 48}, [120] = {.lex_state = 48}, [121] = {.lex_state = 44}, [122] = {.lex_state = 44}, - [123] = {.lex_state = 44}, - [124] = {.lex_state = 44}, - [125] = {.lex_state = 44}, - [126] = {.lex_state = 44}, - [127] = {.lex_state = 45}, - [128] = {.lex_state = 45}, - [129] = {.lex_state = 45}, - [130] = {.lex_state = 46}, - [131] = {.lex_state = 44}, + [123] = {.lex_state = 48}, + [124] = {.lex_state = 48}, + [125] = {.lex_state = 48}, + [126] = {.lex_state = 48}, + [127] = {.lex_state = 48}, + [128] = {.lex_state = 46}, + [129] = {.lex_state = 46}, + [130] = {.lex_state = 45}, + [131] = {.lex_state = 45}, [132] = {.lex_state = 44}, - [133] = {.lex_state = 45}, + [133] = {.lex_state = 44}, [134] = {.lex_state = 45}, [135] = {.lex_state = 45}, - [136] = {.lex_state = 46}, + [136] = {.lex_state = 45}, [137] = {.lex_state = 45}, - [138] = {.lex_state = 45}, + [138] = {.lex_state = 44}, [139] = {.lex_state = 44}, - [140] = {.lex_state = 44}, - [141] = {.lex_state = 44}, - [142] = {.lex_state = 44}, + [140] = {.lex_state = 45}, + [141] = {.lex_state = 47}, + [142] = {.lex_state = 47}, [143] = {.lex_state = 44}, [144] = {.lex_state = 44}, - [145] = {.lex_state = 45}, + [145] = {.lex_state = 44}, [146] = {.lex_state = 44}, [147] = {.lex_state = 44}, - [148] = {.lex_state = 45}, + [148] = {.lex_state = 44}, [149] = {.lex_state = 45}, [150] = {.lex_state = 44}, - [151] = {.lex_state = 45}, - [152] = {.lex_state = 44}, - [153] = {.lex_state = 47}, + [151] = {.lex_state = 44}, + [152] = {.lex_state = 45}, + [153] = {.lex_state = 45}, [154] = {.lex_state = 44}, - [155] = {.lex_state = 47}, + [155] = {.lex_state = 44}, [156] = {.lex_state = 44}, [157] = {.lex_state = 44}, [158] = {.lex_state = 44}, @@ -2290,16 +2295,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [163] = {.lex_state = 44}, [164] = {.lex_state = 44}, [165] = {.lex_state = 44}, - [166] = {.lex_state = 45}, + [166] = {.lex_state = 44}, [167] = {.lex_state = 44}, - [168] = {.lex_state = 44}, - [169] = {.lex_state = 44}, + [168] = {.lex_state = 45}, + [169] = {.lex_state = 45}, [170] = {.lex_state = 45}, [171] = {.lex_state = 45}, [172] = {.lex_state = 45}, - [173] = {.lex_state = 45}, + [173] = {.lex_state = 44}, [174] = {.lex_state = 45}, - [175] = {.lex_state = 44}, + [175] = {.lex_state = 45}, [176] = {.lex_state = 45}, [177] = {.lex_state = 45}, [178] = {.lex_state = 45}, @@ -2325,8 +2330,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [198] = {.lex_state = 45}, [199] = {.lex_state = 45}, [200] = {.lex_state = 45}, - [201] = {.lex_state = 44}, - [202] = {.lex_state = 47}, + [201] = {.lex_state = 47}, + [202] = {.lex_state = 44}, [203] = {.lex_state = 47}, [204] = {.lex_state = 48}, [205] = {.lex_state = 48}, @@ -2334,43 +2339,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 3}, [208] = {.lex_state = 48}, [209] = {.lex_state = 3}, - [210] = {.lex_state = 48}, + [210] = {.lex_state = 3}, [211] = {.lex_state = 3}, [212] = {.lex_state = 3}, [213] = {.lex_state = 3}, - [214] = {.lex_state = 3}, - [215] = {.lex_state = 3}, + [214] = {.lex_state = 48}, + [215] = {.lex_state = 48}, [216] = {.lex_state = 3}, - [217] = {.lex_state = 48}, - [218] = {.lex_state = 3}, + [217] = {.lex_state = 3}, + [218] = {.lex_state = 48}, [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, - [222] = {.lex_state = 48}, - [223] = {.lex_state = 3}, + [222] = {.lex_state = 3}, + [223] = {.lex_state = 48}, [224] = {.lex_state = 3}, - [225] = {.lex_state = 1}, + [225] = {.lex_state = 3}, [226] = {.lex_state = 3}, [227] = {.lex_state = 3}, - [228] = {.lex_state = 3}, + [228] = {.lex_state = 1}, [229] = {.lex_state = 3}, [230] = {.lex_state = 3}, [231] = {.lex_state = 3}, [232] = {.lex_state = 3}, [233] = {.lex_state = 3}, [234] = {.lex_state = 3}, - [235] = {.lex_state = 1}, - [236] = {.lex_state = 3}, + [235] = {.lex_state = 3}, + [236] = {.lex_state = 1}, [237] = {.lex_state = 3}, [238] = {.lex_state = 1}, - [239] = {.lex_state = 3}, - [240] = {.lex_state = 3}, + [239] = {.lex_state = 1}, + [240] = {.lex_state = 1}, [241] = {.lex_state = 3}, - [242] = {.lex_state = 48}, - [243] = {.lex_state = 1}, - [244] = {.lex_state = 1}, - [245] = {.lex_state = 1}, - [246] = {.lex_state = 48}, + [242] = {.lex_state = 3}, + [243] = {.lex_state = 48}, + [244] = {.lex_state = 3}, + [245] = {.lex_state = 48}, + [246] = {.lex_state = 3}, [247] = {.lex_state = 3}, [248] = {.lex_state = 3}, [249] = {.lex_state = 3}, @@ -2382,18 +2387,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [255] = {.lex_state = 3}, [256] = {.lex_state = 1}, [257] = {.lex_state = 1}, - [258] = {.lex_state = 3}, - [259] = {.lex_state = 1}, - [260] = {.lex_state = 3}, + [258] = {.lex_state = 1}, + [259] = {.lex_state = 3}, + [260] = {.lex_state = 1}, [261] = {.lex_state = 3}, [262] = {.lex_state = 1}, [263] = {.lex_state = 3}, [264] = {.lex_state = 1}, [265] = {.lex_state = 3}, [266] = {.lex_state = 3}, - [267] = {.lex_state = 3}, + [267] = {.lex_state = 1}, [268] = {.lex_state = 3}, - [269] = {.lex_state = 1}, + [269] = {.lex_state = 3}, [270] = {.lex_state = 3}, [271] = {.lex_state = 3}, [272] = {.lex_state = 3}, @@ -2409,28 +2414,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [282] = {.lex_state = 3}, [283] = {.lex_state = 3}, [284] = {.lex_state = 3}, - [285] = {.lex_state = 1}, + [285] = {.lex_state = 3}, [286] = {.lex_state = 1}, [287] = {.lex_state = 3}, [288] = {.lex_state = 1}, - [289] = {.lex_state = 3}, + [289] = {.lex_state = 1}, [290] = {.lex_state = 1}, - [291] = {.lex_state = 3}, - [292] = {.lex_state = 1}, + [291] = {.lex_state = 1}, + [292] = {.lex_state = 3}, [293] = {.lex_state = 1}, [294] = {.lex_state = 1}, - [295] = {.lex_state = 1}, + [295] = {.lex_state = 3}, [296] = {.lex_state = 1}, [297] = {.lex_state = 1}, [298] = {.lex_state = 1}, [299] = {.lex_state = 1}, - [300] = {.lex_state = 6}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 6}, - [303] = {.lex_state = 6}, - [304] = {.lex_state = 0}, + [300] = {.lex_state = 1}, + [301] = {.lex_state = 6}, + [302] = {.lex_state = 0}, + [303] = {.lex_state = 0}, + [304] = {.lex_state = 6}, [305] = {.lex_state = 0}, - [306] = {.lex_state = 6}, + [306] = {.lex_state = 0}, [307] = {.lex_state = 6}, [308] = {.lex_state = 0}, [309] = {.lex_state = 0}, @@ -2439,39 +2444,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [312] = {.lex_state = 0}, [313] = {.lex_state = 0}, [314] = {.lex_state = 0}, - [315] = {.lex_state = 0}, + [315] = {.lex_state = 6}, [316] = {.lex_state = 6}, - [317] = {.lex_state = 0}, + [317] = {.lex_state = 6}, [318] = {.lex_state = 6}, [319] = {.lex_state = 6}, - [320] = {.lex_state = 6}, + [320] = {.lex_state = 0}, [321] = {.lex_state = 6}, [322] = {.lex_state = 6}, - [323] = {.lex_state = 6}, + [323] = {.lex_state = 0}, [324] = {.lex_state = 6}, [325] = {.lex_state = 6}, - [326] = {.lex_state = 0}, - [327] = {.lex_state = 0}, - [328] = {.lex_state = 0}, + [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 = 6}, [333] = {.lex_state = 6}, [334] = {.lex_state = 6}, - [335] = {.lex_state = 6}, - [336] = {.lex_state = 6}, + [335] = {.lex_state = 0}, + [336] = {.lex_state = 0}, [337] = {.lex_state = 6}, [338] = {.lex_state = 6}, [339] = {.lex_state = 6}, [340] = {.lex_state = 0}, [341] = {.lex_state = 6}, [342] = {.lex_state = 6}, - [343] = {.lex_state = 0}, + [343] = {.lex_state = 6}, [344] = {.lex_state = 6}, - [345] = {.lex_state = 6}, + [345] = {.lex_state = 0}, [346] = {.lex_state = 6}, - [347] = {.lex_state = 0}, + [347] = {.lex_state = 6}, [348] = {.lex_state = 6}, [349] = {.lex_state = 6}, [350] = {.lex_state = 6}, @@ -2482,78 +2487,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [355] = {.lex_state = 6}, [356] = {.lex_state = 6}, [357] = {.lex_state = 6}, - [358] = {.lex_state = 0}, + [358] = {.lex_state = 6}, [359] = {.lex_state = 0}, - [360] = {.lex_state = 6}, + [360] = {.lex_state = 0}, [361] = {.lex_state = 6}, [362] = {.lex_state = 6}, [363] = {.lex_state = 6}, [364] = {.lex_state = 6}, [365] = {.lex_state = 6}, - [366] = {.lex_state = 6}, - [367] = {.lex_state = 0}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 6}, [368] = {.lex_state = 6}, - [369] = {.lex_state = 6}, + [369] = {.lex_state = 0}, [370] = {.lex_state = 6}, - [371] = {.lex_state = 6}, - [372] = {.lex_state = 0}, + [371] = {.lex_state = 0}, + [372] = {.lex_state = 6}, [373] = {.lex_state = 6}, [374] = {.lex_state = 0}, [375] = {.lex_state = 6}, [376] = {.lex_state = 0}, - [377] = {.lex_state = 6}, - [378] = {.lex_state = 6}, + [377] = {.lex_state = 0}, + [378] = {.lex_state = 0}, [379] = {.lex_state = 0}, [380] = {.lex_state = 0}, [381] = {.lex_state = 0}, [382] = {.lex_state = 0}, - [383] = {.lex_state = 0}, + [383] = {.lex_state = 6}, [384] = {.lex_state = 0}, [385] = {.lex_state = 0}, [386] = {.lex_state = 0}, [387] = {.lex_state = 0}, - [388] = {.lex_state = 51}, + [388] = {.lex_state = 6}, [389] = {.lex_state = 0}, - [390] = {.lex_state = 0}, - [391] = {.lex_state = 0}, + [390] = {.lex_state = 6}, + [391] = {.lex_state = 6}, [392] = {.lex_state = 6}, - [393] = {.lex_state = 0}, - [394] = {.lex_state = 0}, - [395] = {.lex_state = 6}, + [393] = {.lex_state = 6}, + [394] = {.lex_state = 6}, + [395] = {.lex_state = 0}, [396] = {.lex_state = 0}, [397] = {.lex_state = 0}, [398] = {.lex_state = 0}, [399] = {.lex_state = 0}, - [400] = {.lex_state = 0}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 0}, - [403] = {.lex_state = 6}, - [404] = {.lex_state = 6}, - [405] = {.lex_state = 6}, + [400] = {.lex_state = 51}, + [401] = {.lex_state = 6}, + [402] = {.lex_state = 6}, + [403] = {.lex_state = 0}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 0}, [406] = {.lex_state = 0}, [407] = {.lex_state = 0}, [408] = {.lex_state = 0}, [409] = {.lex_state = 0}, [410] = {.lex_state = 0}, - [411] = {.lex_state = 0}, + [411] = {.lex_state = 6}, [412] = {.lex_state = 0}, [413] = {.lex_state = 0}, [414] = {.lex_state = 0}, - [415] = {.lex_state = 6}, + [415] = {.lex_state = 0}, [416] = {.lex_state = 6}, [417] = {.lex_state = 6}, [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, + [419] = {.lex_state = 0}, [420] = {.lex_state = 6}, [421] = {.lex_state = 0}, [422] = {.lex_state = 0}, [423] = {.lex_state = 0}, - [424] = {.lex_state = 6}, + [424] = {.lex_state = 0}, [425] = {.lex_state = 6}, [426] = {.lex_state = 6}, [427] = {.lex_state = 6}, - [428] = {.lex_state = 6}, - [429] = {.lex_state = 0}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 6}, + [430] = {.lex_state = 6}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2606,31 +2612,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(379), - [sym_item] = STATE(3), - [sym_comment] = STATE(217), - [sym_statement] = STATE(217), + [sym_root] = STATE(384), + [sym_item] = STATE(2), + [sym_comment] = STATE(215), + [sym_statement] = STATE(215), [sym_yield] = STATE(208), - [sym_expression] = STATE(149), - [sym__expression_kind] = STATE(181), - [sym_value] = STATE(181), - [sym_boolean] = STATE(179), - [sym_list] = STATE(179), - [sym_function] = STATE(179), - [sym_table] = STATE(179), - [sym_map] = STATE(179), - [sym_math] = STATE(181), - [sym_logic] = STATE(181), - [sym_assignment] = STATE(181), - [sym_select] = STATE(181), - [sym_insert] = STATE(181), - [sym_control_flow] = STATE(181), - [sym_function_call] = STATE(181), - [sym_loop] = STATE(181), - [sym_while_loop] = STATE(171), - [sym_break_loop] = STATE(171), - [sym_match] = STATE(181), - [aux_sym_root_repeat1] = STATE(3), + [sym_expression] = STATE(184), + [sym__expression_kind] = STATE(189), + [sym_value] = STATE(189), + [sym_boolean] = STATE(175), + [sym_list] = STATE(175), + [sym_function] = STATE(175), + [sym_table] = STATE(175), + [sym_map] = STATE(175), + [sym_math] = STATE(189), + [sym_logic] = STATE(189), + [sym_assignment] = STATE(189), + [sym_select] = STATE(189), + [sym_insert] = STATE(189), + [sym_control_flow] = STATE(189), + [sym_function_call] = STATE(189), + [sym_loop] = STATE(189), + [sym_while_loop] = STATE(187), + [sym_break_loop] = STATE(187), + [sym_match] = STATE(189), + [aux_sym_root_repeat1] = STATE(2), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2651,76 +2657,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(33), }, [2] = { - [sym_item] = STATE(2), - [sym_comment] = STATE(217), - [sym_statement] = STATE(217), + [sym_item] = STATE(3), + [sym_comment] = STATE(215), + [sym_statement] = STATE(215), [sym_yield] = STATE(208), - [sym_expression] = STATE(149), - [sym__expression_kind] = STATE(181), - [sym_value] = STATE(181), - [sym_boolean] = STATE(179), - [sym_list] = STATE(179), - [sym_function] = STATE(179), - [sym_table] = STATE(179), - [sym_map] = STATE(179), - [sym_math] = STATE(181), - [sym_logic] = STATE(181), - [sym_assignment] = STATE(181), - [sym_select] = STATE(181), - [sym_insert] = STATE(181), - [sym_control_flow] = STATE(181), - [sym_function_call] = STATE(181), - [sym_loop] = STATE(181), - [sym_while_loop] = STATE(171), - [sym_break_loop] = STATE(171), - [sym_match] = STATE(181), - [aux_sym_root_repeat1] = STATE(2), + [sym_expression] = STATE(184), + [sym__expression_kind] = STATE(189), + [sym_value] = STATE(189), + [sym_boolean] = STATE(175), + [sym_list] = STATE(175), + [sym_function] = STATE(175), + [sym_table] = STATE(175), + [sym_map] = STATE(175), + [sym_math] = STATE(189), + [sym_logic] = STATE(189), + [sym_assignment] = STATE(189), + [sym_select] = STATE(189), + [sym_insert] = STATE(189), + [sym_control_flow] = STATE(189), + [sym_function_call] = STATE(189), + [sym_loop] = STATE(189), + [sym_while_loop] = STATE(187), + [sym_break_loop] = STATE(187), + [sym_match] = STATE(189), + [aux_sym_root_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), - [anon_sym_POUND] = ACTIONS(40), - [anon_sym_LPAREN] = ACTIONS(43), - [sym_float] = ACTIONS(46), - [sym_integer] = ACTIONS(46), - [sym_string] = ACTIONS(49), - [anon_sym_true] = ACTIONS(52), - [anon_sym_false] = ACTIONS(52), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_function] = ACTIONS(58), - [anon_sym_table] = ACTIONS(61), - [anon_sym_map] = ACTIONS(64), - [anon_sym_select] = ACTIONS(67), - [anon_sym_insert] = ACTIONS(70), - [anon_sym_if] = ACTIONS(73), - [anon_sym_while] = ACTIONS(76), - [anon_sym_loop] = ACTIONS(79), - [anon_sym_match] = ACTIONS(82), - }, - [3] = { - [sym_item] = STATE(2), - [sym_comment] = STATE(217), - [sym_statement] = STATE(217), - [sym_yield] = STATE(208), - [sym_expression] = STATE(149), - [sym__expression_kind] = STATE(181), - [sym_value] = STATE(181), - [sym_boolean] = STATE(179), - [sym_list] = STATE(179), - [sym_function] = STATE(179), - [sym_table] = STATE(179), - [sym_map] = STATE(179), - [sym_math] = STATE(181), - [sym_logic] = STATE(181), - [sym_assignment] = STATE(181), - [sym_select] = STATE(181), - [sym_insert] = STATE(181), - [sym_control_flow] = STATE(181), - [sym_function_call] = STATE(181), - [sym_loop] = STATE(181), - [sym_while_loop] = STATE(171), - [sym_break_loop] = STATE(171), - [sym_match] = STATE(181), - [aux_sym_root_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(85), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2740,6 +2701,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(31), [anon_sym_match] = ACTIONS(33), }, + [3] = { + [sym_item] = STATE(3), + [sym_comment] = STATE(215), + [sym_statement] = STATE(215), + [sym_yield] = STATE(208), + [sym_expression] = STATE(184), + [sym__expression_kind] = STATE(189), + [sym_value] = STATE(189), + [sym_boolean] = STATE(175), + [sym_list] = STATE(175), + [sym_function] = STATE(175), + [sym_table] = STATE(175), + [sym_map] = STATE(175), + [sym_math] = STATE(189), + [sym_logic] = STATE(189), + [sym_assignment] = STATE(189), + [sym_select] = STATE(189), + [sym_insert] = STATE(189), + [sym_control_flow] = STATE(189), + [sym_function_call] = STATE(189), + [sym_loop] = STATE(189), + [sym_while_loop] = STATE(187), + [sym_break_loop] = STATE(187), + [sym_match] = STATE(189), + [aux_sym_root_repeat1] = STATE(3), + [ts_builtin_sym_end] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [anon_sym_POUND] = ACTIONS(42), + [anon_sym_LPAREN] = ACTIONS(45), + [sym_float] = ACTIONS(48), + [sym_integer] = ACTIONS(48), + [sym_string] = ACTIONS(51), + [anon_sym_true] = ACTIONS(54), + [anon_sym_false] = ACTIONS(54), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_function] = ACTIONS(60), + [anon_sym_table] = ACTIONS(63), + [anon_sym_map] = ACTIONS(66), + [anon_sym_select] = ACTIONS(69), + [anon_sym_insert] = ACTIONS(72), + [anon_sym_if] = ACTIONS(75), + [anon_sym_while] = ACTIONS(78), + [anon_sym_loop] = ACTIONS(81), + [anon_sym_match] = ACTIONS(84), + }, }; static const uint16_t ts_small_parse_table[] = { @@ -2772,7 +2778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(87), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -2782,19 +2788,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -2835,7 +2841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(89), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -2845,19 +2851,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -2898,7 +2904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(91), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -2908,19 +2914,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -2961,7 +2967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(93), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -2971,19 +2977,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3024,7 +3030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(95), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3034,19 +3040,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3059,57 +3065,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [425] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, ACTIONS(97), 1, + sym_identifier, + ACTIONS(100), 1, + anon_sym_LPAREN, + ACTIONS(106), 1, + sym_string, + ACTIONS(112), 1, + anon_sym_LBRACK, + ACTIONS(115), 1, + anon_sym_function, + ACTIONS(118), 1, anon_sym_RBRACE, - STATE(149), 1, + ACTIONS(120), 1, + anon_sym_table, + ACTIONS(123), 1, + anon_sym_map, + ACTIONS(126), 1, + anon_sym_select, + ACTIONS(129), 1, + anon_sym_insert, + ACTIONS(132), 1, + anon_sym_if, + ACTIONS(135), 1, + anon_sym_while, + ACTIONS(138), 1, + anon_sym_loop, + ACTIONS(141), 1, + anon_sym_match, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, - ACTIONS(9), 2, + ACTIONS(103), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(109), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3148,9 +3154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(99), 1, + ACTIONS(144), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3160,19 +3166,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3185,57 +3191,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [595] = 22, - ACTIONS(101), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(104), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(110), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(116), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(119), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(122), 1, - anon_sym_RBRACE, - ACTIONS(124), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(127), 1, + ACTIONS(21), 1, anon_sym_map, - ACTIONS(130), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(133), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(136), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(139), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(142), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(145), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + ACTIONS(146), 1, + anon_sym_RBRACE, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, - ACTIONS(107), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(113), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3276,7 +3282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(148), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3286,19 +3292,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3339,7 +3345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(150), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3349,19 +3355,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3402,7 +3408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(152), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3412,19 +3418,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3465,7 +3471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(154), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3475,19 +3481,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3528,7 +3534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(156), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3538,19 +3544,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3591,7 +3597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(158), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3601,19 +3607,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3654,7 +3660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(160), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3664,19 +3670,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3717,7 +3723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(162), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3727,19 +3733,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3778,7 +3784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3788,19 +3794,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(14), 2, + STATE(6), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3839,7 +3845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3849,19 +3855,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3900,7 +3906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3910,19 +3916,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3961,7 +3967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -3971,19 +3977,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(19), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4022,7 +4028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4032,19 +4038,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(4), 2, + STATE(15), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4083,7 +4089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4093,19 +4099,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(14), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4144,7 +4150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4154,19 +4160,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(7), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4205,7 +4211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4218,16 +4224,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(13), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4266,7 +4272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4276,19 +4282,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(19), 2, + STATE(11), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4327,7 +4333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4340,16 +4346,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(12), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4388,7 +4394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4398,19 +4404,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(10), 2, + STATE(8), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4449,7 +4455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4459,19 +4465,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(7), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4510,7 +4516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4523,16 +4529,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(16), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4571,7 +4577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4581,19 +4587,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(6), 2, + STATE(5), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4632,7 +4638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(149), 1, + STATE(184), 1, sym_expression, STATE(208), 1, sym_yield, @@ -4642,19 +4648,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(5), 2, + STATE(18), 2, sym_statement, aux_sym_function_repeat2, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4667,6 +4673,66 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2590] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(409), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2671] = 21, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -4685,17 +4751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(164), 1, + ACTIONS(194), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(196), 1, anon_sym_GT, - ACTIONS(168), 1, + ACTIONS(198), 1, anon_sym_select, - ACTIONS(170), 1, + ACTIONS(200), 1, anon_sym_insert, - ACTIONS(172), 1, + ACTIONS(202), 1, anon_sym_if, - STATE(56), 1, + STATE(58), 1, aux_sym_function_call_repeat1, STATE(195), 1, sym_expression, @@ -4705,76 +4771,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [2671] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(220), 1, - sym_expression, - STATE(241), 1, - sym_yield, - STATE(253), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4787,54 +4793,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2752] = 21, - ACTIONS(174), 1, + ACTIONS(164), 1, sym_identifier, - ACTIONS(176), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(180), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(184), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(192), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(194), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(196), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(198), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(200), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(209), 1, + STATE(211), 1, sym_expression, - STATE(239), 1, + STATE(229), 1, sym_statement, - STATE(241), 1, + STATE(255), 1, sym_yield, - ACTIONS(178), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -4847,54 +4853,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2833] = 21, - ACTIONS(174), 1, + ACTIONS(164), 1, sym_identifier, - ACTIONS(176), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(180), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(184), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(192), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(194), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(196), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(198), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(200), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(209), 1, + STATE(211), 1, sym_expression, - STATE(240), 1, + STATE(233), 1, sym_statement, - STATE(241), 1, + STATE(255), 1, sym_yield, - ACTIONS(178), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -4907,54 +4913,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2914] = 21, - ACTIONS(174), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(176), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(180), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(184), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(21), 1, anon_sym_map, - ACTIONS(192), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(194), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(196), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(198), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(200), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(209), 1, - sym_expression, - STATE(241), 1, - sym_yield, - STATE(253), 1, + STATE(178), 1, sym_statement, - ACTIONS(178), 2, + STATE(182), 1, + sym_yield, + STATE(194), 1, + sym_expression, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4985,17 +4991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(164), 1, + ACTIONS(194), 1, sym_identifier, - ACTIONS(168), 1, + ACTIONS(198), 1, anon_sym_select, - ACTIONS(170), 1, + ACTIONS(200), 1, anon_sym_insert, - ACTIONS(172), 1, + ACTIONS(202), 1, anon_sym_if, ACTIONS(204), 1, anon_sym_GT, - STATE(53), 1, + STATE(52), 1, aux_sym_function_call_repeat1, STATE(195), 1, sym_expression, @@ -5005,16 +5011,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5053,28 +5059,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(138), 1, + STATE(134), 1, sym_expression, - STATE(178), 1, - sym_yield, - STATE(183), 1, + STATE(177), 1, sym_statement, + STATE(182), 1, + sym_yield, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5087,54 +5093,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3157] = 21, - ACTIONS(3), 1, + ACTIONS(206), 1, sym_identifier, - ACTIONS(7), 1, + ACTIONS(208), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(212), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(216), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(218), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(220), 1, anon_sym_table, - ACTIONS(21), 1, + ACTIONS(222), 1, anon_sym_map, - ACTIONS(23), 1, + ACTIONS(224), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(226), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(228), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(230), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(232), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(234), 1, anon_sym_match, - STATE(178), 1, + STATE(155), 1, sym_yield, - STATE(191), 1, - sym_statement, - STATE(194), 1, + STATE(173), 1, sym_expression, - ACTIONS(9), 2, + STATE(202), 1, + sym_statement, + ACTIONS(210), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(166), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(157), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(165), 11, sym__expression_kind, sym_value, sym_math, @@ -5147,66 +5153,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3238] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(159), 1, - sym_yield, - STATE(175), 1, - sym_expression, - STATE(201), 1, - sym_statement, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3319] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -5233,10 +5179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(178), 1, - sym_yield, - STATE(183), 1, + STATE(177), 1, sym_statement, + STATE(182), 1, + sym_yield, STATE(194), 1, sym_expression, ACTIONS(9), 2, @@ -5245,16 +5191,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5266,1575 +5212,22 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [3400] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(159), 1, - sym_yield, - STATE(165), 1, - sym_statement, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3481] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(270), 1, - sym_expression, - STATE(401), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3562] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(138), 1, - sym_expression, - STATE(178), 1, - sym_yield, - STATE(191), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3643] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(142), 1, - sym_statement, - STATE(159), 1, - sym_yield, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3724] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(220), 1, - sym_expression, - STATE(240), 1, - sym_statement, - STATE(241), 1, - sym_yield, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3805] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, - ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - ACTIONS(236), 1, - anon_sym_GT, - STATE(35), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3886] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(270), 1, - sym_expression, - STATE(414), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3967] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(270), 1, - sym_expression, - STATE(374), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4048] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, - ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - ACTIONS(238), 1, - anon_sym_GT, - STATE(56), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4129] = 21, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, + [3319] = 5, ACTIONS(240), 1, - sym_identifier, - ACTIONS(242), 1, - anon_sym_RBRACE, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(63), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4210] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, - ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - ACTIONS(250), 1, - anon_sym_GT, - STATE(58), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4291] = 21, - ACTIONS(252), 1, - sym_identifier, - ACTIONS(255), 1, - anon_sym_LPAREN, - ACTIONS(261), 1, - sym_string, - ACTIONS(267), 1, - anon_sym_LBRACK, - ACTIONS(270), 1, - anon_sym_function, - ACTIONS(273), 1, - anon_sym_GT, - ACTIONS(275), 1, - anon_sym_table, - ACTIONS(278), 1, - anon_sym_map, - ACTIONS(281), 1, - anon_sym_select, - ACTIONS(284), 1, - anon_sym_insert, - ACTIONS(287), 1, - anon_sym_if, - ACTIONS(290), 1, - anon_sym_while, - ACTIONS(293), 1, - anon_sym_loop, - ACTIONS(296), 1, - anon_sym_match, - STATE(56), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(258), 2, - sym_float, - sym_integer, - ACTIONS(264), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4372] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(270), 1, - sym_expression, - STATE(399), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4453] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, - ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - ACTIONS(299), 1, - anon_sym_GT, - STATE(56), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4534] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(147), 1, - sym_statement, - STATE(159), 1, - sym_yield, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4615] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(270), 1, - sym_expression, - STATE(397), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4696] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(220), 1, - sym_expression, - STATE(241), 1, - sym_yield, - STATE(266), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4777] = 21, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - ACTIONS(301), 1, - anon_sym_RBRACE, - STATE(63), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4858] = 21, - ACTIONS(303), 1, - sym_identifier, - ACTIONS(306), 1, - anon_sym_LPAREN, - ACTIONS(312), 1, - sym_string, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(321), 1, - anon_sym_function, - ACTIONS(324), 1, - anon_sym_RBRACE, - ACTIONS(326), 1, - anon_sym_table, - ACTIONS(329), 1, - anon_sym_map, - ACTIONS(332), 1, - anon_sym_select, - ACTIONS(335), 1, - anon_sym_insert, - ACTIONS(338), 1, - anon_sym_if, - ACTIONS(341), 1, - anon_sym_while, - ACTIONS(344), 1, - anon_sym_loop, - ACTIONS(347), 1, - anon_sym_match, - STATE(63), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(309), 2, - sym_float, - sym_integer, - ACTIONS(315), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4939] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(149), 1, - sym_expression, - STATE(208), 1, - sym_yield, - STATE(222), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5020] = 21, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - ACTIONS(350), 1, - anon_sym_RBRACE, - STATE(63), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5101] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(152), 1, - sym_statement, - STATE(159), 1, - sym_yield, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5182] = 21, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(270), 1, - sym_expression, - STATE(408), 1, - sym_statement, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5263] = 20, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(62), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5341] = 20, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(54), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5419] = 20, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(65), 1, - aux_sym_match_repeat1, - STATE(277), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5497] = 5, - ACTIONS(356), 1, anon_sym_LT, - ACTIONS(358), 1, + ACTIONS(242), 1, anon_sym_EQ, - ACTIONS(360), 2, + ACTIONS(244), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(352), 13, + ACTIONS(236), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_STAR, @@ -6842,7 +5235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(354), 20, + ACTIONS(238), 20, sym_identifier, sym_float, sym_integer, @@ -6863,611 +5256,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [5545] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(283), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5620] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(261), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5695] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(279), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5770] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(122), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5845] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(123), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5920] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(119), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5995] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, + [3368] = 21, ACTIONS(164), 1, sym_identifier, - ACTIONS(168), 1, - anon_sym_select, + ACTIONS(166), 1, + anon_sym_LPAREN, ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - STATE(197), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6070] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(276), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6145] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, - ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - STATE(200), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6220] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(274), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6295] = 19, ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, anon_sym_match, - STATE(207), 1, + STATE(208), 1, + sym_yield, + STATE(271), 1, sym_expression, - ACTIONS(178), 2, + STATE(412), 1, + sym_statement, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7479,51 +5316,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6370] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, + [3449] = 21, + ACTIONS(206), 1, sym_identifier, - ACTIONS(244), 1, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, anon_sym_select, - ACTIONS(246), 1, + ACTIONS(226), 1, anon_sym_insert, - ACTIONS(248), 1, + ACTIONS(228), 1, anon_sym_if, - STATE(278), 1, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(112), 1, sym_expression, - ACTIONS(178), 2, + STATE(155), 1, + sym_yield, + STATE(163), 1, + sym_statement, + ACTIONS(210), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(166), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(157), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(165), 11, sym__expression_kind, sym_value, sym_math, @@ -7535,163 +5376,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6445] = 19, - ACTIONS(7), 1, + [3530] = 21, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - STATE(199), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6520] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(168), 1, - anon_sym_select, - ACTIONS(170), 1, - anon_sym_insert, - ACTIONS(172), 1, - anon_sym_if, - STATE(198), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6595] = 19, ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(200), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(214), 1, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(248), 1, + anon_sym_RBRACE, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(59), 1, + aux_sym_match_repeat1, + STATE(281), 1, sym_expression, - ACTIONS(178), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7703,7 +5436,727 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6670] = 19, + [3611] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(224), 1, + sym_expression, + STATE(233), 1, + sym_statement, + STATE(255), 1, + sym_yield, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3692] = 21, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(112), 1, + sym_expression, + STATE(155), 1, + sym_yield, + STATE(158), 1, + sym_statement, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3773] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(405), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3854] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(413), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3935] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(256), 1, + anon_sym_GT, + STATE(58), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4016] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(258), 1, + anon_sym_GT, + STATE(54), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4097] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(260), 1, + anon_sym_GT, + STATE(58), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4178] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(407), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4259] = 21, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(112), 1, + sym_expression, + STATE(144), 1, + sym_statement, + STATE(155), 1, + sym_yield, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4340] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(404), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4421] = 21, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(265), 1, + anon_sym_LPAREN, + ACTIONS(271), 1, + sym_string, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_function, + ACTIONS(283), 1, + anon_sym_GT, + ACTIONS(285), 1, + anon_sym_table, + ACTIONS(288), 1, + anon_sym_map, + ACTIONS(291), 1, + anon_sym_select, + ACTIONS(294), 1, + anon_sym_insert, + ACTIONS(297), 1, + anon_sym_if, + ACTIONS(300), 1, + anon_sym_while, + ACTIONS(303), 1, + anon_sym_loop, + ACTIONS(306), 1, + anon_sym_match, + STATE(58), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(268), 2, + sym_float, + sym_integer, + ACTIONS(274), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4502] = 21, + ACTIONS(309), 1, + sym_identifier, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + sym_string, + ACTIONS(324), 1, + anon_sym_LBRACK, + ACTIONS(327), 1, + anon_sym_function, + ACTIONS(330), 1, + anon_sym_RBRACE, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(335), 1, + anon_sym_map, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(341), 1, + anon_sym_insert, + ACTIONS(344), 1, + anon_sym_if, + ACTIONS(347), 1, + anon_sym_while, + ACTIONS(350), 1, + anon_sym_loop, + ACTIONS(353), 1, + anon_sym_match, + STATE(59), 1, + aux_sym_match_repeat1, + STATE(281), 1, + sym_expression, + ACTIONS(315), 2, + sym_float, + sym_integer, + ACTIONS(321), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4583] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -7730,24 +6183,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(133), 1, + STATE(184), 1, sym_expression, + STATE(208), 1, + sym_yield, + STATE(218), 1, + sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -7759,7 +6216,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6745] = 19, + [4664] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(356), 1, + anon_sym_GT, + STATE(36), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4745] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -7788,190 +6305,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, STATE(134), 1, sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6820] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(126), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6895] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(121), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6970] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, + STATE(178), 1, + sym_statement, STATE(182), 1, - sym_expression, + sym_yield, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -7983,331 +6336,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7045] = 19, - ACTIONS(206), 1, + [4826] = 21, + ACTIONS(164), 1, sym_identifier, - ACTIONS(208), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(212), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(150), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(158), 2, - sym_while_loop, - sym_break_loop, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7120] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(148), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7195] = 19, ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(212), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7270] = 19, - ACTIONS(174), 1, - sym_identifier, ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(215), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7345] = 19, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, anon_sym_map, - ACTIONS(192), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(216), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7420] = 19, - ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, anon_sym_insert, - ACTIONS(196), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(198), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(200), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(192), 1, anon_sym_match, STATE(211), 1, sym_expression, - ACTIONS(178), 2, + STATE(231), 1, + sym_statement, + STATE(255), 1, + sym_yield, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -8319,219 +6396,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7495] = 19, + [4907] = 21, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, ACTIONS(192), 1, - anon_sym_select, - ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, anon_sym_match, - STATE(213), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7570] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(128), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7645] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(129), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7720] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(248), 1, + ACTIONS(254), 1, anon_sym_if, + ACTIONS(358), 1, + anon_sym_RBRACE, + STATE(59), 1, + aux_sym_match_repeat1, STATE(281), 1, sym_expression, - ACTIONS(178), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -8543,51 +6456,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7795] = 19, + [4988] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, ACTIONS(176), 1, - anon_sym_LPAREN, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, ACTIONS(180), 1, - sym_string, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, ACTIONS(184), 1, - anon_sym_LBRACK, + anon_sym_insert, ACTIONS(186), 1, - anon_sym_function, + anon_sym_if, ACTIONS(188), 1, - anon_sym_table, + anon_sym_while, ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(192), 1, anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(272), 1, + STATE(224), 1, sym_expression, - ACTIONS(178), 2, + STATE(255), 1, + sym_yield, + STATE(268), 1, + sym_statement, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -8599,63 +6516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7870] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(137), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(171), 2, - sym_while_loop, - sym_break_loop, - STATE(179), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(181), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7945] = 19, + [5069] = 21, ACTIONS(206), 1, sym_identifier, ACTIONS(208), 1, @@ -8682,24 +6543,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(234), 1, anon_sym_match, - STATE(125), 1, + STATE(112), 1, sym_expression, + STATE(143), 1, + sym_statement, + STATE(155), 1, + sym_yield, ACTIONS(210), 2, sym_float, sym_integer, ACTIONS(214), 2, anon_sym_true, anon_sym_false, - STATE(158), 2, + STATE(166), 2, sym_while_loop, sym_break_loop, - STATE(139), 5, + STATE(157), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(157), 11, + STATE(165), 11, sym__expression_kind, sym_value, sym_math, @@ -8711,7 +6576,1227 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8020] = 19, + [5150] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(224), 1, + sym_expression, + STATE(229), 1, + sym_statement, + STATE(255), 1, + sym_yield, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5231] = 21, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + ACTIONS(360), 1, + anon_sym_RBRACE, + STATE(59), 1, + aux_sym_match_repeat1, + STATE(281), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5312] = 20, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(64), 1, + aux_sym_match_repeat1, + STATE(281), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5390] = 5, + STATE(123), 1, + sym_logic_operator, + STATE(124), 1, + sym_math_operator, + STATE(132), 1, + aux_sym_yield_repeat1, + ACTIONS(362), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(364), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [5438] = 20, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(68), 1, + aux_sym_match_repeat1, + STATE(281), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5516] = 5, + ACTIONS(366), 1, + anon_sym_LT, + ACTIONS(368), 1, + anon_sym_EQ, + ACTIONS(370), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(236), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(238), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [5564] = 20, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(47), 1, + aux_sym_match_repeat1, + STATE(281), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5642] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(210), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5717] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(283), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5792] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(265), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5867] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(263), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5942] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(207), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6017] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(277), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6092] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(275), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6167] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + STATE(198), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6242] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + STATE(196), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6317] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(217), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6392] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(192), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6467] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(145), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6542] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(212), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6617] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(209), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6692] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(216), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6767] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -8746,16 +7831,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -8767,485 +7852,163 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8095] = 19, - ACTIONS(176), 1, + [6842] = 19, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(180), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(284), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(287), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8170] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(273), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8245] = 5, - ACTIONS(362), 1, - anon_sym_LT, - ACTIONS(364), 1, - anon_sym_EQ, - ACTIONS(366), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(352), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [8292] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(284), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(291), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8367] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(280), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8442] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(258), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8517] = 19, ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(282), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6917] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(278), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6992] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, ACTIONS(194), 1, - anon_sym_insert, - ACTIONS(196), 1, - anon_sym_if, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - STATE(271), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8592] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(284), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(289), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8667] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, anon_sym_select, - ACTIONS(246), 1, + ACTIONS(200), 1, anon_sym_insert, - ACTIONS(248), 1, + ACTIONS(202), 1, anon_sym_if, - STATE(275), 1, + STATE(200), 1, sym_expression, - ACTIONS(178), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -9257,7 +8020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8742] = 19, + [7067] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -9284,7 +8047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(127), 1, + STATE(168), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -9292,16 +8055,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(171), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(179), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(181), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -9313,261 +8076,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8817] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, + [7142] = 19, + ACTIONS(164), 1, sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(282), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8892] = 19, - ACTIONS(176), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(180), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(263), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8967] = 19, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_function, - ACTIONS(188), 1, - anon_sym_table, - ACTIONS(190), 1, - anon_sym_map, - ACTIONS(198), 1, - anon_sym_while, - ACTIONS(200), 1, - anon_sym_loop, - ACTIONS(202), 1, - anon_sym_match, - ACTIONS(240), 1, - sym_identifier, - ACTIONS(244), 1, - anon_sym_select, - ACTIONS(246), 1, - anon_sym_insert, - ACTIONS(248), 1, - anon_sym_if, - STATE(260), 1, - sym_expression, - ACTIONS(178), 2, - sym_float, - sym_integer, - ACTIONS(182), 2, - anon_sym_true, - anon_sym_false, - STATE(247), 2, - sym_while_loop, - sym_break_loop, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(227), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [9042] = 5, - STATE(75), 1, - sym_logic_operator, - STATE(76), 1, - sym_math_operator, - STATE(132), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(370), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9089] = 19, ACTIONS(174), 1, - sym_identifier, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(180), 1, - sym_string, - ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(188), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(190), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(192), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(194), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(196), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(198), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(200), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(202), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(265), 1, + STATE(213), 1, sym_expression, - ACTIONS(178), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(182), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(247), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(236), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(227), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9579,35 +8132,903 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [9164] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(75), 1, + [7217] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(273), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7292] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(284), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7367] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(276), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7442] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(105), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7517] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(131), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7592] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(130), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7667] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(279), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7742] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(280), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7817] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(285), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(295), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7892] = 4, + STATE(123), 1, sym_logic_operator, - STATE(76), 1, + STATE(124), 1, sym_math_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(372), 8, + ACTIONS(372), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, - ACTIONS(374), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(374), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [7937] = 5, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + STATE(149), 1, + aux_sym_yield_repeat1, + ACTIONS(362), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(364), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [7984] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + STATE(199), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8059] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(274), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8134] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(272), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8209] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(285), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(287), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8284] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(153), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8359] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(123), 1, + sym_logic_operator, + STATE(124), 1, + sym_math_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(376), 9, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(378), 15, sym_identifier, sym_float, sym_integer, @@ -9623,65 +9044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9216] = 8, - ACTIONS(378), 1, + [8412] = 9, + ACTIONS(382), 1, anon_sym_DASH, - STATE(75), 1, - sym_logic_operator, - STATE(76), 1, - sym_math_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 8, - ts_builtin_sym_end, - anon_sym_POUND, + ACTIONS(392), 1, anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(386), 15, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9268] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(75), 1, + STATE(123), 1, sym_logic_operator, - STATE(76), 1, + STATE(124), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -9689,10 +9068,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(388), 8, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, ACTIONS(390), 15, @@ -9711,36 +9090,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9320] = 9, - ACTIONS(378), 1, + [8467] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(137), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8542] = 8, + ACTIONS(382), 1, anon_sym_DASH, - ACTIONS(396), 1, - anon_sym_DASH_GT, - STATE(75), 1, + STATE(123), 1, sym_logic_operator, - STATE(76), 1, + STATE(124), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 7, + ACTIONS(394), 9, ts_builtin_sym_end, anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, - ACTIONS(394), 15, + ACTIONS(396), 15, sym_identifier, sym_float, sym_integer, @@ -9756,32 +9191,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9374] = 8, - ACTIONS(378), 1, + [8595] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(285), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(292), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8670] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(111), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8745] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(114), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8820] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(104), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8895] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(70), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8970] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(259), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9045] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(75), 1, + STATE(123), 1, sym_logic_operator, - STATE(76), 1, + STATE(124), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(398), 8, + ACTIONS(398), 9, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, ACTIONS(400), 15, @@ -9800,27 +9572,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9426] = 4, - STATE(75), 1, + [9098] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(123), 1, sym_logic_operator, - STATE(76), 1, + STATE(124), 1, sym_math_operator, - ACTIONS(402), 14, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(402), 9, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(404), 19, + ACTIONS(404), 15, sym_identifier, sym_float, sym_integer, @@ -9829,10 +9610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, anon_sym_select, anon_sym_insert, anon_sym_if, @@ -9840,143 +9617,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9470] = 5, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - STATE(145), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(370), 18, + [9151] = 19, + ACTIONS(206), 1, sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(121), 1, + sym_expression, + ACTIONS(210), 2, sym_float, sym_integer, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9516] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(372), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(374), 14, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9226] = 19, + ACTIONS(206), 1, sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(122), 1, + sym_expression, + ACTIONS(210), 2, sym_float, sym_integer, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9567] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(398), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(400), 14, + STATE(166), 2, + sym_while_loop, + sym_break_loop, + STATE(157), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(165), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9301] = 19, + ACTIONS(3), 1, sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(136), 1, + sym_expression, + ACTIONS(9), 2, sym_float, sym_integer, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, + STATE(187), 2, + sym_while_loop, + sym_break_loop, + STATE(175), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(189), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9376] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, anon_sym_function, + ACTIONS(178), 1, anon_sym_table, + ACTIONS(180), 1, anon_sym_map, + ACTIONS(182), 1, anon_sym_select, + ACTIONS(184), 1, anon_sym_insert, + ACTIONS(186), 1, anon_sym_if, + ACTIONS(188), 1, anon_sym_while, + ACTIONS(190), 1, anon_sym_loop, + ACTIONS(192), 1, anon_sym_match, - [9618] = 3, + STATE(266), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9451] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_table, + ACTIONS(180), 1, + anon_sym_map, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(261), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(237), 2, + sym_while_loop, + sym_break_loop, + STATE(244), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(251), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9526] = 3, ACTIONS(410), 1, anon_sym_where, - ACTIONS(406), 14, + ACTIONS(406), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10005,17 +9936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9659] = 4, - ACTIONS(412), 1, - anon_sym_DASH_GT, - STATE(131), 1, - aux_sym_yield_repeat1, - ACTIONS(402), 13, + [9568] = 3, + ACTIONS(416), 1, + anon_sym_where, + ACTIONS(412), 15, ts_builtin_sym_end, anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10024,7 +9955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(404), 19, + ACTIONS(414), 19, sym_identifier, sym_float, sym_integer, @@ -10044,16 +9975,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9702] = 3, - STATE(131), 1, - aux_sym_yield_repeat1, - ACTIONS(415), 14, + [9610] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(376), 9, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(378), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9662] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(394), 9, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(396), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9714] = 3, + STATE(133), 1, + aux_sym_yield_repeat1, + ACTIONS(418), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10062,7 +10082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(417), 19, + ACTIONS(420), 19, sym_identifier, sym_float, sym_integer, @@ -10082,37 +10102,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9743] = 10, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(419), 1, + [9756] = 4, + ACTIONS(422), 1, anon_sym_DASH_GT, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - STATE(205), 1, + STATE(133), 1, aux_sym_yield_repeat1, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(368), 6, + ACTIONS(372), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(370), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(374), 19, sym_identifier, sym_float, sym_integer, @@ -10121,27 +10131,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9798] = 8, - ACTIONS(378), 1, anon_sym_DASH, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9800] = 9, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(425), 1, + anon_sym_DASH_GT, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -10149,10 +10166,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(388), 8, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, ACTIONS(390), 14, @@ -10170,35 +10187,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9849] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(88), 1, + [9854] = 4, + STATE(113), 1, sym_math_operator, - STATE(105), 1, + STATE(125), 1, sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 8, + ACTIONS(372), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, - ACTIONS(386), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(374), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9898] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(398), 9, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(400), 14, sym_identifier, sym_float, sym_integer, @@ -10213,16 +10271,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9900] = 3, - ACTIONS(425), 1, + [9950] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(402), 9, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(404), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10002] = 2, + ACTIONS(427), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(429), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10041] = 2, + ACTIONS(431), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(433), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10080] = 2, + ACTIONS(435), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(437), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_into, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10119] = 3, + ACTIONS(439), 1, anon_sym_where, - ACTIONS(421), 14, + ACTIONS(406), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10231,7 +10445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(423), 19, + ACTIONS(408), 18, sym_identifier, sym_float, sym_integer, @@ -10247,328 +10461,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, - anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [9941] = 4, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, + [10160] = 3, + ACTIONS(441), 1, + anon_sym_where, + ACTIONS(412), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(414), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10201] = 3, + ACTIONS(447), 1, + anon_sym_else, + ACTIONS(443), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(445), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10242] = 3, + ACTIONS(449), 1, + anon_sym_else, + ACTIONS(443), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(445), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10283] = 6, + ACTIONS(451), 1, + anon_sym_DASH_GT, + STATE(123), 1, sym_logic_operator, - ACTIONS(402), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(404), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9984] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(427), 1, - anon_sym_DASH_GT, - STATE(88), 1, + STATE(124), 1, sym_math_operator, - STATE(105), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(394), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10037] = 2, - ACTIONS(429), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(431), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10075] = 2, - ACTIONS(433), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(435), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10113] = 2, - ACTIONS(437), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(439), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10151] = 2, - ACTIONS(441), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(443), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10189] = 2, - ACTIONS(445), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(447), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10227] = 2, - ACTIONS(449), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(451), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10265] = 3, - STATE(151), 1, + STATE(193), 1, aux_sym_yield_repeat1, - ACTIONS(415), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, + ACTIONS(362), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(417), 18, + ACTIONS(364), 19, sym_identifier, sym_float, sym_integer, @@ -10584,17 +10615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [10305] = 2, - ACTIONS(453), 14, + [10330] = 2, + ACTIONS(453), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10623,16 +10656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10343] = 3, - ACTIONS(461), 1, - anon_sym_else, - ACTIONS(457), 14, + [10369] = 2, + ACTIONS(457), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10641,7 +10673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(459), 18, + ACTIONS(459), 19, sym_identifier, sym_float, sym_integer, @@ -10657,80 +10689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [10383] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(402), 7, + [10408] = 2, + ACTIONS(461), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(404), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10433] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(463), 1, - anon_sym_DASH_GT, - STATE(88), 1, - sym_math_operator, - STATE(105), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(394), 14, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(463), 19, sym_identifier, sym_float, sym_integer, @@ -10739,33 +10719,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, anon_sym_select, anon_sym_insert, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [10485] = 6, - ACTIONS(465), 1, - anon_sym_DASH_GT, - STATE(75), 1, - sym_logic_operator, - STATE(76), 1, - sym_math_operator, - STATE(193), 1, + [10447] = 3, + STATE(152), 1, aux_sym_yield_repeat1, - ACTIONS(368), 10, + ACTIONS(418), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(370), 19, + ACTIONS(420), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10488] = 2, + ACTIONS(465), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(467), 19, sym_identifier, sym_float, sym_integer, @@ -10785,17 +10805,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10531] = 4, - ACTIONS(467), 1, + [10527] = 2, + ACTIONS(469), 15, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(151), 1, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(471), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10566] = 4, + ACTIONS(473), 1, + anon_sym_DASH_GT, + STATE(152), 1, aux_sym_yield_repeat1, - ACTIONS(402), 13, + ACTIONS(372), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10804,7 +10862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(404), 18, + ACTIONS(374), 18, sym_identifier, sym_float, sym_integer, @@ -10823,25 +10881,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10573] = 3, - ACTIONS(470), 1, - anon_sym_else, - ACTIONS(457), 14, - ts_builtin_sym_end, - anon_sym_POUND, + [10609] = 10, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(476), 1, anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + STATE(204), 1, + aux_sym_yield_repeat1, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(459), 18, + ACTIONS(362), 6, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(364), 14, sym_identifier, sym_float, sym_integer, @@ -10850,26 +10920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, anon_sym_select, anon_sym_insert, anon_sym_if, anon_sym_while, anon_sym_loop, anon_sym_match, - [10613] = 3, - ACTIONS(472), 1, - anon_sym_where, - ACTIONS(421), 14, + [10664] = 2, + ACTIONS(435), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10878,42 +10943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(423), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10653] = 2, - ACTIONS(474), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(476), 19, + ACTIONS(437), 19, sym_identifier, sym_float, sym_integer, @@ -10933,16 +10963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10691] = 3, - ACTIONS(478), 1, - anon_sym_where, - ACTIONS(406), 14, + [10703] = 2, + ACTIONS(388), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -10951,42 +10980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(408), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10731] = 2, - ACTIONS(480), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(482), 19, + ACTIONS(390), 19, sym_identifier, sym_float, sym_integer, @@ -11006,14 +11000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10769] = 2, - ACTIONS(484), 14, + [10742] = 2, + ACTIONS(478), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11022,7 +11017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(486), 19, + ACTIONS(480), 19, sym_identifier, sym_float, sym_integer, @@ -11042,14 +11037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10807] = 2, - ACTIONS(488), 14, + [10781] = 2, + ACTIONS(482), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11058,7 +11054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(490), 19, + ACTIONS(484), 19, sym_identifier, sym_float, sym_integer, @@ -11078,14 +11074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10845] = 2, - ACTIONS(392), 14, + [10820] = 2, + ACTIONS(486), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11094,7 +11091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(394), 19, + ACTIONS(488), 19, sym_identifier, sym_float, sym_integer, @@ -11114,14 +11111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10883] = 2, - ACTIONS(492), 14, + [10859] = 2, + ACTIONS(490), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11130,7 +11128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(494), 19, + ACTIONS(492), 19, sym_identifier, sym_float, sym_integer, @@ -11150,14 +11148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10921] = 2, - ACTIONS(496), 14, + [10898] = 2, + ACTIONS(494), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11166,7 +11165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(498), 19, + ACTIONS(496), 19, sym_identifier, sym_float, sym_integer, @@ -11186,14 +11185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10959] = 2, - ACTIONS(500), 14, + [10937] = 2, + ACTIONS(498), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11202,7 +11202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(502), 19, + ACTIONS(500), 19, sym_identifier, sym_float, sym_integer, @@ -11222,14 +11222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10997] = 2, - ACTIONS(504), 14, + [10976] = 2, + ACTIONS(502), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11238,7 +11239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(506), 19, + ACTIONS(504), 19, sym_identifier, sym_float, sym_integer, @@ -11258,14 +11259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11035] = 2, - ACTIONS(508), 14, + [11015] = 2, + ACTIONS(506), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11274,7 +11276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(510), 19, + ACTIONS(508), 19, sym_identifier, sym_float, sym_integer, @@ -11294,14 +11296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11073] = 2, - ACTIONS(512), 14, + [11054] = 2, + ACTIONS(510), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11310,7 +11313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(514), 19, + ACTIONS(512), 19, sym_identifier, sym_float, sym_integer, @@ -11330,14 +11333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11111] = 2, - ACTIONS(492), 14, + [11093] = 2, + ACTIONS(514), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11346,43 +11350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(494), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_into, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11149] = 2, - ACTIONS(516), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(518), 19, + ACTIONS(516), 19, sym_identifier, sym_float, sym_integer, @@ -11402,14 +11370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11187] = 2, - ACTIONS(520), 14, + [11132] = 2, + ACTIONS(518), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11418,7 +11387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(522), 19, + ACTIONS(520), 19, sym_identifier, sym_float, sym_integer, @@ -11438,14 +11407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11225] = 2, - ACTIONS(524), 14, + [11171] = 2, + ACTIONS(522), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11454,7 +11424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(526), 19, + ACTIONS(524), 19, sym_identifier, sym_float, sym_integer, @@ -11474,14 +11444,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11263] = 2, - ACTIONS(516), 14, + [11210] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(372), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(374), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11260] = 2, + ACTIONS(427), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11490,7 +11503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(518), 18, + ACTIONS(429), 18, sym_identifier, sym_float, sym_integer, @@ -11509,14 +11522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11300] = 2, - ACTIONS(488), 14, + [11298] = 2, + ACTIONS(431), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11525,7 +11539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(490), 18, + ACTIONS(433), 18, sym_identifier, sym_float, sym_integer, @@ -11544,14 +11558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11337] = 2, - ACTIONS(524), 14, + [11336] = 2, + ACTIONS(469), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11560,7 +11575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(526), 18, + ACTIONS(471), 18, sym_identifier, sym_float, sym_integer, @@ -11580,13 +11595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [11374] = 2, - ACTIONS(500), 14, + ACTIONS(465), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11595,7 +11611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(502), 18, + ACTIONS(467), 18, sym_identifier, sym_float, sym_integer, @@ -11614,68 +11630,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11411] = 2, - ACTIONS(496), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(498), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, + [11412] = 9, + ACTIONS(382), 1, anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11448] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(528), 1, + ACTIONS(526), 1, anon_sym_DASH_GT, - STATE(75), 1, + STATE(123), 1, sym_logic_operator, - STATE(76), 1, + STATE(124), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 4, + ACTIONS(388), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(394), 15, + ACTIONS(390), 15, sym_identifier, sym_float, sym_integer, @@ -11691,14 +11673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11499] = 2, - ACTIONS(433), 14, + [11464] = 2, + ACTIONS(461), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11707,7 +11690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(435), 18, + ACTIONS(463), 18, sym_identifier, sym_float, sym_integer, @@ -11726,14 +11709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11536] = 2, - ACTIONS(520), 14, + [11502] = 2, + ACTIONS(482), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11742,7 +11726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(522), 18, + ACTIONS(484), 18, sym_identifier, sym_float, sym_integer, @@ -11761,14 +11745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11573] = 2, - ACTIONS(392), 14, + [11540] = 2, + ACTIONS(457), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11777,7 +11762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(394), 18, + ACTIONS(459), 18, sym_identifier, sym_float, sym_integer, @@ -11796,14 +11781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11610] = 2, - ACTIONS(429), 14, + [11578] = 2, + ACTIONS(506), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11812,7 +11798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(431), 18, + ACTIONS(508), 18, sym_identifier, sym_float, sym_integer, @@ -11831,14 +11817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11647] = 2, - ACTIONS(474), 14, + [11616] = 2, + ACTIONS(486), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11847,7 +11834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(476), 18, + ACTIONS(488), 18, sym_identifier, sym_float, sym_integer, @@ -11866,14 +11853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11684] = 2, - ACTIONS(484), 14, + [11654] = 2, + ACTIONS(498), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11882,7 +11870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(486), 18, + ACTIONS(500), 18, sym_identifier, sym_float, sym_integer, @@ -11901,27 +11889,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11721] = 6, - ACTIONS(530), 1, + [11692] = 2, + ACTIONS(478), 15, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(88), 1, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(480), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11730] = 2, + ACTIONS(510), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(512), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11768] = 2, + ACTIONS(388), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(390), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11806] = 2, + ACTIONS(522), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(524), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11844] = 9, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(528), 1, + anon_sym_DASH_GT, + STATE(113), 1, sym_math_operator, - STATE(105), 1, + STATE(125), 1, sym_logic_operator, - STATE(196), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 10, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(370), 18, + ACTIONS(388), 6, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(390), 14, sym_identifier, sym_float, sym_integer, @@ -11930,24 +12070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, anon_sym_select, anon_sym_insert, anon_sym_if, anon_sym_while, anon_sym_loop, anon_sym_match, - [11766] = 2, - ACTIONS(512), 14, + [11896] = 2, + ACTIONS(494), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -11956,7 +12093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(514), 18, + ACTIONS(496), 18, sym_identifier, sym_float, sym_integer, @@ -11975,52 +12112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11803] = 5, - ACTIONS(362), 1, - anon_sym_LT, - ACTIONS(532), 1, - anon_sym_EQ, - ACTIONS(534), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(352), 9, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11846] = 2, - ACTIONS(508), 14, + [11934] = 2, + ACTIONS(490), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -12029,7 +12129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(510), 18, + ACTIONS(492), 18, sym_identifier, sym_float, sym_integer, @@ -12048,14 +12148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11883] = 2, - ACTIONS(449), 14, + [11972] = 2, + ACTIONS(518), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -12064,7 +12165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(451), 18, + ACTIONS(520), 18, sym_identifier, sym_float, sym_integer, @@ -12083,14 +12184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11920] = 2, - ACTIONS(504), 14, + [12010] = 2, + ACTIONS(502), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -12099,7 +12201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(506), 18, + ACTIONS(504), 18, sym_identifier, sym_float, sym_integer, @@ -12118,14 +12220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11957] = 2, - ACTIONS(445), 14, + [12048] = 2, + ACTIONS(514), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -12134,7 +12237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(447), 18, + ACTIONS(516), 18, sym_identifier, sym_float, sym_integer, @@ -12153,119 +12256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11994] = 2, - ACTIONS(437), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(439), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12031] = 2, - ACTIONS(480), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(482), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12068] = 2, - ACTIONS(441), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(443), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12105] = 2, - ACTIONS(453), 14, + [12086] = 2, + ACTIONS(453), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, @@ -12293,15 +12292,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12142] = 4, - ACTIONS(465), 1, - anon_sym_DASH_GT, - STATE(131), 1, - aux_sym_yield_repeat1, - ACTIONS(415), 10, + [12124] = 5, + ACTIONS(366), 1, + anon_sym_LT, + ACTIONS(530), 1, + anon_sym_EQ, + ACTIONS(532), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(236), 10, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(238), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12168] = 6, + ACTIONS(534), 1, + anon_sym_DASH_GT, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + STATE(197), 1, + aux_sym_yield_repeat1, + ACTIONS(362), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_PLUS, anon_sym_STAR, @@ -12309,7 +12352,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(417), 19, + ACTIONS(364), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12214] = 4, + ACTIONS(451), 1, + anon_sym_DASH_GT, + STATE(133), 1, + aux_sym_yield_repeat1, + ACTIONS(418), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(420), 19, sym_identifier, sym_float, sym_integer, @@ -12329,33 +12408,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12182] = 9, - ACTIONS(378), 1, + [12255] = 9, + ACTIONS(382), 1, anon_sym_DASH, ACTIONS(536), 1, anon_sym_DASH_GT, - STATE(88), 1, + STATE(113), 1, sym_math_operator, - STATE(105), 1, + STATE(125), 1, sym_logic_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 4, + ACTIONS(388), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(394), 14, + ACTIONS(390), 14, sym_identifier, sym_float, sym_integer, @@ -12370,21 +12450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12232] = 8, - ACTIONS(378), 1, + [12306] = 9, + ACTIONS(382), 1, anon_sym_DASH, - STATE(78), 1, + ACTIONS(542), 1, + anon_sym_COMMA, + STATE(92), 1, sym_math_operator, - STATE(80), 1, + STATE(106), 1, sym_logic_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -12409,15 +12491,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12279] = 4, - ACTIONS(530), 1, + [12356] = 8, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(92), 1, + sym_math_operator, + STATE(106), 1, + sym_logic_operator, + ACTIONS(384), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(386), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(376), 5, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(378), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12404] = 4, + ACTIONS(534), 1, anon_sym_DASH_GT, - STATE(151), 1, + STATE(152), 1, aux_sym_yield_repeat1, - ACTIONS(415), 10, + ACTIONS(418), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_PLUS, anon_sym_STAR, @@ -12425,7 +12548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(417), 18, + ACTIONS(420), 18, sym_identifier, sym_float, sym_integer, @@ -12444,31 +12567,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12318] = 8, - ACTIONS(378), 1, + [12444] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(78), 1, + STATE(92), 1, sym_math_operator, - STATE(80), 1, + STATE(106), 1, sym_logic_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(388), 4, + ACTIONS(394), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(390), 14, + ACTIONS(396), 14, sym_identifier, sym_float, sym_integer, @@ -12483,29 +12607,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12365] = 8, - ACTIONS(378), 1, + [12492] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(78), 1, + STATE(92), 1, sym_math_operator, - STATE(80), 1, + STATE(106), 1, sym_logic_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(398), 4, + ACTIONS(398), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, ACTIONS(400), 14, sym_identifier, @@ -12522,31 +12647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12412] = 8, - ACTIONS(378), 1, + [12540] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(78), 1, + STATE(92), 1, sym_math_operator, - STATE(80), 1, + STATE(106), 1, sym_logic_operator, - ACTIONS(380), 2, + ACTIONS(384), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(386), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(372), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(374), 14, + ACTIONS(402), 5, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(404), 14, sym_identifier, sym_float, sym_integer, @@ -12561,85 +12687,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12459] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(78), 1, - sym_math_operator, - STATE(80), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(386), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12506] = 3, - ACTIONS(542), 1, - anon_sym_else, - ACTIONS(457), 10, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(459), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12542] = 3, + [12588] = 3, ACTIONS(544), 1, anon_sym_where, - ACTIONS(406), 10, + ACTIONS(412), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(414), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12625] = 3, + ACTIONS(546), 1, + anon_sym_else, + ACTIONS(443), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(445), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12662] = 3, + ACTIONS(548), 1, + anon_sym_where, + ACTIONS(406), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_GT, anon_sym_PLUS, anon_sym_STAR, @@ -12666,52 +12789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12578] = 3, - ACTIONS(546), 1, - anon_sym_where, - ACTIONS(421), 10, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(423), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12614] = 4, - ACTIONS(548), 1, + [12699] = 4, + ACTIONS(476), 1, anon_sym_DASH_GT, - STATE(204), 1, + STATE(205), 1, aux_sym_yield_repeat1, - ACTIONS(402), 6, + ACTIONS(418), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(404), 14, + ACTIONS(420), 14, sym_identifier, sym_float, sym_integer, @@ -12726,19 +12816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12645] = 4, - ACTIONS(419), 1, + [12730] = 4, + ACTIONS(550), 1, anon_sym_DASH_GT, - STATE(204), 1, + STATE(205), 1, aux_sym_yield_repeat1, - ACTIONS(415), 6, + ACTIONS(372), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(417), 14, + ACTIONS(374), 14, sym_identifier, sym_float, sym_integer, @@ -12753,18 +12843,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12676] = 5, - ACTIONS(551), 1, - anon_sym_LT, + [12761] = 5, ACTIONS(553), 1, + anon_sym_LT, + ACTIONS(555), 1, anon_sym_EQ, - ACTIONS(354), 2, + ACTIONS(238), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(555), 2, + ACTIONS(557), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(352), 15, + ACTIONS(236), 15, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12780,16 +12870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12708] = 5, - ACTIONS(370), 1, + [12793] = 5, + ACTIONS(364), 1, anon_sym_DASH, - STATE(86), 1, + STATE(83), 1, sym_math_operator, - STATE(95), 1, + STATE(87), 1, sym_logic_operator, - STATE(223), 1, + STATE(225), 1, aux_sym_yield_repeat1, - ACTIONS(368), 16, + ACTIONS(362), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12806,15 +12896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12739] = 2, - ACTIONS(392), 6, + [12824] = 2, + ACTIONS(388), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(394), 14, + ACTIONS(390), 14, sym_identifier, sym_float, sym_integer, @@ -12829,118 +12919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12764] = 7, - ACTIONS(378), 1, + [12849] = 6, + ACTIONS(382), 1, anon_sym_DASH, - ACTIONS(557), 1, - anon_sym_DASH_GT, - STATE(86), 1, + STATE(83), 1, sym_math_operator, - STATE(95), 1, + STATE(87), 1, sym_logic_operator, - ACTIONS(376), 4, + ACTIONS(380), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(392), 6, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12798] = 2, - ACTIONS(559), 5, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(561), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12822] = 6, - ACTIONS(370), 1, - anon_sym_DASH, - ACTIONS(563), 1, - anon_sym_DASH_GT, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - STATE(254), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12854] = 4, - ACTIONS(404), 1, - anon_sym_DASH, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(402), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12882] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -12954,25 +12945,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12914] = 6, - ACTIONS(378), 1, + [12881] = 6, + ACTIONS(364), 1, anon_sym_DASH, - STATE(86), 1, + ACTIONS(559), 1, + anon_sym_DASH_GT, + STATE(83), 1, sym_math_operator, - STATE(95), 1, + STATE(87), 1, sym_logic_operator, - ACTIONS(376), 4, + STATE(253), 1, + aux_sym_yield_repeat1, + ACTIONS(362), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(388), 7, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12913] = 7, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(561), 1, + anon_sym_DASH_GT, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(388), 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12947] = 4, + ACTIONS(374), 1, + anon_sym_DASH, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(372), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12975] = 6, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 7, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12980,66 +13048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12946] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(384), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12978] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(372), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13010] = 2, - ACTIONS(565), 5, + [13007] = 2, + ACTIONS(563), 5, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - ACTIONS(567), 14, + ACTIONS(565), 14, sym_identifier, sym_float, sym_integer, @@ -13054,13 +13070,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13034] = 3, - ACTIONS(423), 1, + [13031] = 2, + ACTIONS(567), 5, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + ACTIONS(569), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13055] = 6, + ACTIONS(382), 1, anon_sym_DASH, - ACTIONS(569), 1, - anon_sym_where, - ACTIONS(421), 16, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(394), 7, anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13087] = 6, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(402), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13119] = 2, + ACTIONS(573), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(571), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13142] = 4, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(575), 1, + anon_sym_DASH_GT, + STATE(219), 1, + aux_sym_yield_repeat1, + ACTIONS(372), 15, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -13076,10 +13188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13059] = 3, + [13169] = 3, ACTIONS(408), 1, anon_sym_DASH, - ACTIONS(571), 1, + ACTIONS(578), 1, anon_sym_where, ACTIONS(406), 16, anon_sym_DASH_GT, @@ -13098,40 +13210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13084] = 7, - ACTIONS(378), 1, + [13194] = 3, + ACTIONS(414), 1, anon_sym_DASH, - ACTIONS(573), 1, + ACTIONS(580), 1, + anon_sym_where, + ACTIONS(412), 16, anon_sym_DASH_GT, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(392), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13117] = 4, - ACTIONS(404), 1, - anon_sym_DASH, - ACTIONS(575), 1, - anon_sym_DASH_GT, - STATE(221), 1, - aux_sym_yield_repeat1, - ACTIONS(402), 15, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -13147,13 +13232,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13144] = 2, - ACTIONS(580), 4, + [13219] = 5, + ACTIONS(553), 1, + anon_sym_LT, + ACTIONS(582), 1, + anon_sym_EQ, + ACTIONS(238), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(584), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(236), 12, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_EQ_GT, + [13248] = 2, + ACTIONS(283), 4, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(578), 14, + anon_sym_GT, + ACTIONS(586), 14, sym_identifier, sym_float, sym_integer, @@ -13168,12 +13277,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13167] = 3, - ACTIONS(417), 1, + [13271] = 7, + ACTIONS(382), 1, anon_sym_DASH, - STATE(221), 1, + ACTIONS(588), 1, + anon_sym_DASH_GT, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(388), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13304] = 3, + ACTIONS(420), 1, + anon_sym_DASH, + STATE(219), 1, aux_sym_yield_repeat1, - ACTIONS(415), 16, + ACTIONS(418), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13190,289 +13325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13192] = 5, - ACTIONS(551), 1, - anon_sym_LT, - ACTIONS(582), 1, - anon_sym_EQ, - ACTIONS(354), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(584), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(352), 12, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [13221] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(594), 1, - anon_sym_RBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, - ACTIONS(600), 1, - anon_sym_map, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(298), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13261] = 2, - ACTIONS(510), 1, - anon_sym_DASH, - ACTIONS(508), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13283] = 2, - ACTIONS(486), 1, - anon_sym_DASH, - ACTIONS(484), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13305] = 2, - ACTIONS(498), 1, - anon_sym_DASH, - ACTIONS(496), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13327] = 2, - ACTIONS(439), 1, - anon_sym_DASH, - ACTIONS(437), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13349] = 2, - ACTIONS(522), 1, - anon_sym_DASH, - ACTIONS(520), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13371] = 2, - ACTIONS(476), 1, - anon_sym_DASH, - ACTIONS(474), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13393] = 2, - ACTIONS(502), 1, - anon_sym_DASH, - ACTIONS(500), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13415] = 2, - ACTIONS(526), 1, - anon_sym_DASH, - ACTIONS(524), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13437] = 2, - ACTIONS(494), 1, - anon_sym_DASH, - ACTIONS(492), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13459] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, - ACTIONS(600), 1, - anon_sym_map, - ACTIONS(602), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(298), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13499] = 2, - ACTIONS(431), 1, - anon_sym_DASH, - ACTIONS(429), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13521] = 2, + [13329] = 2, ACTIONS(455), 1, anon_sym_DASH, ACTIONS(453), 16, @@ -13492,41 +13345,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13543] = 11, - ACTIONS(588), 1, - sym_integer, + [13351] = 2, + ACTIONS(437), 1, + anon_sym_DASH, + ACTIONS(435), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13373] = 11, ACTIONS(592), 1, - anon_sym_LBRACK, + sym_integer, ACTIONS(596), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(598), 1, - anon_sym_table, - ACTIONS(600), 1, - anon_sym_map, - ACTIONS(604), 1, anon_sym_RBRACK, - STATE(243), 1, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + STATE(240), 1, aux_sym_list_repeat1, - STATE(290), 1, + STATE(299), 1, sym_value, - ACTIONS(586), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(590), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(298), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [13583] = 3, - ACTIONS(459), 1, + [13413] = 2, + ACTIONS(488), 1, + anon_sym_DASH, + ACTIONS(486), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13435] = 2, + ACTIONS(429), 1, + anon_sym_DASH, + ACTIONS(427), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13457] = 3, + ACTIONS(445), 1, anon_sym_DASH, ACTIONS(606), 1, anon_sym_else, - ACTIONS(457), 15, + ACTIONS(443), 15, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13542,10 +13455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [13607] = 2, - ACTIONS(443), 1, + [13481] = 2, + ACTIONS(433), 1, anon_sym_DASH, - ACTIONS(441), 16, + ACTIONS(431), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13562,10 +13475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13629] = 2, - ACTIONS(394), 1, + [13503] = 2, + ACTIONS(508), 1, anon_sym_DASH, - ACTIONS(392), 16, + ACTIONS(506), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13582,119 +13495,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13651] = 2, - ACTIONS(610), 3, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(608), 14, - sym_identifier, - sym_float, + [13525] = 2, + ACTIONS(512), 1, + anon_sym_DASH, + ACTIONS(510), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13547] = 2, + ACTIONS(459), 1, + anon_sym_DASH, + ACTIONS(457), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13569] = 11, + ACTIONS(592), 1, sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + ACTIONS(608), 1, + anon_sym_RBRACK, + STATE(240), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [13673] = 11, - ACTIONS(615), 1, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13609] = 2, + ACTIONS(520), 1, + anon_sym_DASH, + ACTIONS(518), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13631] = 11, + ACTIONS(592), 1, sym_integer, - ACTIONS(621), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + ACTIONS(610), 1, anon_sym_RBRACK, + STATE(240), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13671] = 11, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + ACTIONS(612), 1, + anon_sym_RBRACK, + STATE(240), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13711] = 11, + ACTIONS(617), 1, + sym_integer, + ACTIONS(623), 1, + anon_sym_LBRACK, ACTIONS(626), 1, - anon_sym_function, - ACTIONS(629), 1, - anon_sym_table, - ACTIONS(632), 1, - anon_sym_map, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(612), 2, - sym_float, - sym_string, - ACTIONS(618), 2, - anon_sym_true, - anon_sym_false, - STATE(298), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13713] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, - ACTIONS(600), 1, - anon_sym_map, - ACTIONS(635), 1, anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(298), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13753] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(628), 1, anon_sym_function, - ACTIONS(598), 1, + ACTIONS(631), 1, anon_sym_table, - ACTIONS(600), 1, + ACTIONS(634), 1, anon_sym_map, - ACTIONS(637), 1, - anon_sym_RBRACK, - STATE(243), 1, + STATE(240), 1, aux_sym_list_repeat1, - STATE(290), 1, + STATE(299), 1, sym_value, - ACTIONS(586), 2, + ACTIONS(614), 2, sym_float, sym_string, - ACTIONS(590), 2, + ACTIONS(620), 2, anon_sym_true, anon_sym_false, - STATE(298), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [13793] = 2, - ACTIONS(641), 3, + [13751] = 2, + ACTIONS(524), 1, + anon_sym_DASH, + ACTIONS(522), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13773] = 2, + ACTIONS(500), 1, + anon_sym_DASH, + ACTIONS(498), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13795] = 2, + ACTIONS(639), 3, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - ACTIONS(639), 14, + ACTIONS(637), 14, sym_identifier, sym_float, sym_integer, @@ -13709,10 +13731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13815] = 2, - ACTIONS(490), 1, + [13817] = 2, + ACTIONS(484), 1, anon_sym_DASH, - ACTIONS(488), 16, + ACTIONS(482), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13729,10 +13751,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13837] = 2, - ACTIONS(435), 1, + [13839] = 2, + ACTIONS(643), 3, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + ACTIONS(641), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13861] = 2, + ACTIONS(467), 1, anon_sym_DASH, - ACTIONS(433), 16, + ACTIONS(465), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13749,10 +13791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13859] = 2, - ACTIONS(451), 1, + [13883] = 2, + ACTIONS(496), 1, anon_sym_DASH, - ACTIONS(449), 16, + ACTIONS(494), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13769,10 +13811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13881] = 2, - ACTIONS(447), 1, + [13905] = 2, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(445), 16, + ACTIONS(478), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13789,10 +13831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13903] = 2, - ACTIONS(518), 1, + [13927] = 2, + ACTIONS(492), 1, anon_sym_DASH, - ACTIONS(516), 16, + ACTIONS(490), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13809,10 +13851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13925] = 2, - ACTIONS(482), 1, + [13949] = 2, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(480), 16, + ACTIONS(469), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13829,10 +13871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13947] = 2, - ACTIONS(514), 1, + [13971] = 2, + ACTIONS(516), 1, anon_sym_DASH, - ACTIONS(512), 16, + ACTIONS(514), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13849,14 +13891,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13969] = 4, - ACTIONS(417), 1, + [13993] = 2, + ACTIONS(504), 1, anon_sym_DASH, - ACTIONS(563), 1, + ACTIONS(502), 16, anon_sym_DASH_GT, - STATE(221), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [14015] = 4, + ACTIONS(420), 1, + anon_sym_DASH, + ACTIONS(559), 1, + anon_sym_DASH_GT, + STATE(219), 1, aux_sym_yield_repeat1, - ACTIONS(415), 14, + ACTIONS(418), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, @@ -13871,10 +13933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13995] = 2, - ACTIONS(506), 1, + [14041] = 2, + ACTIONS(463), 1, anon_sym_DASH, - ACTIONS(504), 16, + ACTIONS(461), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13891,275 +13953,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14017] = 10, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, - ACTIONS(600), 1, - anon_sym_map, - STATE(244), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(298), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14054] = 10, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, - ACTIONS(600), 1, - anon_sym_map, - STATE(225), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(298), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14091] = 5, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(372), 4, + [14063] = 2, + ACTIONS(390), 1, + anon_sym_DASH, + ACTIONS(388), 16, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(376), 5, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14118] = 10, - ACTIONS(588), 1, - sym_integer, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [14085] = 11, ACTIONS(592), 1, - anon_sym_LBRACK, + sym_integer, ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, anon_sym_map, - STATE(245), 1, + ACTIONS(645), 1, + anon_sym_RBRACK, + STATE(240), 1, aux_sym_list_repeat1, - STATE(290), 1, + STATE(299), 1, sym_value, - ACTIONS(586), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(590), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(298), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14155] = 5, - STATE(117), 1, + [14125] = 10, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + STATE(228), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14162] = 10, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + STATE(239), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14199] = 5, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(388), 4, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(376), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14182] = 5, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, ACTIONS(398), 4, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_then, anon_sym_EQ_GT, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14209] = 10, - ACTIONS(588), 1, - sym_integer, + [14226] = 10, ACTIONS(592), 1, - anon_sym_LBRACK, + sym_integer, ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, anon_sym_map, - STATE(235), 1, + STATE(256), 1, aux_sym_list_repeat1, - STATE(290), 1, + STATE(299), 1, sym_value, - ACTIONS(586), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(590), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(298), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14246] = 5, - STATE(117), 1, + [14263] = 5, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(384), 4, + ACTIONS(402), 4, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_then, anon_sym_EQ_GT, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14273] = 10, - ACTIONS(588), 1, - sym_integer, + [14290] = 10, ACTIONS(592), 1, - anon_sym_LBRACK, + sym_integer, ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, anon_sym_map, STATE(238), 1, aux_sym_list_repeat1, - STATE(290), 1, + STATE(299), 1, sym_value, - ACTIONS(586), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(590), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(298), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14310] = 8, - ACTIONS(368), 1, - anon_sym_RBRACE, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(643), 1, - anon_sym_DASH_GT, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, + [14327] = 5, + STATE(120), 1, sym_logic_operator, - STATE(343), 1, - aux_sym_yield_repeat1, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + STATE(127), 1, + sym_math_operator, + ACTIONS(394), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14342] = 2, - ACTIONS(645), 1, - anon_sym_else, - ACTIONS(457), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, + [14354] = 10, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_table, + ACTIONS(604), 1, + anon_sym_map, + STATE(236), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14391] = 5, + STATE(120), 1, + sym_logic_operator, + STATE(127), 1, + sym_math_operator, + ACTIONS(376), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_then, anon_sym_EQ_GT, - [14362] = 2, + ACTIONS(380), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14418] = 8, + ACTIONS(362), 1, + anon_sym_RBRACE, + ACTIONS(382), 1, + anon_sym_DASH, ACTIONS(647), 1, - anon_sym_where, - ACTIONS(421), 14, + anon_sym_DASH_GT, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + STATE(335), 1, + aux_sym_yield_repeat1, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14450] = 9, + ACTIONS(651), 1, + sym_integer, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_function, + ACTIONS(659), 1, + anon_sym_table, + ACTIONS(661), 1, + anon_sym_map, + STATE(357), 1, + sym_value, + ACTIONS(649), 2, + sym_float, + sym_string, + ACTIONS(653), 2, + anon_sym_true, + anon_sym_false, + STATE(361), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14484] = 2, + ACTIONS(663), 1, + anon_sym_else, + ACTIONS(443), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, @@ -14174,8 +14292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [14382] = 2, - ACTIONS(649), 1, + [14504] = 2, + ACTIONS(665), 1, anon_sym_where, ACTIONS(406), 14, anon_sym_RPAREN, @@ -14192,408 +14310,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [14402] = 9, - ACTIONS(653), 1, - sym_integer, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(659), 1, - anon_sym_function, - ACTIONS(661), 1, - anon_sym_table, - ACTIONS(663), 1, - anon_sym_map, - STATE(356), 1, - sym_value, - ACTIONS(651), 2, - sym_float, - sym_string, - ACTIONS(655), 2, - anon_sym_true, - anon_sym_false, - STATE(360), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14436] = 7, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(392), 1, - anon_sym_RBRACE, - ACTIONS(665), 1, - anon_sym_DASH_GT, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14465] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(86), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(402), 2, - anon_sym_DASH_GT, - anon_sym_RBRACE, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14492] = 5, + [14524] = 2, ACTIONS(667), 1, - anon_sym_then, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(376), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14516] = 5, - ACTIONS(669), 1, + anon_sym_where, + ACTIONS(412), 14, + anon_sym_RPAREN, anon_sym_LBRACE, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14540] = 5, + anon_sym_then, + anon_sym_EQ_GT, + [14544] = 7, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(388), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, + anon_sym_DASH_GT, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14573] = 6, + ACTIONS(382), 1, + anon_sym_DASH, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(372), 2, + anon_sym_DASH_GT, + anon_sym_RBRACE, + ACTIONS(380), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14600] = 5, ACTIONS(671), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14564] = 5, + [14624] = 5, ACTIONS(673), 1, anon_sym_then, - STATE(117), 1, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14588] = 5, + [14648] = 5, ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(376), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14612] = 5, - ACTIONS(677), 1, - anon_sym_EQ_GT, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(376), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14636] = 5, - ACTIONS(679), 1, anon_sym_then, - STATE(117), 1, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14660] = 5, + [14672] = 5, + ACTIONS(677), 1, + anon_sym_LBRACE, + STATE(120), 1, + sym_logic_operator, + STATE(127), 1, + sym_math_operator, + ACTIONS(380), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14696] = 5, + ACTIONS(679), 1, + anon_sym_LBRACE, + STATE(120), 1, + sym_logic_operator, + STATE(127), 1, + sym_math_operator, + ACTIONS(380), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14720] = 5, ACTIONS(681), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14684] = 5, + [14744] = 5, ACTIONS(683), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14708] = 5, + [14768] = 5, ACTIONS(685), 1, anon_sym_then, - STATE(117), 1, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14732] = 5, + [14792] = 5, ACTIONS(687), 1, - anon_sym_then, - STATE(117), 1, + anon_sym_EQ_GT, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14756] = 5, + [14816] = 5, ACTIONS(689), 1, - anon_sym_LBRACE, - STATE(117), 1, + anon_sym_then, + STATE(120), 1, sym_logic_operator, - STATE(118), 1, + STATE(127), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14780] = 4, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(376), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14801] = 2, - ACTIONS(518), 1, - sym_integer, - ACTIONS(516), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [14817] = 2, - ACTIONS(498), 1, - sym_integer, - ACTIONS(496), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [14833] = 2, + [14840] = 5, ACTIONS(691), 1, - anon_sym_RPAREN, - ACTIONS(484), 10, + anon_sym_then, + STATE(120), 1, + sym_logic_operator, + STATE(127), 1, + sym_math_operator, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14849] = 2, - ACTIONS(439), 1, - sym_integer, - ACTIONS(437), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [14865] = 2, + [14864] = 5, ACTIONS(693), 1, - anon_sym_RPAREN, - ACTIONS(484), 10, + anon_sym_LBRACE, + STATE(120), 1, + sym_logic_operator, + STATE(127), 1, + sym_math_operator, + ACTIONS(380), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14881] = 3, - ACTIONS(697), 1, + [14888] = 4, + STATE(120), 1, + sym_logic_operator, + STATE(127), 1, + sym_math_operator, + ACTIONS(380), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14909] = 2, + ACTIONS(484), 1, sym_integer, - ACTIONS(699), 1, - anon_sym_COMMA, - ACTIONS(695), 9, + ACTIONS(482), 10, sym_float, sym_string, anon_sym_true, anon_sym_false, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_function, anon_sym_table, anon_sym_map, - [14899] = 2, - ACTIONS(701), 1, + [14925] = 2, + ACTIONS(695), 1, anon_sym_RPAREN, - ACTIONS(484), 10, + ACTIONS(514), 10, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -14604,7 +14644,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14915] = 2, + [14941] = 2, + ACTIONS(459), 1, + sym_integer, + ACTIONS(457), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [14957] = 2, + ACTIONS(429), 1, + sym_integer, + ACTIONS(427), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [14973] = 2, + ACTIONS(480), 1, + sym_integer, + ACTIONS(478), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [14989] = 2, ACTIONS(455), 1, sym_integer, ACTIONS(453), 10, @@ -14618,10 +14700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14931] = 2, - ACTIONS(482), 1, + [15005] = 2, + ACTIONS(697), 1, + anon_sym_RPAREN, + ACTIONS(514), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [15021] = 2, + ACTIONS(463), 1, sym_integer, - ACTIONS(480), 10, + ACTIONS(461), 10, sym_float, sym_string, anon_sym_true, @@ -14632,10 +14728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14947] = 2, - ACTIONS(494), 1, + [15037] = 2, + ACTIONS(467), 1, sym_integer, - ACTIONS(492), 10, + ACTIONS(465), 10, sym_float, sym_string, anon_sym_true, @@ -14646,10 +14742,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14963] = 2, - ACTIONS(526), 1, + [15053] = 2, + ACTIONS(699), 1, + anon_sym_RPAREN, + ACTIONS(514), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [15069] = 2, + ACTIONS(437), 1, sym_integer, - ACTIONS(524), 10, + ACTIONS(435), 10, sym_float, sym_string, anon_sym_true, @@ -14660,10 +14770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14979] = 2, - ACTIONS(502), 1, + [15085] = 2, + ACTIONS(433), 1, sym_integer, - ACTIONS(500), 10, + ACTIONS(431), 10, sym_float, sym_string, anon_sym_true, @@ -14674,10 +14784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14995] = 2, - ACTIONS(476), 1, + [15101] = 2, + ACTIONS(471), 1, sym_integer, - ACTIONS(474), 10, + ACTIONS(469), 10, sym_float, sym_string, anon_sym_true, @@ -14688,24 +14798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [15011] = 2, - ACTIONS(431), 1, - sym_integer, - ACTIONS(429), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [15027] = 2, + [15117] = 3, ACTIONS(703), 1, sym_integer, - ACTIONS(624), 9, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(701), 9, sym_float, sym_string, anon_sym_true, @@ -14715,643 +14813,656 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [15042] = 3, - ACTIONS(705), 1, + [15135] = 2, + ACTIONS(707), 1, + sym_integer, + ACTIONS(626), 9, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, anon_sym_LBRACK, - ACTIONS(708), 2, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [15150] = 3, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(712), 2, anon_sym_RBRACE, anon_sym_into, - STATE(300), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15054] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(710), 1, - anon_sym_RBRACE, - STATE(300), 2, - sym_list, - aux_sym_table_repeat1, - [15065] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(712), 1, - anon_sym_into, - STATE(300), 2, - sym_list, - aux_sym_table_repeat1, - [15076] = 3, + [15162] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(714), 1, - anon_sym_into, - STATE(300), 2, + anon_sym_RBRACE, + STATE(314), 2, sym_list, aux_sym_table_repeat1, - [15087] = 3, + [15173] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(716), 1, anon_sym_RBRACE, - STATE(305), 2, - sym_list, - aux_sym_table_repeat1, - [15098] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_RBRACE, - STATE(300), 2, - sym_list, - aux_sym_table_repeat1, - [15109] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(720), 1, - anon_sym_into, - STATE(300), 2, - sym_list, - aux_sym_table_repeat1, - [15120] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(722), 1, - anon_sym_into, - STATE(300), 2, - sym_list, - aux_sym_table_repeat1, - [15131] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(724), 1, - anon_sym_RBRACE, STATE(309), 2, sym_list, aux_sym_table_repeat1, - [15142] = 3, + [15184] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_into, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15195] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(720), 1, + anon_sym_RBRACE, + STATE(311), 2, + sym_list, + aux_sym_table_repeat1, + [15206] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(722), 1, + anon_sym_RBRACE, + STATE(313), 2, + sym_list, + aux_sym_table_repeat1, + [15217] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(724), 1, + anon_sym_into, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15228] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(726), 1, anon_sym_RBRACE, - STATE(300), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15153] = 3, + [15239] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(728), 1, - anon_sym_into, - STATE(300), 2, - sym_list, - aux_sym_table_repeat1, - [15164] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, anon_sym_RBRACE, STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15175] = 3, + [15250] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(730), 1, + anon_sym_into, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15261] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(732), 1, anon_sym_RBRACE, - STATE(300), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15186] = 3, + [15272] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(734), 1, anon_sym_RBRACE, - STATE(315), 2, + STATE(308), 2, sym_list, aux_sym_table_repeat1, - [15197] = 3, + [15283] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(736), 1, anon_sym_RBRACE, - STATE(312), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15208] = 3, + [15294] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(738), 1, anon_sym_RBRACE, - STATE(300), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15219] = 3, + [15305] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(740), 1, - sym_identifier, + anon_sym_into, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15316] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(742), 1, + anon_sym_into, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15327] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(747), 1, anon_sym_RBRACE, - STATE(342), 1, + STATE(317), 1, aux_sym_map_repeat1, - [15229] = 2, + [15337] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(751), 1, + anon_sym_RBRACE, + STATE(338), 1, + aux_sym_map_repeat1, + [15347] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15357] = 2, ACTIONS(15), 1, anon_sym_LBRACK, STATE(310), 2, sym_list, aux_sym_table_repeat1, - [15237] = 3, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_map_repeat1, - [15247] = 3, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(749), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_map_repeat1, - [15257] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(753), 1, - anon_sym_GT, - STATE(329), 1, - aux_sym_function_repeat1, - [15267] = 3, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(755), 1, - anon_sym_RBRACE, - STATE(318), 1, - aux_sym_map_repeat1, - [15277] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(757), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15287] = 3, - ACTIONS(751), 1, - sym_identifier, + [15365] = 2, ACTIONS(759), 1, + anon_sym_COMMA, + ACTIONS(757), 2, + sym_identifier, + anon_sym_GT, + [15373] = 3, + ACTIONS(761), 1, + sym_identifier, + ACTIONS(764), 1, anon_sym_GT, STATE(322), 1, aux_sym_function_repeat1, - [15297] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(761), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15307] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(763), 1, - anon_sym_GT, - STATE(324), 1, - aux_sym_function_repeat1, - [15317] = 2, + [15383] = 2, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(303), 2, + STATE(315), 2, sym_list, aux_sym_table_repeat1, - [15325] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(306), 2, - sym_list, - aux_sym_table_repeat1, - [15333] = 3, - ACTIONS(402), 1, + [15391] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(766), 1, anon_sym_RBRACE, - ACTIONS(765), 1, - anon_sym_DASH_GT, - STATE(328), 1, - aux_sym_yield_repeat1, - [15343] = 3, - ACTIONS(751), 1, + STATE(317), 1, + aux_sym_map_repeat1, + [15401] = 3, + ACTIONS(749), 1, sym_identifier, ACTIONS(768), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15353] = 3, - ACTIONS(770), 1, - sym_identifier, - ACTIONS(773), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15363] = 3, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(775), 1, anon_sym_RBRACE, - STATE(319), 1, + STATE(327), 1, aux_sym_map_repeat1, - [15373] = 3, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(777), 1, - anon_sym_RBRACE, - STATE(331), 1, - aux_sym_map_repeat1, - [15383] = 2, - ACTIONS(781), 1, - anon_sym_COMMA, - ACTIONS(779), 2, - sym_identifier, - anon_sym_GT, - [15391] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(783), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15401] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, [15411] = 3, - ACTIONS(751), 1, + ACTIONS(749), 1, sym_identifier, - ACTIONS(787), 1, - anon_sym_GT, - STATE(334), 1, - aux_sym_function_repeat1, + ACTIONS(770), 1, + anon_sym_RBRACE, + STATE(324), 1, + aux_sym_map_repeat1, [15421] = 3, - ACTIONS(751), 1, + ACTIONS(749), 1, sym_identifier, - ACTIONS(789), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, + ACTIONS(772), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, [15431] = 3, - ACTIONS(740), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_RBRACE, + STATE(337), 1, + aux_sym_map_repeat1, + [15441] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(776), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15451] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(778), 1, + anon_sym_GT, + STATE(329), 1, + aux_sym_function_repeat1, + [15461] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(780), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15471] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(782), 1, + anon_sym_GT, + STATE(331), 1, + aux_sym_function_repeat1, + [15481] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(784), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15491] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(786), 1, + anon_sym_GT, + STATE(333), 1, + aux_sym_function_repeat1, + [15501] = 3, + ACTIONS(418), 1, + anon_sym_RBRACE, + ACTIONS(647), 1, + anon_sym_DASH_GT, + STATE(336), 1, + aux_sym_yield_repeat1, + [15511] = 3, + ACTIONS(372), 1, + anon_sym_RBRACE, + ACTIONS(788), 1, + anon_sym_DASH_GT, + STATE(336), 1, + aux_sym_yield_repeat1, + [15521] = 3, + ACTIONS(749), 1, sym_identifier, ACTIONS(791), 1, anon_sym_RBRACE, - STATE(348), 1, + STATE(317), 1, aux_sym_map_repeat1, - [15441] = 3, - ACTIONS(751), 1, + [15531] = 3, + ACTIONS(749), 1, sym_identifier, ACTIONS(793), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, + [15541] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, + [15551] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(304), 2, + sym_list, + aux_sym_table_repeat1, + [15559] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(797), 1, anon_sym_GT, - STATE(330), 1, + STATE(322), 1, aux_sym_function_repeat1, - [15451] = 2, + [15569] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(799), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_map_repeat1, + [15579] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(801), 1, + anon_sym_GT, + STATE(341), 1, + aux_sym_function_repeat1, + [15589] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15599] = 2, ACTIONS(15), 1, anon_sym_LBRACK, STATE(307), 2, sym_list, aux_sym_table_repeat1, - [15459] = 3, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(795), 1, - anon_sym_RBRACE, - STATE(350), 1, - aux_sym_map_repeat1, - [15469] = 3, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(797), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_map_repeat1, - [15479] = 3, - ACTIONS(415), 1, - anon_sym_RBRACE, - ACTIONS(643), 1, - anon_sym_DASH_GT, - STATE(328), 1, - aux_sym_yield_repeat1, - [15489] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(799), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15499] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(801), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15509] = 3, - ACTIONS(751), 1, - sym_identifier, - ACTIONS(803), 1, - anon_sym_GT, - STATE(335), 1, - aux_sym_function_repeat1, - [15519] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15527] = 3, - ACTIONS(740), 1, + [15607] = 3, + ACTIONS(753), 1, sym_identifier, ACTIONS(805), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_map_repeat1, - [15537] = 3, - ACTIONS(751), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15617] = 3, + ACTIONS(753), 1, sym_identifier, ACTIONS(807), 1, anon_sym_GT, - STATE(330), 1, + STATE(322), 1, aux_sym_function_repeat1, - [15547] = 3, - ACTIONS(740), 1, + [15627] = 3, + ACTIONS(753), 1, sym_identifier, ACTIONS(809), 1, - anon_sym_RBRACE, + anon_sym_GT, STATE(319), 1, - aux_sym_map_repeat1, - [15557] = 2, + aux_sym_function_repeat1, + [15637] = 3, + ACTIONS(753), 1, + sym_identifier, ACTIONS(811), 1, - anon_sym_LT, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15647] = 3, + ACTIONS(753), 1, + sym_identifier, ACTIONS(813), 1, - anon_sym_LBRACE, - [15564] = 1, - ACTIONS(437), 2, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15657] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(316), 2, + sym_list, + aux_sym_table_repeat1, + [15665] = 2, + ACTIONS(753), 1, + sym_identifier, + STATE(346), 1, + aux_sym_function_repeat1, + [15672] = 1, + ACTIONS(457), 2, sym_identifier, anon_sym_RBRACE, - [15569] = 2, - ACTIONS(751), 1, + [15677] = 1, + ACTIONS(764), 2, sym_identifier, - STATE(344), 1, - aux_sym_function_repeat1, - [15576] = 2, - ACTIONS(751), 1, - sym_identifier, - STATE(339), 1, - aux_sym_function_repeat1, - [15583] = 2, - ACTIONS(751), 1, - sym_identifier, - STATE(337), 1, - aux_sym_function_repeat1, - [15590] = 1, - ACTIONS(815), 2, - sym_identifier, - anon_sym_RBRACE, - [15595] = 2, - ACTIONS(751), 1, + anon_sym_GT, + [15682] = 2, + ACTIONS(753), 1, sym_identifier, STATE(349), 1, aux_sym_function_repeat1, - [15602] = 2, + [15689] = 2, + ACTIONS(753), 1, + sym_identifier, + STATE(344), 1, + aux_sym_function_repeat1, + [15696] = 1, + ACTIONS(815), 2, + sym_identifier, + anon_sym_RBRACE, + [15701] = 2, + ACTIONS(753), 1, + sym_identifier, + STATE(347), 1, + aux_sym_function_repeat1, + [15708] = 2, ACTIONS(817), 1, anon_sym_LT, ACTIONS(819), 1, anon_sym_LBRACE, - [15609] = 2, + [15715] = 2, ACTIONS(821), 1, anon_sym_LT, ACTIONS(823), 1, anon_sym_LBRACE, - [15616] = 1, - ACTIONS(429), 2, + [15722] = 1, + ACTIONS(482), 2, sym_identifier, anon_sym_RBRACE, - [15621] = 1, - ACTIONS(474), 2, + [15727] = 1, + ACTIONS(478), 2, sym_identifier, anon_sym_RBRACE, - [15626] = 1, - ACTIONS(492), 2, + [15732] = 1, + ACTIONS(461), 2, sym_identifier, anon_sym_RBRACE, - [15631] = 1, - ACTIONS(496), 2, + [15737] = 1, + ACTIONS(469), 2, sym_identifier, anon_sym_RBRACE, - [15636] = 1, - ACTIONS(500), 2, + [15742] = 2, + ACTIONS(753), 1, sym_identifier, - anon_sym_RBRACE, - [15641] = 1, - ACTIONS(524), 2, - sym_identifier, - anon_sym_RBRACE, - [15646] = 1, - ACTIONS(516), 2, - sym_identifier, - anon_sym_RBRACE, - [15651] = 2, + STATE(350), 1, + aux_sym_function_repeat1, + [15749] = 2, ACTIONS(825), 1, anon_sym_LT, ACTIONS(827), 1, anon_sym_LBRACE, - [15658] = 1, - ACTIONS(453), 2, + [15756] = 1, + ACTIONS(431), 2, sym_identifier, anon_sym_RBRACE, - [15663] = 1, - ACTIONS(480), 2, + [15761] = 1, + ACTIONS(465), 2, sym_identifier, anon_sym_RBRACE, - [15668] = 2, - ACTIONS(751), 1, - sym_identifier, - STATE(345), 1, - aux_sym_function_repeat1, - [15675] = 1, - ACTIONS(773), 2, - sym_identifier, - anon_sym_GT, - [15680] = 2, + [15766] = 2, ACTIONS(829), 1, anon_sym_LT, ACTIONS(831), 1, anon_sym_LBRACE, - [15687] = 1, + [15773] = 1, + ACTIONS(435), 2, + sym_identifier, + anon_sym_RBRACE, + [15778] = 2, ACTIONS(833), 1, - sym_identifier, - [15691] = 1, - ACTIONS(835), 1, - anon_sym_RBRACE, - [15695] = 1, - ACTIONS(837), 1, - sym_identifier, - [15699] = 1, - ACTIONS(839), 1, - anon_sym_LBRACE, - [15703] = 1, - ACTIONS(841), 1, - sym_identifier, - [15707] = 1, - ACTIONS(843), 1, - anon_sym_from, - [15711] = 1, - ACTIONS(845), 1, - ts_builtin_sym_end, - [15715] = 1, - ACTIONS(847), 1, - anon_sym_LBRACE, - [15719] = 1, - ACTIONS(849), 1, - anon_sym_LBRACE, - [15723] = 1, - ACTIONS(851), 1, - anon_sym_LBRACE, - [15727] = 1, - ACTIONS(853), 1, - anon_sym_LBRACE, - [15731] = 1, - ACTIONS(855), 1, - anon_sym_LBRACE, - [15735] = 1, - ACTIONS(857), 1, - anon_sym_LBRACE, - [15739] = 1, - ACTIONS(859), 1, - anon_sym_LBRACE, - [15743] = 1, - ACTIONS(861), 1, - anon_sym_LBRACE, - [15747] = 1, - ACTIONS(863), 1, - aux_sym_comment_token1, - [15751] = 1, - ACTIONS(865), 1, - anon_sym_LBRACE, - [15755] = 1, - ACTIONS(867), 1, - anon_sym_LBRACE, - [15759] = 1, - ACTIONS(869), 1, - anon_sym_LBRACE, - [15763] = 1, - ACTIONS(871), 1, - sym_identifier, - [15767] = 1, - ACTIONS(873), 1, - anon_sym_LBRACE, - [15771] = 1, - ACTIONS(875), 1, anon_sym_LT, - [15775] = 1, - ACTIONS(877), 1, + ACTIONS(835), 1, + anon_sym_LBRACE, + [15785] = 1, + ACTIONS(453), 2, sym_identifier, - [15779] = 1, - ACTIONS(879), 1, - anon_sym_LBRACE, - [15783] = 1, - ACTIONS(881), 1, anon_sym_RBRACE, - [15787] = 1, - ACTIONS(883), 1, - anon_sym_LBRACE, - [15791] = 1, - ACTIONS(885), 1, + [15790] = 1, + ACTIONS(427), 2, + sym_identifier, anon_sym_RBRACE, [15795] = 1, - ACTIONS(887), 1, + ACTIONS(837), 1, anon_sym_LBRACE, [15799] = 1, - ACTIONS(889), 1, - anon_sym_RBRACE, + ACTIONS(839), 1, + sym_identifier, [15803] = 1, - ACTIONS(891), 1, + ACTIONS(841), 1, anon_sym_LBRACE, [15807] = 1, - ACTIONS(893), 1, - anon_sym_from, + ACTIONS(843), 1, + anon_sym_LBRACE, [15811] = 1, - ACTIONS(895), 1, - sym_identifier, + ACTIONS(845), 1, + anon_sym_LBRACE, [15815] = 1, - ACTIONS(897), 1, - sym_identifier, + ACTIONS(847), 1, + anon_sym_LBRACE, [15819] = 1, - ACTIONS(899), 1, + ACTIONS(849), 1, anon_sym_LBRACE, [15823] = 1, - ACTIONS(901), 1, + ACTIONS(851), 1, anon_sym_LBRACE, [15827] = 1, - ACTIONS(903), 1, - anon_sym_RBRACE, - [15831] = 1, - ACTIONS(905), 1, - anon_sym_LT, - [15835] = 1, - ACTIONS(907), 1, + ACTIONS(853), 1, anon_sym_LBRACE, + [15831] = 1, + ACTIONS(855), 1, + sym_identifier, + [15835] = 1, + ACTIONS(857), 1, + ts_builtin_sym_end, [15839] = 1, - ACTIONS(909), 1, + ACTIONS(859), 1, anon_sym_LBRACE, [15843] = 1, - ACTIONS(911), 1, + ACTIONS(861), 1, anon_sym_LBRACE, [15847] = 1, - ACTIONS(913), 1, - anon_sym_EQ, + ACTIONS(863), 1, + anon_sym_LBRACE, [15851] = 1, - ACTIONS(915), 1, - anon_sym_RBRACE, + ACTIONS(865), 1, + anon_sym_from, [15855] = 1, - ACTIONS(917), 1, - sym_identifier, + ACTIONS(867), 1, + anon_sym_LBRACE, [15859] = 1, - ACTIONS(919), 1, + ACTIONS(869), 1, sym_identifier, [15863] = 1, - ACTIONS(921), 1, - anon_sym_from, - [15867] = 1, - ACTIONS(923), 1, + ACTIONS(871), 1, sym_identifier, + [15867] = 1, + ACTIONS(873), 1, + anon_sym_from, [15871] = 1, - ACTIONS(925), 1, + ACTIONS(875), 1, sym_identifier, [15875] = 1, - ACTIONS(927), 1, - anon_sym_from, + ACTIONS(877), 1, + sym_identifier, [15879] = 1, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_LT, [15883] = 1, - ACTIONS(931), 1, - anon_sym_LT, + ACTIONS(881), 1, + anon_sym_LBRACE, [15887] = 1, - ACTIONS(933), 1, - anon_sym_LT, + ACTIONS(883), 1, + anon_sym_LBRACE, [15891] = 1, - ACTIONS(935), 1, - sym_identifier, + ACTIONS(885), 1, + anon_sym_LBRACE, [15895] = 1, - ACTIONS(937), 1, - sym_identifier, + ACTIONS(887), 1, + anon_sym_LBRACE, [15899] = 1, - ACTIONS(939), 1, - anon_sym_from, + ACTIONS(889), 1, + aux_sym_comment_token1, [15903] = 1, - ACTIONS(941), 1, + ACTIONS(891), 1, sym_identifier, [15907] = 1, - ACTIONS(943), 1, + ACTIONS(893), 1, sym_identifier, [15911] = 1, + ACTIONS(895), 1, + anon_sym_EQ, + [15915] = 1, + ACTIONS(897), 1, + anon_sym_RBRACE, + [15919] = 1, + ACTIONS(899), 1, + anon_sym_RBRACE, + [15923] = 1, + ACTIONS(901), 1, + anon_sym_LBRACE, + [15927] = 1, + ACTIONS(903), 1, + anon_sym_RBRACE, + [15931] = 1, + ACTIONS(905), 1, + anon_sym_LBRACE, + [15935] = 1, + ACTIONS(907), 1, + anon_sym_RBRACE, + [15939] = 1, + ACTIONS(909), 1, + anon_sym_LT, + [15943] = 1, + ACTIONS(911), 1, + anon_sym_from, + [15947] = 1, + ACTIONS(913), 1, + anon_sym_RBRACE, + [15951] = 1, + ACTIONS(915), 1, + anon_sym_RBRACE, + [15955] = 1, + ACTIONS(917), 1, + anon_sym_LBRACE, + [15959] = 1, + ACTIONS(919), 1, + anon_sym_LBRACE, + [15963] = 1, + ACTIONS(921), 1, + sym_identifier, + [15967] = 1, + ACTIONS(923), 1, + sym_identifier, + [15971] = 1, + ACTIONS(925), 1, + anon_sym_from, + [15975] = 1, + ACTIONS(927), 1, + anon_sym_LBRACE, + [15979] = 1, + ACTIONS(929), 1, + sym_identifier, + [15983] = 1, + ACTIONS(931), 1, + anon_sym_LBRACE, + [15987] = 1, + ACTIONS(933), 1, + anon_sym_LT, + [15991] = 1, + ACTIONS(935), 1, + anon_sym_LT, + [15995] = 1, + ACTIONS(937), 1, + anon_sym_LT, + [15999] = 1, + ACTIONS(939), 1, + sym_identifier, + [16003] = 1, + ACTIONS(941), 1, + sym_identifier, + [16007] = 1, + ACTIONS(943), 1, + anon_sym_from, + [16011] = 1, ACTIONS(945), 1, anon_sym_LBRACE, + [16015] = 1, + ACTIONS(947), 1, + sym_identifier, + [16019] = 1, + ACTIONS(949), 1, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { @@ -15396,830 +15507,833 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(42)] = 3157, [SMALL_STATE(43)] = 3238, [SMALL_STATE(44)] = 3319, - [SMALL_STATE(45)] = 3400, - [SMALL_STATE(46)] = 3481, - [SMALL_STATE(47)] = 3562, - [SMALL_STATE(48)] = 3643, - [SMALL_STATE(49)] = 3724, - [SMALL_STATE(50)] = 3805, - [SMALL_STATE(51)] = 3886, - [SMALL_STATE(52)] = 3967, - [SMALL_STATE(53)] = 4048, - [SMALL_STATE(54)] = 4129, - [SMALL_STATE(55)] = 4210, - [SMALL_STATE(56)] = 4291, - [SMALL_STATE(57)] = 4372, - [SMALL_STATE(58)] = 4453, - [SMALL_STATE(59)] = 4534, - [SMALL_STATE(60)] = 4615, - [SMALL_STATE(61)] = 4696, - [SMALL_STATE(62)] = 4777, - [SMALL_STATE(63)] = 4858, - [SMALL_STATE(64)] = 4939, - [SMALL_STATE(65)] = 5020, - [SMALL_STATE(66)] = 5101, - [SMALL_STATE(67)] = 5182, - [SMALL_STATE(68)] = 5263, - [SMALL_STATE(69)] = 5341, - [SMALL_STATE(70)] = 5419, - [SMALL_STATE(71)] = 5497, - [SMALL_STATE(72)] = 5545, - [SMALL_STATE(73)] = 5620, - [SMALL_STATE(74)] = 5695, - [SMALL_STATE(75)] = 5770, - [SMALL_STATE(76)] = 5845, - [SMALL_STATE(77)] = 5920, - [SMALL_STATE(78)] = 5995, - [SMALL_STATE(79)] = 6070, - [SMALL_STATE(80)] = 6145, - [SMALL_STATE(81)] = 6220, - [SMALL_STATE(82)] = 6295, - [SMALL_STATE(83)] = 6370, - [SMALL_STATE(84)] = 6445, - [SMALL_STATE(85)] = 6520, - [SMALL_STATE(86)] = 6595, - [SMALL_STATE(87)] = 6670, - [SMALL_STATE(88)] = 6745, - [SMALL_STATE(89)] = 6820, - [SMALL_STATE(90)] = 6895, - [SMALL_STATE(91)] = 6970, - [SMALL_STATE(92)] = 7045, - [SMALL_STATE(93)] = 7120, - [SMALL_STATE(94)] = 7195, - [SMALL_STATE(95)] = 7270, - [SMALL_STATE(96)] = 7345, - [SMALL_STATE(97)] = 7420, - [SMALL_STATE(98)] = 7495, - [SMALL_STATE(99)] = 7570, - [SMALL_STATE(100)] = 7645, - [SMALL_STATE(101)] = 7720, - [SMALL_STATE(102)] = 7795, - [SMALL_STATE(103)] = 7870, - [SMALL_STATE(104)] = 7945, - [SMALL_STATE(105)] = 8020, - [SMALL_STATE(106)] = 8095, - [SMALL_STATE(107)] = 8170, - [SMALL_STATE(108)] = 8245, - [SMALL_STATE(109)] = 8292, - [SMALL_STATE(110)] = 8367, - [SMALL_STATE(111)] = 8442, - [SMALL_STATE(112)] = 8517, - [SMALL_STATE(113)] = 8592, - [SMALL_STATE(114)] = 8667, - [SMALL_STATE(115)] = 8742, - [SMALL_STATE(116)] = 8817, - [SMALL_STATE(117)] = 8892, - [SMALL_STATE(118)] = 8967, - [SMALL_STATE(119)] = 9042, - [SMALL_STATE(120)] = 9089, - [SMALL_STATE(121)] = 9164, - [SMALL_STATE(122)] = 9216, - [SMALL_STATE(123)] = 9268, - [SMALL_STATE(124)] = 9320, - [SMALL_STATE(125)] = 9374, - [SMALL_STATE(126)] = 9426, - [SMALL_STATE(127)] = 9470, - [SMALL_STATE(128)] = 9516, - [SMALL_STATE(129)] = 9567, - [SMALL_STATE(130)] = 9618, - [SMALL_STATE(131)] = 9659, - [SMALL_STATE(132)] = 9702, - [SMALL_STATE(133)] = 9743, - [SMALL_STATE(134)] = 9798, - [SMALL_STATE(135)] = 9849, - [SMALL_STATE(136)] = 9900, - [SMALL_STATE(137)] = 9941, - [SMALL_STATE(138)] = 9984, - [SMALL_STATE(139)] = 10037, - [SMALL_STATE(140)] = 10075, - [SMALL_STATE(141)] = 10113, - [SMALL_STATE(142)] = 10151, - [SMALL_STATE(143)] = 10189, - [SMALL_STATE(144)] = 10227, - [SMALL_STATE(145)] = 10265, - [SMALL_STATE(146)] = 10305, - [SMALL_STATE(147)] = 10343, - [SMALL_STATE(148)] = 10383, - [SMALL_STATE(149)] = 10433, - [SMALL_STATE(150)] = 10485, - [SMALL_STATE(151)] = 10531, - [SMALL_STATE(152)] = 10573, - [SMALL_STATE(153)] = 10613, - [SMALL_STATE(154)] = 10653, - [SMALL_STATE(155)] = 10691, - [SMALL_STATE(156)] = 10731, - [SMALL_STATE(157)] = 10769, - [SMALL_STATE(158)] = 10807, - [SMALL_STATE(159)] = 10845, - [SMALL_STATE(160)] = 10883, - [SMALL_STATE(161)] = 10921, - [SMALL_STATE(162)] = 10959, - [SMALL_STATE(163)] = 10997, - [SMALL_STATE(164)] = 11035, - [SMALL_STATE(165)] = 11073, - [SMALL_STATE(166)] = 11111, - [SMALL_STATE(167)] = 11149, - [SMALL_STATE(168)] = 11187, - [SMALL_STATE(169)] = 11225, - [SMALL_STATE(170)] = 11263, - [SMALL_STATE(171)] = 11300, - [SMALL_STATE(172)] = 11337, - [SMALL_STATE(173)] = 11374, - [SMALL_STATE(174)] = 11411, - [SMALL_STATE(175)] = 11448, - [SMALL_STATE(176)] = 11499, - [SMALL_STATE(177)] = 11536, - [SMALL_STATE(178)] = 11573, - [SMALL_STATE(179)] = 11610, - [SMALL_STATE(180)] = 11647, - [SMALL_STATE(181)] = 11684, - [SMALL_STATE(182)] = 11721, - [SMALL_STATE(183)] = 11766, - [SMALL_STATE(184)] = 11803, - [SMALL_STATE(185)] = 11846, - [SMALL_STATE(186)] = 11883, - [SMALL_STATE(187)] = 11920, - [SMALL_STATE(188)] = 11957, - [SMALL_STATE(189)] = 11994, - [SMALL_STATE(190)] = 12031, - [SMALL_STATE(191)] = 12068, - [SMALL_STATE(192)] = 12105, - [SMALL_STATE(193)] = 12142, - [SMALL_STATE(194)] = 12182, - [SMALL_STATE(195)] = 12232, - [SMALL_STATE(196)] = 12279, - [SMALL_STATE(197)] = 12318, - [SMALL_STATE(198)] = 12365, - [SMALL_STATE(199)] = 12412, - [SMALL_STATE(200)] = 12459, - [SMALL_STATE(201)] = 12506, - [SMALL_STATE(202)] = 12542, - [SMALL_STATE(203)] = 12578, - [SMALL_STATE(204)] = 12614, - [SMALL_STATE(205)] = 12645, - [SMALL_STATE(206)] = 12676, - [SMALL_STATE(207)] = 12708, - [SMALL_STATE(208)] = 12739, - [SMALL_STATE(209)] = 12764, - [SMALL_STATE(210)] = 12798, - [SMALL_STATE(211)] = 12822, - [SMALL_STATE(212)] = 12854, - [SMALL_STATE(213)] = 12882, - [SMALL_STATE(214)] = 12914, - [SMALL_STATE(215)] = 12946, - [SMALL_STATE(216)] = 12978, - [SMALL_STATE(217)] = 13010, - [SMALL_STATE(218)] = 13034, - [SMALL_STATE(219)] = 13059, - [SMALL_STATE(220)] = 13084, - [SMALL_STATE(221)] = 13117, - [SMALL_STATE(222)] = 13144, - [SMALL_STATE(223)] = 13167, - [SMALL_STATE(224)] = 13192, - [SMALL_STATE(225)] = 13221, - [SMALL_STATE(226)] = 13261, - [SMALL_STATE(227)] = 13283, - [SMALL_STATE(228)] = 13305, - [SMALL_STATE(229)] = 13327, - [SMALL_STATE(230)] = 13349, - [SMALL_STATE(231)] = 13371, - [SMALL_STATE(232)] = 13393, - [SMALL_STATE(233)] = 13415, - [SMALL_STATE(234)] = 13437, - [SMALL_STATE(235)] = 13459, - [SMALL_STATE(236)] = 13499, - [SMALL_STATE(237)] = 13521, - [SMALL_STATE(238)] = 13543, - [SMALL_STATE(239)] = 13583, - [SMALL_STATE(240)] = 13607, - [SMALL_STATE(241)] = 13629, - [SMALL_STATE(242)] = 13651, - [SMALL_STATE(243)] = 13673, - [SMALL_STATE(244)] = 13713, - [SMALL_STATE(245)] = 13753, - [SMALL_STATE(246)] = 13793, - [SMALL_STATE(247)] = 13815, - [SMALL_STATE(248)] = 13837, - [SMALL_STATE(249)] = 13859, - [SMALL_STATE(250)] = 13881, - [SMALL_STATE(251)] = 13903, - [SMALL_STATE(252)] = 13925, - [SMALL_STATE(253)] = 13947, - [SMALL_STATE(254)] = 13969, - [SMALL_STATE(255)] = 13995, - [SMALL_STATE(256)] = 14017, - [SMALL_STATE(257)] = 14054, - [SMALL_STATE(258)] = 14091, - [SMALL_STATE(259)] = 14118, - [SMALL_STATE(260)] = 14155, - [SMALL_STATE(261)] = 14182, - [SMALL_STATE(262)] = 14209, - [SMALL_STATE(263)] = 14246, - [SMALL_STATE(264)] = 14273, - [SMALL_STATE(265)] = 14310, - [SMALL_STATE(266)] = 14342, - [SMALL_STATE(267)] = 14362, - [SMALL_STATE(268)] = 14382, - [SMALL_STATE(269)] = 14402, - [SMALL_STATE(270)] = 14436, - [SMALL_STATE(271)] = 14465, - [SMALL_STATE(272)] = 14492, - [SMALL_STATE(273)] = 14516, - [SMALL_STATE(274)] = 14540, - [SMALL_STATE(275)] = 14564, - [SMALL_STATE(276)] = 14588, - [SMALL_STATE(277)] = 14612, - [SMALL_STATE(278)] = 14636, - [SMALL_STATE(279)] = 14660, - [SMALL_STATE(280)] = 14684, - [SMALL_STATE(281)] = 14708, - [SMALL_STATE(282)] = 14732, - [SMALL_STATE(283)] = 14756, - [SMALL_STATE(284)] = 14780, - [SMALL_STATE(285)] = 14801, - [SMALL_STATE(286)] = 14817, - [SMALL_STATE(287)] = 14833, - [SMALL_STATE(288)] = 14849, - [SMALL_STATE(289)] = 14865, - [SMALL_STATE(290)] = 14881, - [SMALL_STATE(291)] = 14899, - [SMALL_STATE(292)] = 14915, - [SMALL_STATE(293)] = 14931, - [SMALL_STATE(294)] = 14947, - [SMALL_STATE(295)] = 14963, - [SMALL_STATE(296)] = 14979, - [SMALL_STATE(297)] = 14995, - [SMALL_STATE(298)] = 15011, - [SMALL_STATE(299)] = 15027, - [SMALL_STATE(300)] = 15042, - [SMALL_STATE(301)] = 15054, - [SMALL_STATE(302)] = 15065, - [SMALL_STATE(303)] = 15076, - [SMALL_STATE(304)] = 15087, - [SMALL_STATE(305)] = 15098, - [SMALL_STATE(306)] = 15109, - [SMALL_STATE(307)] = 15120, - [SMALL_STATE(308)] = 15131, - [SMALL_STATE(309)] = 15142, - [SMALL_STATE(310)] = 15153, - [SMALL_STATE(311)] = 15164, - [SMALL_STATE(312)] = 15175, - [SMALL_STATE(313)] = 15186, - [SMALL_STATE(314)] = 15197, - [SMALL_STATE(315)] = 15208, - [SMALL_STATE(316)] = 15219, - [SMALL_STATE(317)] = 15229, - [SMALL_STATE(318)] = 15237, - [SMALL_STATE(319)] = 15247, - [SMALL_STATE(320)] = 15257, - [SMALL_STATE(321)] = 15267, - [SMALL_STATE(322)] = 15277, - [SMALL_STATE(323)] = 15287, - [SMALL_STATE(324)] = 15297, - [SMALL_STATE(325)] = 15307, - [SMALL_STATE(326)] = 15317, - [SMALL_STATE(327)] = 15325, - [SMALL_STATE(328)] = 15333, - [SMALL_STATE(329)] = 15343, - [SMALL_STATE(330)] = 15353, - [SMALL_STATE(331)] = 15363, - [SMALL_STATE(332)] = 15373, - [SMALL_STATE(333)] = 15383, - [SMALL_STATE(334)] = 15391, - [SMALL_STATE(335)] = 15401, - [SMALL_STATE(336)] = 15411, - [SMALL_STATE(337)] = 15421, - [SMALL_STATE(338)] = 15431, - [SMALL_STATE(339)] = 15441, - [SMALL_STATE(340)] = 15451, - [SMALL_STATE(341)] = 15459, - [SMALL_STATE(342)] = 15469, - [SMALL_STATE(343)] = 15479, - [SMALL_STATE(344)] = 15489, - [SMALL_STATE(345)] = 15499, - [SMALL_STATE(346)] = 15509, - [SMALL_STATE(347)] = 15519, - [SMALL_STATE(348)] = 15527, - [SMALL_STATE(349)] = 15537, - [SMALL_STATE(350)] = 15547, - [SMALL_STATE(351)] = 15557, - [SMALL_STATE(352)] = 15564, - [SMALL_STATE(353)] = 15569, - [SMALL_STATE(354)] = 15576, - [SMALL_STATE(355)] = 15583, - [SMALL_STATE(356)] = 15590, - [SMALL_STATE(357)] = 15595, - [SMALL_STATE(358)] = 15602, - [SMALL_STATE(359)] = 15609, - [SMALL_STATE(360)] = 15616, - [SMALL_STATE(361)] = 15621, - [SMALL_STATE(362)] = 15626, - [SMALL_STATE(363)] = 15631, - [SMALL_STATE(364)] = 15636, - [SMALL_STATE(365)] = 15641, - [SMALL_STATE(366)] = 15646, - [SMALL_STATE(367)] = 15651, - [SMALL_STATE(368)] = 15658, - [SMALL_STATE(369)] = 15663, - [SMALL_STATE(370)] = 15668, - [SMALL_STATE(371)] = 15675, - [SMALL_STATE(372)] = 15680, - [SMALL_STATE(373)] = 15687, - [SMALL_STATE(374)] = 15691, - [SMALL_STATE(375)] = 15695, - [SMALL_STATE(376)] = 15699, - [SMALL_STATE(377)] = 15703, - [SMALL_STATE(378)] = 15707, - [SMALL_STATE(379)] = 15711, - [SMALL_STATE(380)] = 15715, - [SMALL_STATE(381)] = 15719, - [SMALL_STATE(382)] = 15723, - [SMALL_STATE(383)] = 15727, - [SMALL_STATE(384)] = 15731, - [SMALL_STATE(385)] = 15735, - [SMALL_STATE(386)] = 15739, - [SMALL_STATE(387)] = 15743, - [SMALL_STATE(388)] = 15747, - [SMALL_STATE(389)] = 15751, - [SMALL_STATE(390)] = 15755, - [SMALL_STATE(391)] = 15759, - [SMALL_STATE(392)] = 15763, - [SMALL_STATE(393)] = 15767, - [SMALL_STATE(394)] = 15771, - [SMALL_STATE(395)] = 15775, - [SMALL_STATE(396)] = 15779, - [SMALL_STATE(397)] = 15783, - [SMALL_STATE(398)] = 15787, - [SMALL_STATE(399)] = 15791, - [SMALL_STATE(400)] = 15795, - [SMALL_STATE(401)] = 15799, - [SMALL_STATE(402)] = 15803, - [SMALL_STATE(403)] = 15807, - [SMALL_STATE(404)] = 15811, - [SMALL_STATE(405)] = 15815, - [SMALL_STATE(406)] = 15819, - [SMALL_STATE(407)] = 15823, - [SMALL_STATE(408)] = 15827, - [SMALL_STATE(409)] = 15831, - [SMALL_STATE(410)] = 15835, - [SMALL_STATE(411)] = 15839, - [SMALL_STATE(412)] = 15843, - [SMALL_STATE(413)] = 15847, - [SMALL_STATE(414)] = 15851, - [SMALL_STATE(415)] = 15855, - [SMALL_STATE(416)] = 15859, - [SMALL_STATE(417)] = 15863, - [SMALL_STATE(418)] = 15867, - [SMALL_STATE(419)] = 15871, - [SMALL_STATE(420)] = 15875, - [SMALL_STATE(421)] = 15879, - [SMALL_STATE(422)] = 15883, - [SMALL_STATE(423)] = 15887, - [SMALL_STATE(424)] = 15891, - [SMALL_STATE(425)] = 15895, - [SMALL_STATE(426)] = 15899, - [SMALL_STATE(427)] = 15903, - [SMALL_STATE(428)] = 15907, - [SMALL_STATE(429)] = 15911, + [SMALL_STATE(45)] = 3368, + [SMALL_STATE(46)] = 3449, + [SMALL_STATE(47)] = 3530, + [SMALL_STATE(48)] = 3611, + [SMALL_STATE(49)] = 3692, + [SMALL_STATE(50)] = 3773, + [SMALL_STATE(51)] = 3854, + [SMALL_STATE(52)] = 3935, + [SMALL_STATE(53)] = 4016, + [SMALL_STATE(54)] = 4097, + [SMALL_STATE(55)] = 4178, + [SMALL_STATE(56)] = 4259, + [SMALL_STATE(57)] = 4340, + [SMALL_STATE(58)] = 4421, + [SMALL_STATE(59)] = 4502, + [SMALL_STATE(60)] = 4583, + [SMALL_STATE(61)] = 4664, + [SMALL_STATE(62)] = 4745, + [SMALL_STATE(63)] = 4826, + [SMALL_STATE(64)] = 4907, + [SMALL_STATE(65)] = 4988, + [SMALL_STATE(66)] = 5069, + [SMALL_STATE(67)] = 5150, + [SMALL_STATE(68)] = 5231, + [SMALL_STATE(69)] = 5312, + [SMALL_STATE(70)] = 5390, + [SMALL_STATE(71)] = 5438, + [SMALL_STATE(72)] = 5516, + [SMALL_STATE(73)] = 5564, + [SMALL_STATE(74)] = 5642, + [SMALL_STATE(75)] = 5717, + [SMALL_STATE(76)] = 5792, + [SMALL_STATE(77)] = 5867, + [SMALL_STATE(78)] = 5942, + [SMALL_STATE(79)] = 6017, + [SMALL_STATE(80)] = 6092, + [SMALL_STATE(81)] = 6167, + [SMALL_STATE(82)] = 6242, + [SMALL_STATE(83)] = 6317, + [SMALL_STATE(84)] = 6392, + [SMALL_STATE(85)] = 6467, + [SMALL_STATE(86)] = 6542, + [SMALL_STATE(87)] = 6617, + [SMALL_STATE(88)] = 6692, + [SMALL_STATE(89)] = 6767, + [SMALL_STATE(90)] = 6842, + [SMALL_STATE(91)] = 6917, + [SMALL_STATE(92)] = 6992, + [SMALL_STATE(93)] = 7067, + [SMALL_STATE(94)] = 7142, + [SMALL_STATE(95)] = 7217, + [SMALL_STATE(96)] = 7292, + [SMALL_STATE(97)] = 7367, + [SMALL_STATE(98)] = 7442, + [SMALL_STATE(99)] = 7517, + [SMALL_STATE(100)] = 7592, + [SMALL_STATE(101)] = 7667, + [SMALL_STATE(102)] = 7742, + [SMALL_STATE(103)] = 7817, + [SMALL_STATE(104)] = 7892, + [SMALL_STATE(105)] = 7937, + [SMALL_STATE(106)] = 7984, + [SMALL_STATE(107)] = 8059, + [SMALL_STATE(108)] = 8134, + [SMALL_STATE(109)] = 8209, + [SMALL_STATE(110)] = 8284, + [SMALL_STATE(111)] = 8359, + [SMALL_STATE(112)] = 8412, + [SMALL_STATE(113)] = 8467, + [SMALL_STATE(114)] = 8542, + [SMALL_STATE(115)] = 8595, + [SMALL_STATE(116)] = 8670, + [SMALL_STATE(117)] = 8745, + [SMALL_STATE(118)] = 8820, + [SMALL_STATE(119)] = 8895, + [SMALL_STATE(120)] = 8970, + [SMALL_STATE(121)] = 9045, + [SMALL_STATE(122)] = 9098, + [SMALL_STATE(123)] = 9151, + [SMALL_STATE(124)] = 9226, + [SMALL_STATE(125)] = 9301, + [SMALL_STATE(126)] = 9376, + [SMALL_STATE(127)] = 9451, + [SMALL_STATE(128)] = 9526, + [SMALL_STATE(129)] = 9568, + [SMALL_STATE(130)] = 9610, + [SMALL_STATE(131)] = 9662, + [SMALL_STATE(132)] = 9714, + [SMALL_STATE(133)] = 9756, + [SMALL_STATE(134)] = 9800, + [SMALL_STATE(135)] = 9854, + [SMALL_STATE(136)] = 9898, + [SMALL_STATE(137)] = 9950, + [SMALL_STATE(138)] = 10002, + [SMALL_STATE(139)] = 10041, + [SMALL_STATE(140)] = 10080, + [SMALL_STATE(141)] = 10119, + [SMALL_STATE(142)] = 10160, + [SMALL_STATE(143)] = 10201, + [SMALL_STATE(144)] = 10242, + [SMALL_STATE(145)] = 10283, + [SMALL_STATE(146)] = 10330, + [SMALL_STATE(147)] = 10369, + [SMALL_STATE(148)] = 10408, + [SMALL_STATE(149)] = 10447, + [SMALL_STATE(150)] = 10488, + [SMALL_STATE(151)] = 10527, + [SMALL_STATE(152)] = 10566, + [SMALL_STATE(153)] = 10609, + [SMALL_STATE(154)] = 10664, + [SMALL_STATE(155)] = 10703, + [SMALL_STATE(156)] = 10742, + [SMALL_STATE(157)] = 10781, + [SMALL_STATE(158)] = 10820, + [SMALL_STATE(159)] = 10859, + [SMALL_STATE(160)] = 10898, + [SMALL_STATE(161)] = 10937, + [SMALL_STATE(162)] = 10976, + [SMALL_STATE(163)] = 11015, + [SMALL_STATE(164)] = 11054, + [SMALL_STATE(165)] = 11093, + [SMALL_STATE(166)] = 11132, + [SMALL_STATE(167)] = 11171, + [SMALL_STATE(168)] = 11210, + [SMALL_STATE(169)] = 11260, + [SMALL_STATE(170)] = 11298, + [SMALL_STATE(171)] = 11336, + [SMALL_STATE(172)] = 11374, + [SMALL_STATE(173)] = 11412, + [SMALL_STATE(174)] = 11464, + [SMALL_STATE(175)] = 11502, + [SMALL_STATE(176)] = 11540, + [SMALL_STATE(177)] = 11578, + [SMALL_STATE(178)] = 11616, + [SMALL_STATE(179)] = 11654, + [SMALL_STATE(180)] = 11692, + [SMALL_STATE(181)] = 11730, + [SMALL_STATE(182)] = 11768, + [SMALL_STATE(183)] = 11806, + [SMALL_STATE(184)] = 11844, + [SMALL_STATE(185)] = 11896, + [SMALL_STATE(186)] = 11934, + [SMALL_STATE(187)] = 11972, + [SMALL_STATE(188)] = 12010, + [SMALL_STATE(189)] = 12048, + [SMALL_STATE(190)] = 12086, + [SMALL_STATE(191)] = 12124, + [SMALL_STATE(192)] = 12168, + [SMALL_STATE(193)] = 12214, + [SMALL_STATE(194)] = 12255, + [SMALL_STATE(195)] = 12306, + [SMALL_STATE(196)] = 12356, + [SMALL_STATE(197)] = 12404, + [SMALL_STATE(198)] = 12444, + [SMALL_STATE(199)] = 12492, + [SMALL_STATE(200)] = 12540, + [SMALL_STATE(201)] = 12588, + [SMALL_STATE(202)] = 12625, + [SMALL_STATE(203)] = 12662, + [SMALL_STATE(204)] = 12699, + [SMALL_STATE(205)] = 12730, + [SMALL_STATE(206)] = 12761, + [SMALL_STATE(207)] = 12793, + [SMALL_STATE(208)] = 12824, + [SMALL_STATE(209)] = 12849, + [SMALL_STATE(210)] = 12881, + [SMALL_STATE(211)] = 12913, + [SMALL_STATE(212)] = 12947, + [SMALL_STATE(213)] = 12975, + [SMALL_STATE(214)] = 13007, + [SMALL_STATE(215)] = 13031, + [SMALL_STATE(216)] = 13055, + [SMALL_STATE(217)] = 13087, + [SMALL_STATE(218)] = 13119, + [SMALL_STATE(219)] = 13142, + [SMALL_STATE(220)] = 13169, + [SMALL_STATE(221)] = 13194, + [SMALL_STATE(222)] = 13219, + [SMALL_STATE(223)] = 13248, + [SMALL_STATE(224)] = 13271, + [SMALL_STATE(225)] = 13304, + [SMALL_STATE(226)] = 13329, + [SMALL_STATE(227)] = 13351, + [SMALL_STATE(228)] = 13373, + [SMALL_STATE(229)] = 13413, + [SMALL_STATE(230)] = 13435, + [SMALL_STATE(231)] = 13457, + [SMALL_STATE(232)] = 13481, + [SMALL_STATE(233)] = 13503, + [SMALL_STATE(234)] = 13525, + [SMALL_STATE(235)] = 13547, + [SMALL_STATE(236)] = 13569, + [SMALL_STATE(237)] = 13609, + [SMALL_STATE(238)] = 13631, + [SMALL_STATE(239)] = 13671, + [SMALL_STATE(240)] = 13711, + [SMALL_STATE(241)] = 13751, + [SMALL_STATE(242)] = 13773, + [SMALL_STATE(243)] = 13795, + [SMALL_STATE(244)] = 13817, + [SMALL_STATE(245)] = 13839, + [SMALL_STATE(246)] = 13861, + [SMALL_STATE(247)] = 13883, + [SMALL_STATE(248)] = 13905, + [SMALL_STATE(249)] = 13927, + [SMALL_STATE(250)] = 13949, + [SMALL_STATE(251)] = 13971, + [SMALL_STATE(252)] = 13993, + [SMALL_STATE(253)] = 14015, + [SMALL_STATE(254)] = 14041, + [SMALL_STATE(255)] = 14063, + [SMALL_STATE(256)] = 14085, + [SMALL_STATE(257)] = 14125, + [SMALL_STATE(258)] = 14162, + [SMALL_STATE(259)] = 14199, + [SMALL_STATE(260)] = 14226, + [SMALL_STATE(261)] = 14263, + [SMALL_STATE(262)] = 14290, + [SMALL_STATE(263)] = 14327, + [SMALL_STATE(264)] = 14354, + [SMALL_STATE(265)] = 14391, + [SMALL_STATE(266)] = 14418, + [SMALL_STATE(267)] = 14450, + [SMALL_STATE(268)] = 14484, + [SMALL_STATE(269)] = 14504, + [SMALL_STATE(270)] = 14524, + [SMALL_STATE(271)] = 14544, + [SMALL_STATE(272)] = 14573, + [SMALL_STATE(273)] = 14600, + [SMALL_STATE(274)] = 14624, + [SMALL_STATE(275)] = 14648, + [SMALL_STATE(276)] = 14672, + [SMALL_STATE(277)] = 14696, + [SMALL_STATE(278)] = 14720, + [SMALL_STATE(279)] = 14744, + [SMALL_STATE(280)] = 14768, + [SMALL_STATE(281)] = 14792, + [SMALL_STATE(282)] = 14816, + [SMALL_STATE(283)] = 14840, + [SMALL_STATE(284)] = 14864, + [SMALL_STATE(285)] = 14888, + [SMALL_STATE(286)] = 14909, + [SMALL_STATE(287)] = 14925, + [SMALL_STATE(288)] = 14941, + [SMALL_STATE(289)] = 14957, + [SMALL_STATE(290)] = 14973, + [SMALL_STATE(291)] = 14989, + [SMALL_STATE(292)] = 15005, + [SMALL_STATE(293)] = 15021, + [SMALL_STATE(294)] = 15037, + [SMALL_STATE(295)] = 15053, + [SMALL_STATE(296)] = 15069, + [SMALL_STATE(297)] = 15085, + [SMALL_STATE(298)] = 15101, + [SMALL_STATE(299)] = 15117, + [SMALL_STATE(300)] = 15135, + [SMALL_STATE(301)] = 15150, + [SMALL_STATE(302)] = 15162, + [SMALL_STATE(303)] = 15173, + [SMALL_STATE(304)] = 15184, + [SMALL_STATE(305)] = 15195, + [SMALL_STATE(306)] = 15206, + [SMALL_STATE(307)] = 15217, + [SMALL_STATE(308)] = 15228, + [SMALL_STATE(309)] = 15239, + [SMALL_STATE(310)] = 15250, + [SMALL_STATE(311)] = 15261, + [SMALL_STATE(312)] = 15272, + [SMALL_STATE(313)] = 15283, + [SMALL_STATE(314)] = 15294, + [SMALL_STATE(315)] = 15305, + [SMALL_STATE(316)] = 15316, + [SMALL_STATE(317)] = 15327, + [SMALL_STATE(318)] = 15337, + [SMALL_STATE(319)] = 15347, + [SMALL_STATE(320)] = 15357, + [SMALL_STATE(321)] = 15365, + [SMALL_STATE(322)] = 15373, + [SMALL_STATE(323)] = 15383, + [SMALL_STATE(324)] = 15391, + [SMALL_STATE(325)] = 15401, + [SMALL_STATE(326)] = 15411, + [SMALL_STATE(327)] = 15421, + [SMALL_STATE(328)] = 15431, + [SMALL_STATE(329)] = 15441, + [SMALL_STATE(330)] = 15451, + [SMALL_STATE(331)] = 15461, + [SMALL_STATE(332)] = 15471, + [SMALL_STATE(333)] = 15481, + [SMALL_STATE(334)] = 15491, + [SMALL_STATE(335)] = 15501, + [SMALL_STATE(336)] = 15511, + [SMALL_STATE(337)] = 15521, + [SMALL_STATE(338)] = 15531, + [SMALL_STATE(339)] = 15541, + [SMALL_STATE(340)] = 15551, + [SMALL_STATE(341)] = 15559, + [SMALL_STATE(342)] = 15569, + [SMALL_STATE(343)] = 15579, + [SMALL_STATE(344)] = 15589, + [SMALL_STATE(345)] = 15599, + [SMALL_STATE(346)] = 15607, + [SMALL_STATE(347)] = 15617, + [SMALL_STATE(348)] = 15627, + [SMALL_STATE(349)] = 15637, + [SMALL_STATE(350)] = 15647, + [SMALL_STATE(351)] = 15657, + [SMALL_STATE(352)] = 15665, + [SMALL_STATE(353)] = 15672, + [SMALL_STATE(354)] = 15677, + [SMALL_STATE(355)] = 15682, + [SMALL_STATE(356)] = 15689, + [SMALL_STATE(357)] = 15696, + [SMALL_STATE(358)] = 15701, + [SMALL_STATE(359)] = 15708, + [SMALL_STATE(360)] = 15715, + [SMALL_STATE(361)] = 15722, + [SMALL_STATE(362)] = 15727, + [SMALL_STATE(363)] = 15732, + [SMALL_STATE(364)] = 15737, + [SMALL_STATE(365)] = 15742, + [SMALL_STATE(366)] = 15749, + [SMALL_STATE(367)] = 15756, + [SMALL_STATE(368)] = 15761, + [SMALL_STATE(369)] = 15766, + [SMALL_STATE(370)] = 15773, + [SMALL_STATE(371)] = 15778, + [SMALL_STATE(372)] = 15785, + [SMALL_STATE(373)] = 15790, + [SMALL_STATE(374)] = 15795, + [SMALL_STATE(375)] = 15799, + [SMALL_STATE(376)] = 15803, + [SMALL_STATE(377)] = 15807, + [SMALL_STATE(378)] = 15811, + [SMALL_STATE(379)] = 15815, + [SMALL_STATE(380)] = 15819, + [SMALL_STATE(381)] = 15823, + [SMALL_STATE(382)] = 15827, + [SMALL_STATE(383)] = 15831, + [SMALL_STATE(384)] = 15835, + [SMALL_STATE(385)] = 15839, + [SMALL_STATE(386)] = 15843, + [SMALL_STATE(387)] = 15847, + [SMALL_STATE(388)] = 15851, + [SMALL_STATE(389)] = 15855, + [SMALL_STATE(390)] = 15859, + [SMALL_STATE(391)] = 15863, + [SMALL_STATE(392)] = 15867, + [SMALL_STATE(393)] = 15871, + [SMALL_STATE(394)] = 15875, + [SMALL_STATE(395)] = 15879, + [SMALL_STATE(396)] = 15883, + [SMALL_STATE(397)] = 15887, + [SMALL_STATE(398)] = 15891, + [SMALL_STATE(399)] = 15895, + [SMALL_STATE(400)] = 15899, + [SMALL_STATE(401)] = 15903, + [SMALL_STATE(402)] = 15907, + [SMALL_STATE(403)] = 15911, + [SMALL_STATE(404)] = 15915, + [SMALL_STATE(405)] = 15919, + [SMALL_STATE(406)] = 15923, + [SMALL_STATE(407)] = 15927, + [SMALL_STATE(408)] = 15931, + [SMALL_STATE(409)] = 15935, + [SMALL_STATE(410)] = 15939, + [SMALL_STATE(411)] = 15943, + [SMALL_STATE(412)] = 15947, + [SMALL_STATE(413)] = 15951, + [SMALL_STATE(414)] = 15955, + [SMALL_STATE(415)] = 15959, + [SMALL_STATE(416)] = 15963, + [SMALL_STATE(417)] = 15967, + [SMALL_STATE(418)] = 15971, + [SMALL_STATE(419)] = 15975, + [SMALL_STATE(420)] = 15979, + [SMALL_STATE(421)] = 15983, + [SMALL_STATE(422)] = 15987, + [SMALL_STATE(423)] = 15991, + [SMALL_STATE(424)] = 15995, + [SMALL_STATE(425)] = 15999, + [SMALL_STATE(426)] = 16003, + [SMALL_STATE(427)] = 16007, + [SMALL_STATE(428)] = 16011, + [SMALL_STATE(429)] = 16015, + [SMALL_STATE(430)] = 16019, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(108), - [40] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(388), - [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(113), - [46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(179), - [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(179), - [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(180), - [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(257), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(358), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(394), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(390), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(373), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(317), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(83), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(81), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(384), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(79), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(108), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(113), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(179), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(179), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(180), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(257), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(358), - [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(394), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(390), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(373), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(317), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(83), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(81), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(384), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(79), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(72), + [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(400), + [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(109), + [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(175), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(175), + [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(180), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(258), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(360), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(395), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(374), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(390), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(340), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(79), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(385), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(91), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(72), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(109), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(175), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(175), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(180), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(258), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(360), + [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(395), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(374), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(390), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(340), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(80), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(79), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(385), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(91), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(184), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(113), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(179), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(179), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(180), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(257), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(358), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(394), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(390), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(428), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(326), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(116), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(81), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(384), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(79), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(224), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(106), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(236), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(236), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(231), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(264), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(372), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(409), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(429), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(377), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(340), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(102), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(110), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(389), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(74), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [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 = true}}, SHIFT(53), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(191), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(109), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(175), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(175), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(180), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(258), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(360), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(395), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(374), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(429), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(320), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(107), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(79), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(385), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(91), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(222), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(103), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(244), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(244), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(248), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(264), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(371), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(410), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(389), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(391), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(345), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(90), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(101), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(387), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(97), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(89), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(103), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(118), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(89), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 1), [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 1), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(93), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(94), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(298), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(298), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(297), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(256), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(359), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(421), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(406), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(257), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(413), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(112), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(333), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(93), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(86), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(286), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(286), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(290), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(260), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(359), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(422), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(414), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(258), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(403), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(321), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(108), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [845] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [857] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), }; #ifdef __cplusplus