diff --git a/bindings/dust b/bindings/dust index a42b43e..7fa5dd0 160000 --- a/bindings/dust +++ b/bindings/dust @@ -1 +1 @@ -Subproject commit a42b43ed7853b73e8bb42b0ab23765acc1fc78c1 +Subproject commit 7fa5dd0f54e389052274affd8237040af545b938 diff --git a/grammar.js b/grammar.js index 119ef29..df10cb2 100644 --- a/grammar.js +++ b/grammar.js @@ -8,7 +8,7 @@ module.exports = grammar({ item: $ => choice( $.comment, - field('source', $.statement), + $.statement, ), comment: $ => seq(token('#'), /.*/), @@ -52,8 +52,8 @@ module.exports = grammar({ $.integer, $.float, $.string, - $.list, $.boolean, + $.list, $.function, $.table, $.map, @@ -72,7 +72,7 @@ module.exports = grammar({ list: $ => seq( '[', - repeat1(seq(field('item', $.value), optional(','))), + repeat1(seq($.value, optional(','))), ']' ), @@ -95,7 +95,7 @@ module.exports = grammar({ map: $ => seq( 'map', '{', - repeat(field('key_value_pair', seq($.identifier, "=", $.value))), + repeat(seq($.identifier, "=", $.value)), '}', ), diff --git a/src/grammar.json b/src/grammar.json index e970cdc..588e4a2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -17,12 +17,8 @@ "name": "comment" }, { - "type": "FIELD", - "name": "source", - "content": { - "type": "SYMBOL", - "name": "statement" - } + "type": "SYMBOL", + "name": "statement" } ] }, @@ -200,11 +196,11 @@ }, { "type": "SYMBOL", - "name": "list" + "name": "boolean" }, { "type": "SYMBOL", - "name": "boolean" + "name": "list" }, { "type": "SYMBOL", @@ -258,12 +254,8 @@ "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "item", - "content": { - "type": "SYMBOL", - "name": "value" - } + "type": "SYMBOL", + "name": "value" }, { "type": "CHOICE", @@ -430,25 +422,21 @@ { "type": "REPEAT", "content": { - "type": "FIELD", - "name": "key_value_pair", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "value" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "value" + } + ] } }, { diff --git a/src/node-types.json b/src/node-types.json index 98a6281..b7c6e69 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -198,25 +198,18 @@ { "type": "item", "named": true, - "fields": { - "source": { - "multiple": false, - "required": false, - "types": [ - { - "type": "statement", - "named": true - } - ] - } - }, + "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "comment", "named": true + }, + { + "type": "statement", + "named": true } ] } @@ -224,17 +217,16 @@ { "type": "list", "named": true, - "fields": { - "item": { - "multiple": true, - "required": true, - "types": [ - { - "type": "value", - "named": true - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "value", + "named": true + } + ] } }, { @@ -283,25 +275,20 @@ { "type": "map", "named": true, - "fields": { - "key_value_pair": { - "multiple": true, - "required": false, - "types": [ - { - "type": "=", - "named": false - }, - { - "type": "identifier", - "named": true - }, - { - "type": "value", - "named": true - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "value", + "named": true + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index ce550e0..888d0b8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 432 +#define STATE_COUNT 431 #define LARGE_STATE_COUNT 4 #define SYMBOL_COUNT 82 #define ALIAS_COUNT 0 #define TOKEN_COUNT 47 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 6 +#define FIELD_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 10 +#define PRODUCTION_ID_COUNT 3 enum { sym_identifier = 1, @@ -604,57 +604,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { enum { field_else_statement = 1, field_if_expression = 2, - field_item = 3, - field_key_value_pair = 4, - field_source = 5, - field_then_statement = 6, + field_then_statement = 3, }; static const char * const ts_field_names[] = { [0] = NULL, [field_else_statement] = "else_statement", [field_if_expression] = "if_expression", - [field_item] = "item", - [field_key_value_pair] = "key_value_pair", - [field_source] = "source", [field_then_statement] = "then_statement", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 2}, - [5] = {.index = 5, .length = 1}, - [6] = {.index = 6, .length = 2}, - [7] = {.index = 8, .length = 2}, - [8] = {.index = 10, .length = 3}, - [9] = {.index = 13, .length = 3}, + [1] = {.index = 0, .length = 2}, + [2] = {.index = 2, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_source, 0}, - [1] = - {field_item, 0}, - [2] = - {field_item, 1, .inherited = true}, - [3] = - {field_item, 0, .inherited = true}, - {field_item, 1, .inherited = true}, - [5] = - {field_key_value_pair, 2, .inherited = true}, - [6] = - {field_key_value_pair, 0, .inherited = true}, - {field_key_value_pair, 1, .inherited = true}, - [8] = {field_if_expression, 1}, {field_then_statement, 3}, - [10] = - {field_key_value_pair, 0}, - {field_key_value_pair, 1}, - {field_key_value_pair, 2}, - [13] = + [2] = {field_else_statement, 5}, {field_if_expression, 1}, {field_then_statement, 3}, @@ -674,433 +643,432 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 5, + [5] = 4, [6] = 6, - [7] = 4, - [8] = 5, - [9] = 5, - [10] = 4, - [11] = 5, - [12] = 5, - [13] = 6, - [14] = 4, - [15] = 15, + [7] = 7, + [8] = 4, + [9] = 9, + [10] = 6, + [11] = 4, + [12] = 7, + [13] = 4, + [14] = 6, + [15] = 7, [16] = 6, - [17] = 4, - [18] = 6, - [19] = 6, + [17] = 6, + [18] = 7, + [19] = 7, [20] = 20, - [21] = 21, - [22] = 21, - [23] = 20, - [24] = 24, - [25] = 21, + [21] = 20, + [22] = 22, + [23] = 23, + [24] = 23, + [25] = 20, [26] = 20, - [27] = 24, - [28] = 20, - [29] = 24, - [30] = 20, - [31] = 21, - [32] = 24, - [33] = 21, - [34] = 24, + [27] = 22, + [28] = 22, + [29] = 23, + [30] = 22, + [31] = 23, + [32] = 20, + [33] = 22, + [34] = 23, [35] = 35, [36] = 36, - [37] = 36, + [37] = 37, [38] = 38, - [39] = 36, + [39] = 37, [40] = 40, - [41] = 41, + [41] = 38, [42] = 42, - [43] = 41, + [43] = 38, [44] = 44, - [45] = 38, - [46] = 46, + [45] = 45, + [46] = 38, [47] = 47, - [48] = 40, - [49] = 35, - [50] = 46, - [51] = 42, + [48] = 38, + [49] = 37, + [50] = 35, + [51] = 45, [52] = 36, - [53] = 35, - [54] = 41, - [55] = 55, - [56] = 44, - [57] = 46, - [58] = 40, - [59] = 42, - [60] = 46, - [61] = 38, - [62] = 62, - [63] = 36, - [64] = 35, - [65] = 35, - [66] = 66, - [67] = 46, - [68] = 44, + [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] = 69, - [71] = 66, - [72] = 72, + [70] = 70, + [71] = 69, + [72] = 44, [73] = 69, [74] = 74, - [75] = 74, + [75] = 75, [76] = 76, [77] = 77, - [78] = 78, + [78] = 74, [79] = 79, - [80] = 77, - [81] = 79, - [82] = 82, + [80] = 75, + [81] = 77, + [82] = 76, [83] = 83, - [84] = 79, - [85] = 79, - [86] = 79, + [84] = 74, + [85] = 74, + [86] = 86, [87] = 87, [88] = 77, - [89] = 89, - [90] = 90, - [91] = 79, - [92] = 82, - [93] = 82, - [94] = 90, - [95] = 82, - [96] = 96, - [97] = 96, - [98] = 90, - [99] = 78, - [100] = 100, - [101] = 74, - [102] = 96, - [103] = 74, - [104] = 100, - [105] = 105, - [106] = 82, - [107] = 100, - [108] = 74, - [109] = 78, - [110] = 76, - [111] = 79, - [112] = 100, - [113] = 90, - [114] = 90, - [115] = 100, - [116] = 116, - [117] = 76, - [118] = 78, - [119] = 105, - [120] = 76, + [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] = 105, - [123] = 123, - [124] = 72, - [125] = 76, - [126] = 78, - [127] = 79, - [128] = 123, - [129] = 87, - [130] = 83, - [131] = 89, + [122] = 122, + [123] = 87, + [124] = 83, + [125] = 87, + [126] = 74, + [127] = 83, + [128] = 128, + [129] = 129, + [130] = 111, + [131] = 114, [132] = 132, - [133] = 116, - [134] = 134, - [135] = 135, + [133] = 133, + [134] = 112, + [135] = 104, [136] = 121, - [137] = 137, + [137] = 122, [138] = 138, - [139] = 135, + [139] = 139, [140] = 140, - [141] = 141, - [142] = 142, + [141] = 128, + [142] = 129, [143] = 143, - [144] = 144, - [145] = 72, - [146] = 137, + [144] = 143, + [145] = 70, + [146] = 146, [147] = 147, [148] = 148, - [149] = 149, + [149] = 132, [150] = 150, [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, + [152] = 133, + [153] = 70, + [154] = 140, [155] = 155, - [156] = 138, - [157] = 134, - [158] = 132, + [156] = 156, + [157] = 157, + [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 140, - [163] = 72, + [162] = 162, + [163] = 163, [164] = 164, [165] = 165, [166] = 166, [167] = 167, - [168] = 147, - [169] = 166, - [170] = 66, - [171] = 155, - [172] = 148, - [173] = 151, - [174] = 154, - [175] = 159, - [176] = 160, - [177] = 150, - [178] = 142, - [179] = 164, - [180] = 141, - [181] = 116, - [182] = 87, - [183] = 149, - [184] = 87, - [185] = 153, - [186] = 167, - [187] = 72, - [188] = 152, - [189] = 143, - [190] = 161, - [191] = 144, - [192] = 165, - [193] = 87, - [194] = 137, - [195] = 89, - [196] = 137, - [197] = 123, - [198] = 121, - [199] = 199, - [200] = 83, - [201] = 132, - [202] = 134, - [203] = 138, - [204] = 135, - [205] = 137, - [206] = 66, - [207] = 161, - [208] = 72, - [209] = 123, - [210] = 210, - [211] = 211, - [212] = 89, - [213] = 72, - [214] = 116, - [215] = 83, - [216] = 216, - [217] = 87, - [218] = 121, - [219] = 219, - [220] = 132, - [221] = 135, - [222] = 137, - [223] = 87, - [224] = 66, - [225] = 225, - [226] = 134, - [227] = 137, - [228] = 164, - [229] = 152, - [230] = 161, - [231] = 153, - [232] = 232, - [233] = 150, - [234] = 151, - [235] = 143, - [236] = 138, - [237] = 142, - [238] = 232, - [239] = 141, - [240] = 147, - [241] = 160, - [242] = 149, + [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] = 112, + [195] = 195, + [196] = 111, + [197] = 132, + [198] = 114, + [199] = 121, + [200] = 122, + [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] = 166, - [245] = 232, - [246] = 167, - [247] = 140, - [248] = 148, - [249] = 165, - [250] = 154, - [251] = 155, - [252] = 144, - [253] = 253, - [254] = 254, - [255] = 232, - [256] = 232, - [257] = 159, - [258] = 89, - [259] = 123, - [260] = 83, - [261] = 261, - [262] = 261, - [263] = 121, - [264] = 261, - [265] = 261, - [266] = 261, - [267] = 72, - [268] = 268, - [269] = 134, - [270] = 132, - [271] = 138, - [272] = 87, - [273] = 116, + [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] = 274, [276] = 276, - [277] = 274, - [278] = 274, - [279] = 279, - [280] = 276, - [281] = 276, + [277] = 273, + [278] = 276, + [279] = 273, + [280] = 274, + [281] = 281, [282] = 274, - [283] = 279, - [284] = 279, + [283] = 274, + [284] = 276, [285] = 285, - [286] = 286, - [287] = 148, - [288] = 288, - [289] = 147, - [290] = 151, - [291] = 144, - [292] = 149, - [293] = 288, - [294] = 294, - [295] = 154, - [296] = 288, - [297] = 143, - [298] = 164, - [299] = 152, - [300] = 140, + [286] = 157, + [287] = 287, + [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] = 303, + [303] = 302, [304] = 304, - [305] = 305, - [306] = 305, + [305] = 302, + [306] = 302, [307] = 304, - [308] = 303, - [309] = 303, - [310] = 303, - [311] = 303, - [312] = 305, - [313] = 305, - [314] = 305, + [308] = 308, + [309] = 308, + [310] = 304, + [311] = 308, + [312] = 302, + [313] = 308, + [314] = 308, [315] = 304, [316] = 304, - [317] = 304, + [317] = 317, [318] = 318, [319] = 319, - [320] = 319, + [320] = 320, [321] = 321, [322] = 322, - [323] = 323, - [324] = 321, - [325] = 323, + [323] = 320, + [324] = 324, + [325] = 318, [326] = 318, - [327] = 322, - [328] = 328, - [329] = 135, - [330] = 321, + [327] = 324, + [328] = 318, + [329] = 319, + [330] = 330, [331] = 319, - [332] = 318, - [333] = 137, - [334] = 318, - [335] = 322, - [336] = 336, - [337] = 336, - [338] = 322, - [339] = 322, - [340] = 318, - [341] = 323, - [342] = 319, - [343] = 323, - [344] = 319, - [345] = 321, - [346] = 323, - [347] = 347, - [348] = 336, - [349] = 321, - [350] = 336, - [351] = 336, + [332] = 330, + [333] = 319, + [334] = 330, + [335] = 132, + [336] = 133, + [337] = 324, + [338] = 324, + [339] = 324, + [340] = 320, + [341] = 319, + [342] = 318, + [343] = 330, + [344] = 344, + [345] = 320, + [346] = 344, + [347] = 344, + [348] = 330, + [349] = 344, + [350] = 344, + [351] = 320, [352] = 352, - [353] = 353, - [354] = 152, - [355] = 353, - [356] = 154, - [357] = 140, - [358] = 358, - [359] = 164, - [360] = 148, - [361] = 353, - [362] = 151, - [363] = 147, - [364] = 149, - [365] = 143, - [366] = 144, - [367] = 358, - [368] = 358, - [369] = 353, - [370] = 370, - [371] = 358, - [372] = 353, - [373] = 358, + [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] = 377, - [378] = 378, + [378] = 376, [379] = 377, [380] = 376, - [381] = 378, - [382] = 382, - [383] = 383, - [384] = 377, + [381] = 377, + [382] = 376, + [383] = 375, + [384] = 384, [385] = 385, - [386] = 376, - [387] = 387, + [386] = 386, + [387] = 385, [388] = 388, - [389] = 389, + [389] = 374, [390] = 390, - [391] = 391, - [392] = 376, - [393] = 376, - [394] = 394, + [391] = 390, + [392] = 388, + [393] = 393, + [394] = 375, [395] = 395, - [396] = 396, - [397] = 375, - [398] = 391, - [399] = 389, - [400] = 388, - [401] = 378, - [402] = 395, - [403] = 394, - [404] = 387, - [405] = 395, - [406] = 383, - [407] = 391, - [408] = 389, - [409] = 394, - [410] = 388, - [411] = 396, - [412] = 378, - [413] = 383, - [414] = 394, - [415] = 394, - [416] = 375, - [417] = 388, - [418] = 389, + [396] = 385, + [397] = 374, + [398] = 386, + [399] = 374, + [400] = 400, + [401] = 393, + [402] = 390, + [403] = 403, + [404] = 404, + [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] = 383, - [421] = 375, - [422] = 383, - [423] = 396, - [424] = 396, - [425] = 396, - [426] = 388, - [427] = 389, - [428] = 377, - [429] = 387, - [430] = 375, - [431] = 378, + [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) { @@ -2233,7 +2201,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}, @@ -2255,13 +2223,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 48}, [64] = {.lex_state = 48}, [65] = {.lex_state = 48}, - [66] = {.lex_state = 44}, + [66] = {.lex_state = 48}, [67] = {.lex_state = 48}, [68] = {.lex_state = 48}, [69] = {.lex_state = 48}, - [70] = {.lex_state = 48}, - [71] = {.lex_state = 45}, - [72] = {.lex_state = 44}, + [70] = {.lex_state = 44}, + [71] = {.lex_state = 48}, + [72] = {.lex_state = 45}, [73] = {.lex_state = 48}, [74] = {.lex_state = 48}, [75] = {.lex_state = 48}, @@ -2272,13 +2240,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 48}, [81] = {.lex_state = 48}, [82] = {.lex_state = 48}, - [83] = {.lex_state = 44}, + [83] = {.lex_state = 48}, [84] = {.lex_state = 48}, [85] = {.lex_state = 48}, [86] = {.lex_state = 48}, - [87] = {.lex_state = 44}, + [87] = {.lex_state = 48}, [88] = {.lex_state = 48}, - [89] = {.lex_state = 44}, + [89] = {.lex_state = 48}, [90] = {.lex_state = 48}, [91] = {.lex_state = 48}, [92] = {.lex_state = 48}, @@ -2293,66 +2261,66 @@ 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 = 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 = 44}, + [116] = {.lex_state = 48}, [117] = {.lex_state = 48}, [118] = {.lex_state = 48}, [119] = {.lex_state = 48}, [120] = {.lex_state = 48}, [121] = {.lex_state = 44}, - [122] = {.lex_state = 48}, - [123] = {.lex_state = 44}, - [124] = {.lex_state = 45}, + [122] = {.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 = 45}, - [129] = {.lex_state = 45}, + [128] = {.lex_state = 46}, + [129] = {.lex_state = 46}, [130] = {.lex_state = 45}, [131] = {.lex_state = 45}, - [132] = {.lex_state = 46}, - [133] = {.lex_state = 45}, - [134] = {.lex_state = 46}, - [135] = {.lex_state = 44}, + [132] = {.lex_state = 44}, + [133] = {.lex_state = 44}, + [134] = {.lex_state = 45}, + [135] = {.lex_state = 45}, [136] = {.lex_state = 45}, - [137] = {.lex_state = 44}, + [137] = {.lex_state = 45}, [138] = {.lex_state = 44}, - [139] = {.lex_state = 45}, + [139] = {.lex_state = 44}, [140] = {.lex_state = 45}, - [141] = {.lex_state = 44}, - [142] = {.lex_state = 44}, + [141] = {.lex_state = 47}, + [142] = {.lex_state = 47}, [143] = {.lex_state = 44}, [144] = {.lex_state = 44}, [145] = {.lex_state = 44}, - [146] = {.lex_state = 45}, + [146] = {.lex_state = 44}, [147] = {.lex_state = 44}, [148] = {.lex_state = 44}, - [149] = {.lex_state = 44}, + [149] = {.lex_state = 45}, [150] = {.lex_state = 44}, [151] = {.lex_state = 44}, - [152] = {.lex_state = 44}, - [153] = {.lex_state = 44}, + [152] = {.lex_state = 45}, + [153] = {.lex_state = 45}, [154] = {.lex_state = 44}, [155] = {.lex_state = 44}, [156] = {.lex_state = 44}, - [157] = {.lex_state = 47}, - [158] = {.lex_state = 47}, + [157] = {.lex_state = 44}, + [158] = {.lex_state = 44}, [159] = {.lex_state = 44}, [160] = {.lex_state = 44}, [161] = {.lex_state = 44}, [162] = {.lex_state = 44}, - [163] = {.lex_state = 45}, + [163] = {.lex_state = 44}, [164] = {.lex_state = 44}, [165] = {.lex_state = 44}, [166] = {.lex_state = 44}, @@ -2362,7 +2330,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 45}, [176] = {.lex_state = 45}, @@ -2373,7 +2341,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 45}, [182] = {.lex_state = 45}, [183] = {.lex_state = 45}, - [184] = {.lex_state = 44}, + [184] = {.lex_state = 45}, [185] = {.lex_state = 45}, [186] = {.lex_state = 45}, [187] = {.lex_state = 45}, @@ -2382,8 +2350,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 45}, [191] = {.lex_state = 45}, [192] = {.lex_state = 45}, - [193] = {.lex_state = 45}, - [194] = {.lex_state = 44}, + [193] = {.lex_state = 44}, + [194] = {.lex_state = 45}, [195] = {.lex_state = 45}, [196] = {.lex_state = 45}, [197] = {.lex_state = 45}, @@ -2391,50 +2359,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 45}, [200] = {.lex_state = 45}, [201] = {.lex_state = 47}, - [202] = {.lex_state = 47}, - [203] = {.lex_state = 44}, + [202] = {.lex_state = 44}, + [203] = {.lex_state = 47}, [204] = {.lex_state = 48}, [205] = {.lex_state = 48}, [206] = {.lex_state = 3}, - [207] = {.lex_state = 48}, - [208] = {.lex_state = 3}, + [207] = {.lex_state = 3}, + [208] = {.lex_state = 48}, [209] = {.lex_state = 3}, - [210] = {.lex_state = 48}, - [211] = {.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}, - [216] = {.lex_state = 48}, + [214] = {.lex_state = 48}, + [215] = {.lex_state = 48}, + [216] = {.lex_state = 3}, [217] = {.lex_state = 3}, - [218] = {.lex_state = 3}, - [219] = {.lex_state = 48}, + [218] = {.lex_state = 48}, + [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, [222] = {.lex_state = 3}, - [223] = {.lex_state = 3}, + [223] = {.lex_state = 48}, [224] = {.lex_state = 3}, - [225] = {.lex_state = 48}, + [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 = 1}, + [232] = {.lex_state = 3}, [233] = {.lex_state = 3}, [234] = {.lex_state = 3}, [235] = {.lex_state = 3}, - [236] = {.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 = 3}, - [243] = {.lex_state = 1}, + [243] = {.lex_state = 48}, [244] = {.lex_state = 3}, - [245] = {.lex_state = 1}, + [245] = {.lex_state = 48}, [246] = {.lex_state = 3}, [247] = {.lex_state = 3}, [248] = {.lex_state = 3}, @@ -2442,22 +2410,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [250] = {.lex_state = 3}, [251] = {.lex_state = 3}, [252] = {.lex_state = 3}, - [253] = {.lex_state = 48}, - [254] = {.lex_state = 48}, - [255] = {.lex_state = 1}, + [253] = {.lex_state = 3}, + [254] = {.lex_state = 3}, + [255] = {.lex_state = 3}, [256] = {.lex_state = 1}, - [257] = {.lex_state = 3}, - [258] = {.lex_state = 3}, + [257] = {.lex_state = 1}, + [258] = {.lex_state = 1}, [259] = {.lex_state = 3}, - [260] = {.lex_state = 3}, - [261] = {.lex_state = 1}, + [260] = {.lex_state = 1}, + [261] = {.lex_state = 3}, [262] = {.lex_state = 1}, [263] = {.lex_state = 3}, [264] = {.lex_state = 1}, - [265] = {.lex_state = 1}, - [266] = {.lex_state = 1}, - [267] = {.lex_state = 3}, - [268] = {.lex_state = 1}, + [265] = {.lex_state = 3}, + [266] = {.lex_state = 3}, + [267] = {.lex_state = 1}, + [268] = {.lex_state = 3}, [269] = {.lex_state = 3}, [270] = {.lex_state = 3}, [271] = {.lex_state = 3}, @@ -2475,23 +2443,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [283] = {.lex_state = 3}, [284] = {.lex_state = 3}, [285] = {.lex_state = 3}, - [286] = {.lex_state = 3}, - [287] = {.lex_state = 1}, - [288] = {.lex_state = 3}, + [286] = {.lex_state = 1}, + [287] = {.lex_state = 3}, + [288] = {.lex_state = 1}, [289] = {.lex_state = 1}, [290] = {.lex_state = 1}, [291] = {.lex_state = 1}, - [292] = {.lex_state = 1}, - [293] = {.lex_state = 3}, + [292] = {.lex_state = 3}, + [293] = {.lex_state = 1}, [294] = {.lex_state = 1}, - [295] = {.lex_state = 1}, - [296] = {.lex_state = 3}, + [295] = {.lex_state = 3}, + [296] = {.lex_state = 1}, [297] = {.lex_state = 1}, [298] = {.lex_state = 1}, [299] = {.lex_state = 1}, [300] = {.lex_state = 1}, - [301] = {.lex_state = 1}, - [302] = {.lex_state = 6}, + [301] = {.lex_state = 6}, + [302] = {.lex_state = 0}, [303] = {.lex_state = 0}, [304] = {.lex_state = 6}, [305] = {.lex_state = 0}, @@ -2499,7 +2467,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [307] = {.lex_state = 6}, [308] = {.lex_state = 0}, [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, + [310] = {.lex_state = 6}, [311] = {.lex_state = 0}, [312] = {.lex_state = 0}, [313] = {.lex_state = 0}, @@ -2508,99 +2476,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 6}, [317] = {.lex_state = 6}, [318] = {.lex_state = 6}, - [319] = {.lex_state = 0}, + [319] = {.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 = 6}, [327] = {.lex_state = 6}, [328] = {.lex_state = 6}, - [329] = {.lex_state = 0}, + [329] = {.lex_state = 6}, [330] = {.lex_state = 6}, - [331] = {.lex_state = 0}, + [331] = {.lex_state = 6}, [332] = {.lex_state = 6}, - [333] = {.lex_state = 0}, + [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 = 6}, + [340] = {.lex_state = 0}, [341] = {.lex_state = 6}, - [342] = {.lex_state = 0}, + [342] = {.lex_state = 6}, [343] = {.lex_state = 6}, - [344] = {.lex_state = 0}, - [345] = {.lex_state = 6}, + [344] = {.lex_state = 6}, + [345] = {.lex_state = 0}, [346] = {.lex_state = 6}, [347] = {.lex_state = 6}, [348] = {.lex_state = 6}, [349] = {.lex_state = 6}, [350] = {.lex_state = 6}, - [351] = {.lex_state = 6}, + [351] = {.lex_state = 0}, [352] = {.lex_state = 6}, - [353] = {.lex_state = 0}, + [353] = {.lex_state = 6}, [354] = {.lex_state = 6}, - [355] = {.lex_state = 0}, + [355] = {.lex_state = 6}, [356] = {.lex_state = 6}, [357] = {.lex_state = 6}, [358] = {.lex_state = 6}, - [359] = {.lex_state = 6}, - [360] = {.lex_state = 6}, - [361] = {.lex_state = 0}, + [359] = {.lex_state = 0}, + [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}, + [366] = {.lex_state = 0}, [367] = {.lex_state = 6}, [368] = {.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 = 6}, + [374] = {.lex_state = 0}, [375] = {.lex_state = 6}, [376] = {.lex_state = 0}, - [377] = {.lex_state = 6}, + [377] = {.lex_state = 0}, [378] = {.lex_state = 0}, - [379] = {.lex_state = 6}, + [379] = {.lex_state = 0}, [380] = {.lex_state = 0}, [381] = {.lex_state = 0}, [382] = {.lex_state = 0}, - [383] = {.lex_state = 0}, - [384] = {.lex_state = 6}, + [383] = {.lex_state = 6}, + [384] = {.lex_state = 0}, [385] = {.lex_state = 0}, [386] = {.lex_state = 0}, [387] = {.lex_state = 0}, [388] = {.lex_state = 6}, - [389] = {.lex_state = 6}, - [390] = {.lex_state = 51}, - [391] = {.lex_state = 0}, - [392] = {.lex_state = 0}, - [393] = {.lex_state = 0}, - [394] = {.lex_state = 0}, + [389] = {.lex_state = 0}, + [390] = {.lex_state = 6}, + [391] = {.lex_state = 6}, + [392] = {.lex_state = 6}, + [393] = {.lex_state = 6}, + [394] = {.lex_state = 6}, [395] = {.lex_state = 0}, [396] = {.lex_state = 0}, - [397] = {.lex_state = 6}, + [397] = {.lex_state = 0}, [398] = {.lex_state = 0}, - [399] = {.lex_state = 6}, - [400] = {.lex_state = 6}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 0}, + [399] = {.lex_state = 0}, + [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 = 6}, + [408] = {.lex_state = 0}, [409] = {.lex_state = 0}, - [410] = {.lex_state = 6}, - [411] = {.lex_state = 0}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 6}, [412] = {.lex_state = 0}, [413] = {.lex_state = 0}, [414] = {.lex_state = 0}, @@ -2608,19 +2576,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [416] = {.lex_state = 6}, [417] = {.lex_state = 6}, [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 0}, - [421] = {.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 = 0}, - [425] = {.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}, - [431] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2673,30 +2640,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(382), + [sym_root] = STATE(384), [sym_item] = STATE(2), - [sym_comment] = STATE(210), - [sym_statement] = STATE(216), - [sym_yield] = STATE(207), - [sym_expression] = STATE(182), - [sym__expression_kind] = STATE(175), - [sym_value] = STATE(175), - [sym_boolean] = STATE(188), - [sym_list] = STATE(188), - [sym_function] = STATE(188), - [sym_table] = STATE(188), - [sym_map] = STATE(188), - [sym_math] = STATE(175), - [sym_logic] = STATE(175), - [sym_assignment] = STATE(175), - [sym_select] = STATE(175), - [sym_insert] = STATE(175), - [sym_control_flow] = STATE(175), - [sym_function_call] = STATE(175), - [sym_loop] = STATE(175), - [sym_while_loop] = STATE(176), - [sym_break_loop] = STATE(176), - [sym_match] = STATE(175), + [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(2), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), @@ -2719,28 +2686,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym_item] = STATE(3), - [sym_comment] = STATE(210), - [sym_statement] = STATE(216), - [sym_yield] = STATE(207), - [sym_expression] = STATE(182), - [sym__expression_kind] = STATE(175), - [sym_value] = STATE(175), - [sym_boolean] = STATE(188), - [sym_list] = STATE(188), - [sym_function] = STATE(188), - [sym_table] = STATE(188), - [sym_map] = STATE(188), - [sym_math] = STATE(175), - [sym_logic] = STATE(175), - [sym_assignment] = STATE(175), - [sym_select] = STATE(175), - [sym_insert] = STATE(175), - [sym_control_flow] = STATE(175), - [sym_function_call] = STATE(175), - [sym_loop] = STATE(175), - [sym_while_loop] = STATE(176), - [sym_break_loop] = STATE(176), - [sym_match] = STATE(175), + [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(35), [sym_identifier] = ACTIONS(3), @@ -2764,28 +2731,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [3] = { [sym_item] = STATE(3), - [sym_comment] = STATE(210), - [sym_statement] = STATE(216), - [sym_yield] = STATE(207), - [sym_expression] = STATE(182), - [sym__expression_kind] = STATE(175), - [sym_value] = STATE(175), - [sym_boolean] = STATE(188), - [sym_list] = STATE(188), - [sym_function] = STATE(188), - [sym_table] = STATE(188), - [sym_map] = STATE(188), - [sym_math] = STATE(175), - [sym_logic] = STATE(175), - [sym_assignment] = STATE(175), - [sym_select] = STATE(175), - [sym_insert] = STATE(175), - [sym_control_flow] = STATE(175), - [sym_function_call] = STATE(175), - [sym_loop] = STATE(175), - [sym_while_loop] = STATE(176), - [sym_break_loop] = STATE(176), - [sym_match] = STATE(175), + [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), @@ -2839,9 +2806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(87), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2849,19 +2816,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -2902,9 +2869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(89), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2912,19 +2879,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -2965,9 +2932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(91), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2975,19 +2942,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3028,9 +2995,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(93), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3038,19 +3005,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3091,9 +3058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(95), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3101,19 +3068,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3126,57 +3093,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(182), 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(207), 1, + 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(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3215,11 +3182,11 @@ 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(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3227,19 +3194,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3278,11 +3245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(101), 1, + ACTIONS(146), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3290,19 +3257,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3341,11 +3308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(103), 1, + ACTIONS(148), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3353,19 +3320,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3404,11 +3371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(105), 1, + ACTIONS(150), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3416,19 +3383,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3467,11 +3434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(107), 1, + ACTIONS(152), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3479,19 +3446,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3504,57 +3471,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [935] = 22, - ACTIONS(109), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(112), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(118), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(124), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(127), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(130), 1, - anon_sym_RBRACE, - ACTIONS(132), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(135), 1, + ACTIONS(21), 1, anon_sym_map, - ACTIONS(138), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(141), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(144), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(147), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(150), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(153), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + ACTIONS(154), 1, + anon_sym_RBRACE, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, - ACTIONS(115), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(121), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3595,9 +3562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(156), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3605,19 +3572,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3658,9 +3625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(158), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3668,19 +3635,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3721,9 +3688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(160), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3731,19 +3698,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3784,9 +3751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(162), 1, anon_sym_RBRACE, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3794,19 +3761,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3845,9 +3812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3858,16 +3825,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3906,9 +3873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3916,19 +3883,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(5), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -3967,9 +3934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3977,19 +3944,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(12), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4028,9 +3995,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4041,16 +4008,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(19), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4089,9 +4056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4099,19 +4066,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(15), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4150,9 +4117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4160,19 +4127,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(14), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4211,9 +4178,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4221,19 +4188,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4272,9 +4239,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4282,19 +4249,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(10), 2, + STATE(13), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4333,9 +4300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4343,19 +4310,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(13), 2, + STATE(11), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4394,9 +4361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4404,19 +4371,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(4), 2, + STATE(12), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4455,9 +4422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4465,19 +4432,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(16), 2, + STATE(8), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4516,9 +4483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4526,19 +4493,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(7), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4577,9 +4544,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4587,19 +4554,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(7), 2, + STATE(16), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4638,9 +4605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4648,19 +4615,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(5), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4699,9 +4666,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(182), 1, + STATE(184), 1, sym_expression, - STATE(207), 1, + STATE(208), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4709,19 +4676,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(14), 2, + STATE(18), 2, sym_statement, aux_sym_function_repeat2, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -4734,66 +4701,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2590] = 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(129), 1, - sym_expression, - STATE(185), 1, - sym_statement, - STATE(190), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(164), 1, sym_identifier, ACTIONS(166), 1, @@ -4820,11 +4727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(217), 1, - sym_expression, - STATE(230), 1, + STATE(208), 1, sym_yield, - STATE(246), 1, + STATE(271), 1, + sym_expression, + STATE(409), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -4832,16 +4739,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -4853,67 +4760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [2752] = 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(186), 1, - sym_statement, - STATE(190), 1, - sym_yield, - STATE(193), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [2833] = 21, + [2671] = 21, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -4942,9 +4789,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - STATE(42), 1, + STATE(58), 1, aux_sym_function_call_repeat1, - STATE(199), 1, + STATE(195), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -4952,16 +4799,136 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + 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, + [2752] = 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(211), 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, + [2833] = 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(211), 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, @@ -4974,54 +4941,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2914] = 21, - ACTIONS(204), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(220), 1, + ACTIONS(21), 1, anon_sym_map, - ACTIONS(222), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(224), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(226), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(228), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(87), 1, - sym_expression, - STATE(161), 1, - sym_yield, - STATE(167), 1, + STATE(178), 1, sym_statement, - ACTIONS(208), 2, + STATE(182), 1, + sym_yield, + STATE(194), 1, + sym_expression, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(160), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(152), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(159), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5034,54 +5001,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2995] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(180), 1, + ACTIONS(21), 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, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(190), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(192), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(207), 1, - sym_yield, - STATE(272), 1, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(204), 1, + anon_sym_GT, + STATE(52), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, sym_expression, - STATE(391), 1, - sym_statement, - ACTIONS(168), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5094,54 +5061,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3076] = 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(234), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(236), 1, - anon_sym_RBRACE, - ACTIONS(238), 1, + 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(240), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(27), 1, anon_sym_if, - STATE(55), 1, - aux_sym_match_repeat1, - STATE(285), 1, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(134), 1, sym_expression, - ACTIONS(168), 2, + STATE(177), 1, + sym_statement, + STATE(182), 1, + sym_yield, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5154,54 +5121,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3157] = 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, + ACTIONS(206), 1, sym_identifier, - ACTIONS(198), 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(200), 1, + ACTIONS(226), 1, anon_sym_insert, - ACTIONS(202), 1, + ACTIONS(228), 1, anon_sym_if, - ACTIONS(244), 1, - anon_sym_GT, - STATE(62), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(155), 1, + sym_yield, + 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(176), 2, + STATE(166), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(157), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(165), 11, sym__expression_kind, sym_value, sym_math, @@ -5214,246 +5181,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3238] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 1, - anon_sym_if, - ACTIONS(246), 1, - anon_sym_RBRACE, - STATE(55), 1, - aux_sym_match_repeat1, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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_yield, - STATE(272), 1, - sym_expression, - STATE(395), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [3400] = 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(248), 1, - anon_sym_GT, - STATE(51), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_table, - ACTIONS(220), 1, - anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(161), 1, - sym_yield, - STATE(184), 1, - sym_expression, - STATE(203), 1, - sym_statement, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(160), 2, - sym_while_loop, - sym_break_loop, - STATE(152), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(159), 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, @@ -5480,131 +5207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, + STATE(177), 1, + sym_statement, STATE(182), 1, - sym_expression, - STATE(207), 1, sym_yield, - STATE(219), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(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_yield, - STATE(272), 1, - sym_expression, - STATE(398), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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(185), 1, - sym_statement, - STATE(190), 1, - sym_yield, - STATE(193), 1, + STATE(194), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -5612,16 +5219,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -5633,975 +5240,15 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [3805] = 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(223), 1, - sym_expression, - STATE(230), 1, - sym_yield, - STATE(271), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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(250), 1, - anon_sym_GT, - STATE(62), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(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, - STATE(186), 1, - sym_statement, - STATE(190), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(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, - STATE(230), 1, - sym_yield, - STATE(231), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, + [3319] = 5, ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 1, - anon_sym_if, - ACTIONS(252), 1, - anon_sym_RBRACE, - STATE(55), 1, - aux_sym_match_repeat1, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(254), 1, - sym_identifier, - ACTIONS(257), 1, - anon_sym_LPAREN, - ACTIONS(263), 1, - sym_string, - ACTIONS(269), 1, - anon_sym_LBRACK, - ACTIONS(272), 1, - anon_sym_function, - ACTIONS(275), 1, - anon_sym_RBRACE, - ACTIONS(277), 1, - anon_sym_table, - ACTIONS(280), 1, - anon_sym_map, - ACTIONS(283), 1, - anon_sym_select, - ACTIONS(286), 1, - anon_sym_insert, - ACTIONS(289), 1, - anon_sym_if, - ACTIONS(292), 1, - anon_sym_while, - ACTIONS(295), 1, - anon_sym_loop, - ACTIONS(298), 1, - anon_sym_match, - STATE(55), 1, - aux_sym_match_repeat1, - STATE(285), 1, - sym_expression, - ACTIONS(260), 2, - sym_float, - sym_integer, - ACTIONS(266), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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_yield, - STATE(272), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_table, - ACTIONS(220), 1, - anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(87), 1, - sym_expression, - STATE(138), 1, - sym_statement, - STATE(161), 1, - sym_yield, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(160), 2, - sym_while_loop, - sym_break_loop, - STATE(152), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(159), 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(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_yield, - STATE(272), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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(301), 1, - anon_sym_GT, - STATE(62), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(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, - STATE(230), 1, - sym_yield, - STATE(236), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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(303), 1, - anon_sym_GT, - STATE(59), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(305), 1, - sym_identifier, - ACTIONS(308), 1, - anon_sym_LPAREN, - ACTIONS(314), 1, - sym_string, - ACTIONS(320), 1, - anon_sym_LBRACK, - ACTIONS(323), 1, - anon_sym_function, - ACTIONS(326), 1, - anon_sym_GT, - ACTIONS(328), 1, - anon_sym_table, - ACTIONS(331), 1, - anon_sym_map, - ACTIONS(334), 1, - anon_sym_select, - ACTIONS(337), 1, - anon_sym_insert, - ACTIONS(340), 1, - anon_sym_if, - ACTIONS(343), 1, - anon_sym_while, - ACTIONS(346), 1, - anon_sym_loop, - ACTIONS(349), 1, - anon_sym_match, - STATE(62), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, - sym_expression, - ACTIONS(311), 2, - sym_float, - sym_integer, - ACTIONS(317), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(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(223), 1, - sym_expression, - STATE(230), 1, - sym_yield, - STATE(246), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_table, - ACTIONS(220), 1, - anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(87), 1, - sym_expression, - STATE(153), 1, - sym_statement, - STATE(161), 1, - sym_yield, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(160), 2, - sym_while_loop, - sym_break_loop, - STATE(152), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(159), 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(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(223), 1, - sym_expression, - STATE(230), 1, - sym_yield, - STATE(231), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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] = 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), 14, + ACTIONS(236), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -6616,7 +5263,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, @@ -6637,67 +5284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [5150] = 21, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_table, - ACTIONS(220), 1, - anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(87), 1, - sym_expression, - STATE(156), 1, - sym_statement, - STATE(161), 1, - sym_yield, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(160), 2, - sym_while_loop, - sym_break_loop, - STATE(152), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(159), 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, + [3368] = 21, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -6724,11 +5311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(207), 1, + STATE(208), 1, sym_yield, - STATE(272), 1, + STATE(271), 1, sym_expression, - STATE(402), 1, + STATE(412), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -6736,16 +5323,1396 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + 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, + [3449] = 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(163), 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, + [3530] = 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(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(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, + [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, + 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(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(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, + [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, + 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(134), 1, + sym_expression, + STATE(178), 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(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, + [4826] = 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(211), 1, + sym_expression, + STATE(231), 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, + [4907] = 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(358), 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, + [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_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(255), 1, + sym_yield, + STATE(268), 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, + [5069] = 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(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(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, + [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, @@ -6776,17 +6743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(234), 1, + ACTIONS(246), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(250), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(254), 1, anon_sym_if, - STATE(54), 1, + STATE(64), 1, aux_sym_match_repeat1, - STATE(285), 1, + STATE(281), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -6794,16 +6761,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -6815,7 +6782,50 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [5390] = 20, + [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, @@ -6834,17 +6844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(234), 1, + ACTIONS(246), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(250), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(254), 1, anon_sym_if, - STATE(43), 1, + STATE(68), 1, aux_sym_match_repeat1, - STATE(285), 1, + STATE(281), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -6852,16 +6862,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -6873,15 +6883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [5468] = 5, - ACTIONS(362), 1, + [5516] = 5, + ACTIONS(366), 1, anon_sym_LT, - ACTIONS(364), 1, + ACTIONS(368), 1, anon_sym_EQ, - ACTIONS(366), 2, + ACTIONS(370), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(352), 14, + ACTIONS(236), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -6896,7 +6906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(354), 19, + ACTIONS(238), 19, sym_identifier, sym_float, sym_integer, @@ -6916,49 +6926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [5516] = 5, - STATE(76), 1, - sym_logic_operator, - STATE(78), 1, - sym_math_operator, - STATE(137), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 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, - 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, [5564] = 20, ACTIONS(166), 1, anon_sym_LPAREN, @@ -6978,17 +6945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(234), 1, + ACTIONS(246), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(250), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(254), 1, anon_sym_if, - STATE(41), 1, + STATE(47), 1, aux_sym_match_repeat1, - STATE(285), 1, + STATE(281), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -6996,16 +6963,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7018,62 +6985,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [5642] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_table, - ACTIONS(220), 1, - anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(123), 1, - sym_expression, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(160), 2, - sym_while_loop, - sym_break_loop, - STATE(152), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(159), 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(164), 1, sym_identifier, ACTIONS(166), 1, @@ -7100,7 +7011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(209), 1, + STATE(210), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7108,16 +7019,72 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + 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, @@ -7130,50 +7097,50 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [5792] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(220), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(89), 1, + 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(208), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(160), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(152), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(159), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7204,15 +7171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(234), 1, + ACTIONS(246), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(250), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(254), 1, anon_sym_if, - STATE(286), 1, + STATE(263), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7220,16 +7187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(296), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7242,50 +7209,50 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [5942] = 19, - ACTIONS(204), 1, + ACTIONS(164), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(220), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(222), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(224), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(226), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(228), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(83), 1, + STATE(207), 1, sym_expression, - ACTIONS(208), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(160), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(152), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(159), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7298,50 +7265,50 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [6017] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(220), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(72), 1, + 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(208), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(160), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(152), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(159), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7372,15 +7339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(234), 1, + ACTIONS(246), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(250), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(254), 1, anon_sym_if, - STATE(286), 1, + STATE(275), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7388,16 +7355,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(293), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -7410,1430 +7377,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [6167] = 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(208), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(76), 1, - sym_logic_operator, - STATE(78), 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), 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(374), 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, - [6370] = 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(187), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [6445] = 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(163), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_table, - ACTIONS(220), 1, - anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(145), 1, - sym_expression, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(160), 2, - sym_while_loop, - sym_break_loop, - STATE(152), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(159), 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] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(388), 1, - anon_sym_DASH_GT, - STATE(76), 1, - sym_logic_operator, - STATE(78), 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, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - 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, - [6650] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 1, - anon_sym_if, - STATE(286), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(288), 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, - [6725] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(76), 1, - sym_logic_operator, - STATE(78), 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(390), 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(392), 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, - [6778] = 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(214), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [6853] = 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(213), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [6928] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7003] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7078] = 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(181), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [7153] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7228] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7303] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7378] = 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(133), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [7453] = 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(200), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [7528] = 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(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [7603] = 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(176), 2, - sym_while_loop, - sym_break_loop, - STATE(188), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(175), 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, - [7678] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7753] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7828] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7903] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [7978] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 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(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [8053] = 19, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8868,16 +7411,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -8889,7 +7432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8128] = 19, + [6242] = 19, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8916,7 +7459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - STATE(197), 1, + STATE(196), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -8924,16 +7467,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -8945,7 +7488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8203] = 19, + [6317] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -8972,7 +7515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(215), 1, + STATE(217), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -8980,16 +7523,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9001,7 +7544,119 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8278] = 19, + [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, @@ -9036,16 +7691,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9057,7 +7712,119 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8353] = 19, + [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, @@ -9084,7 +7851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(124), 1, + STATE(135), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -9092,16 +7859,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -9113,9 +7880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8428] = 19, - ACTIONS(164), 1, - sym_identifier, + [6842] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -9128,19 +7893,21 @@ static const uint16_t ts_small_parse_table[] = { 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(218), 1, + 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, @@ -9148,16 +7915,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9169,7 +7936,175 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8503] = 19, + [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, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 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(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, + [7067] = 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(168), 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, + [7142] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -9196,6 +8131,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, + STATE(213), 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, + [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, @@ -9204,16 +8195,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9225,51 +8216,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8578] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, + [7292] = 19, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(220), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(116), 1, + 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(208), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(160), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(152), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(159), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9281,51 +8272,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8653] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, + [7367] = 19, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(178), 1, anon_sym_table, - ACTIONS(220), 1, + ACTIONS(180), 1, anon_sym_map, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(121), 1, + 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(208), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(160), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(152), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(159), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9337,48 +8328,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8728] = 4, - STATE(76), 1, - sym_logic_operator, - STATE(78), 1, - sym_math_operator, - ACTIONS(394), 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(396), 19, + [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, - 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, - [8773] = 19, + 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, @@ -9413,16 +8419,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -9434,7 +8440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8848] = 19, + [7592] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -9469,16 +8475,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -9490,7 +8496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8923] = 19, + [7667] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -9509,15 +8515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(234), 1, + ACTIONS(246), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(250), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(252), 1, anon_sym_insert, - ACTIONS(242), 1, + ACTIONS(254), 1, anon_sym_if, - STATE(280), 1, + STATE(279), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9525,16 +8531,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9546,7 +8552,202 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8998] = 19, + [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(124), 1, + sym_math_operator, + 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, + 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, @@ -9573,7 +8774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - STATE(195), 1, + STATE(199), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -9581,16 +8782,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(176), 2, + STATE(187), 2, sym_while_loop, sym_break_loop, - STATE(188), 5, + STATE(175), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(175), 11, + STATE(189), 11, sym__expression_kind, sym_value, sym_math, @@ -9602,21 +8803,773 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [9073] = 8, - ACTIONS(378), 1, + [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(76), 1, + STATE(123), 1, sym_logic_operator, - STATE(78), 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(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, + 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, + [8412] = 9, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(392), 1, + anon_sym_DASH_GT, + 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(388), 8, + 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(390), 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, + [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, + 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(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), 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, + [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(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, @@ -9647,77 +9600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9126] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 1, - anon_sym_if, - STATE(281), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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, - [9201] = 8, - ACTIONS(378), 1, + [9098] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(76), 1, + STATE(123), 1, sym_logic_operator, - STATE(78), 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, @@ -9748,93 +9645,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9254] = 5, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - STATE(146), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 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), 18, + [9151] = 19, + ACTIONS(206), 1, 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, - [9301] = 19, - ACTIONS(166), 1, + ACTIONS(208), 1, anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(212), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(216), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(218), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(220), 1, anon_sym_table, - ACTIONS(180), 1, + ACTIONS(222), 1, anon_sym_map, - ACTIONS(188), 1, + 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(190), 1, + ACTIONS(232), 1, anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, ACTIONS(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 1, - anon_sym_if, - STATE(258), 1, + anon_sym_match, + STATE(121), 1, sym_expression, - ACTIONS(168), 2, + ACTIONS(210), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(166), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(157), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + 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, + 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, @@ -9847,62 +9814,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [9376] = 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(234), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_insert, - ACTIONS(242), 1, - anon_sym_if, - STATE(260), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(241), 2, - sym_while_loop, - sym_break_loop, - STATE(229), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(257), 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(164), 1, sym_identifier, ACTIONS(166), 1, @@ -9929,7 +9840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(267), 1, + STATE(266), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9937,16 +9848,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(241), 2, + STATE(237), 2, sym_while_loop, sym_break_loop, - STATE(229), 5, + STATE(244), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(257), 11, + STATE(251), 11, sym__expression_kind, sym_value, sym_math, @@ -9958,187 +9869,66 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [9526] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(117), 1, - sym_logic_operator, - STATE(118), 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(402), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, + [9451] = 19, + ACTIONS(166), 1, anon_sym_LPAREN, + ACTIONS(170), 1, sym_string, + ACTIONS(174), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(404), 14, + 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, - 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, - [9578] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(406), 1, - anon_sym_DASH_GT, - STATE(117), 1, - sym_logic_operator, - STATE(118), 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, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - 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, - [9632] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(117), 1, - sym_logic_operator, - STATE(118), 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), 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(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, - [9684] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(117), 1, - sym_logic_operator, - STATE(118), 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(390), 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(392), 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, - [9736] = 3, - ACTIONS(412), 1, + 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(408), 15, + ACTIONS(406), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10154,7 +9944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(410), 19, + ACTIONS(408), 19, sym_identifier, sym_float, sym_integer, @@ -10174,50 +9964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9778] = 4, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(394), 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(396), 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, - [9822] = 3, - ACTIONS(418), 1, + [9568] = 3, + ACTIONS(416), 1, anon_sym_where, - ACTIONS(414), 15, + ACTIONS(412), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10233,7 +9983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(416), 19, + ACTIONS(414), 19, sym_identifier, sym_float, sym_integer, @@ -10253,14 +10003,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9864] = 4, - ACTIONS(420), 1, + [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, - STATE(135), 1, + 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(394), 14, + ACTIONS(418), 15, ts_builtin_sym_end, anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -10273,7 +10110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(396), 19, + ACTIONS(420), 19, sym_identifier, sym_float, sym_integer, @@ -10293,21 +10130,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9908] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - ACTIONS(380), 2, + [9756] = 4, + ACTIONS(422), 1, + anon_sym_DASH_GT, + STATE(133), 1, + aux_sym_yield_repeat1, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + 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, - 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, + anon_sym_PERCENT, + ACTIONS(388), 8, + 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(390), 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, + [9854] = 4, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + 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, + 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, @@ -10337,10 +10299,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9960] = 3, - STATE(135), 1, - aux_sym_yield_repeat1, - ACTIONS(423), 15, + [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, @@ -10350,13 +10328,7 @@ static const uint16_t ts_small_parse_table[] = { 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(425), 19, + ACTIONS(404), 14, sym_identifier, sym_float, sym_integer, @@ -10365,20 +10337,13 @@ 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, - [10002] = 3, - ACTIONS(431), 1, - anon_sym_else, + [10002] = 2, ACTIONS(427), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -10395,7 +10360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(429), 18, + ACTIONS(429), 19, sym_identifier, sym_float, sym_integer, @@ -10411,17 +10376,15 @@ 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, - [10043] = 4, - ACTIONS(433), 1, - anon_sym_DASH_GT, - STATE(139), 1, - aux_sym_yield_repeat1, - ACTIONS(394), 14, + [10041] = 2, + ACTIONS(431), 15, ts_builtin_sym_end, anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -10434,7 +10397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(396), 18, + ACTIONS(433), 19, sym_identifier, sym_float, sym_integer, @@ -10450,11 +10413,12 @@ 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, - [10086] = 2, - ACTIONS(436), 15, + [10080] = 2, + ACTIONS(435), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10470,7 +10434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(438), 19, + ACTIONS(437), 19, sym_identifier, sym_float, sym_integer, @@ -10490,8 +10454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10125] = 2, - ACTIONS(440), 15, + [10119] = 3, + ACTIONS(439), 1, + anon_sym_where, + ACTIONS(406), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10507,7 +10473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(442), 19, + ACTIONS(408), 18, sym_identifier, sym_float, sym_integer, @@ -10523,12 +10489,13 @@ 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, - [10164] = 2, - ACTIONS(444), 15, + [10160] = 3, + ACTIONS(441), 1, + anon_sym_where, + ACTIONS(412), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10544,7 +10511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(446), 19, + ACTIONS(414), 18, sym_identifier, sym_float, sym_integer, @@ -10560,12 +10527,13 @@ 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, - [10203] = 2, - ACTIONS(448), 15, + [10201] = 3, + ACTIONS(447), 1, + anon_sym_else, + ACTIONS(443), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10581,7 +10549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(450), 19, + ACTIONS(445), 18, sym_identifier, sym_float, sym_integer, @@ -10597,12 +10565,13 @@ 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, - [10242] = 2, - ACTIONS(452), 15, + [10242] = 3, + ACTIONS(449), 1, + anon_sym_else, + ACTIONS(443), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10618,7 +10587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(454), 19, + ACTIONS(445), 18, sym_identifier, sym_float, sym_integer, @@ -10634,20 +10603,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, - [10281] = 6, - ACTIONS(456), 1, + [10283] = 6, + ACTIONS(451), 1, anon_sym_DASH_GT, - STATE(76), 1, + STATE(123), 1, sym_logic_operator, - STATE(78), 1, + STATE(124), 1, sym_math_operator, - STATE(194), 1, + STATE(193), 1, aux_sym_yield_repeat1, - ACTIONS(368), 11, + ACTIONS(362), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -10659,7 +10627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(370), 19, + ACTIONS(364), 19, sym_identifier, sym_float, sym_integer, @@ -10679,10 +10647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10328] = 3, - STATE(139), 1, - aux_sym_yield_repeat1, - ACTIONS(423), 15, + [10330] = 2, + ACTIONS(453), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10698,7 +10664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(425), 18, + ACTIONS(455), 19, sym_identifier, sym_float, sym_integer, @@ -10714,11 +10680,12 @@ 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, [10369] = 2, - ACTIONS(458), 15, + ACTIONS(457), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10734,7 +10701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(460), 19, + ACTIONS(459), 19, sym_identifier, sym_float, sym_integer, @@ -10755,7 +10722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [10408] = 2, - ACTIONS(462), 15, + ACTIONS(461), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10771,7 +10738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(464), 19, + ACTIONS(463), 19, sym_identifier, sym_float, sym_integer, @@ -10791,8 +10758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10447] = 2, - ACTIONS(466), 15, + [10447] = 3, + STATE(152), 1, + aux_sym_yield_repeat1, + ACTIONS(418), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10808,7 +10777,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(468), 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, @@ -10828,8 +10833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10486] = 2, - ACTIONS(470), 15, + [10527] = 2, + ACTIONS(469), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10845,7 +10850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(472), 19, + ACTIONS(471), 19, sym_identifier, sym_float, sym_integer, @@ -10865,8 +10870,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10525] = 2, - ACTIONS(474), 15, + [10566] = 4, + ACTIONS(473), 1, + anon_sym_DASH_GT, + STATE(152), 1, + aux_sym_yield_repeat1, + 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, + 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, + [10609] = 10, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(476), 1, + anon_sym_DASH_GT, + 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, + 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, + 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, + [10664] = 2, + ACTIONS(435), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10882,7 +10971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(476), 19, + ACTIONS(437), 19, sym_identifier, sym_float, sym_integer, @@ -10902,7 +10991,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10564] = 2, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(390), 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, + [10742] = 2, ACTIONS(478), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -10939,7 +11065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10603] = 2, + [10781] = 2, ACTIONS(482), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -10976,7 +11102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10642] = 2, + [10820] = 2, ACTIONS(486), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -11013,7 +11139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10681] = 2, + [10859] = 2, ACTIONS(490), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -11050,10 +11176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10720] = 3, - ACTIONS(494), 1, - anon_sym_else, - ACTIONS(427), 15, + [10898] = 2, + ACTIONS(494), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11069,119 +11193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(429), 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, - [10761] = 3, - ACTIONS(496), 1, - anon_sym_where, - ACTIONS(414), 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(416), 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, - [10802] = 3, - ACTIONS(498), 1, - anon_sym_where, - ACTIONS(408), 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(410), 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, - [10843] = 2, - ACTIONS(500), 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(502), 19, + ACTIONS(496), 19, sym_identifier, sym_float, sym_integer, @@ -11201,8 +11213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10882] = 2, - ACTIONS(504), 15, + [10937] = 2, + ACTIONS(498), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11218,7 +11230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(506), 19, + ACTIONS(500), 19, sym_identifier, sym_float, sym_integer, @@ -11238,8 +11250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10921] = 2, - ACTIONS(384), 15, + [10976] = 2, + ACTIONS(502), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11255,7 +11267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 19, + ACTIONS(504), 19, sym_identifier, sym_float, sym_integer, @@ -11275,8 +11287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10960] = 2, - ACTIONS(436), 15, + [11015] = 2, + ACTIONS(506), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11292,7 +11304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(438), 19, + ACTIONS(508), 19, sym_identifier, sym_float, sym_integer, @@ -11312,51 +11324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10999] = 10, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(508), 1, - anon_sym_DASH_GT, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - STATE(205), 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, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(370), 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, [11054] = 2, ACTIONS(510), 15, ts_builtin_sym_end, @@ -11505,8 +11472,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11210] = 2, - ACTIONS(458), 15, + [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, @@ -11522,7 +11531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(460), 18, + ACTIONS(429), 18, sym_identifier, sym_float, sym_integer, @@ -11541,8 +11550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11248] = 2, - ACTIONS(518), 15, + [11298] = 2, + ACTIONS(431), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11558,7 +11567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(520), 18, + ACTIONS(433), 18, sym_identifier, sym_float, sym_integer, @@ -11577,554 +11586,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11286] = 5, - ACTIONS(362), 1, - anon_sym_LT, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(471), 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, + [11374] = 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), 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, + [11412] = 9, + ACTIONS(382), 1, + anon_sym_DASH, ACTIONS(526), 1, - anon_sym_EQ, - ACTIONS(528), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(352), 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(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, - [11330] = 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, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(492), 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, - [11368] = 2, - ACTIONS(462), 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(464), 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, - [11406] = 2, - ACTIONS(474), 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(476), 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, - [11444] = 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, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(488), 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, - [11482] = 2, - ACTIONS(500), 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(502), 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, - [11520] = 2, - ACTIONS(504), 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(506), 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, - [11558] = 2, - ACTIONS(470), 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(472), 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, - [11596] = 2, - ACTIONS(444), 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(446), 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, - [11634] = 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, - [11672] = 2, - ACTIONS(440), 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(442), 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, - [11710] = 8, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(117), 1, + STATE(123), 1, sym_logic_operator, - STATE(118), 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(394), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - 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, - [11760] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(530), 1, - anon_sym_DASH_GT, - STATE(117), 1, - sym_logic_operator, - STATE(118), 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), 6, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - 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, - [11812] = 2, - ACTIONS(466), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, + ACTIONS(388), 5, 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(468), 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, - [11850] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(532), 1, - anon_sym_DASH_GT, - STATE(76), 1, - sym_logic_operator, - STATE(78), 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), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(386), 15, + ACTIONS(390), 15, sym_identifier, sym_float, sym_integer, @@ -12140,7 +11701,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11902] = 2, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(463), 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, + [11502] = 2, ACTIONS(482), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -12176,8 +11773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11940] = 2, - ACTIONS(522), 15, + [11540] = 2, + ACTIONS(457), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12193,7 +11790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(524), 18, + ACTIONS(459), 18, sym_identifier, sym_float, sym_integer, @@ -12212,28 +11809,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11978] = 6, - ACTIONS(534), 1, + [11578] = 2, + ACTIONS(506), 15, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(117), 1, - sym_logic_operator, - STATE(118), 1, - sym_math_operator, - STATE(196), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 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(370), 18, + ACTIONS(508), 18, sym_identifier, sym_float, sym_integer, @@ -12252,7 +11845,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12024] = 2, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(488), 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, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(500), 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, + [11692] = 2, ACTIONS(478), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -12288,8 +11953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12062] = 2, - ACTIONS(448), 15, + [11730] = 2, + ACTIONS(510), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12305,7 +11970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(450), 18, + ACTIONS(512), 18, sym_identifier, sym_float, sym_integer, @@ -12324,8 +11989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12100] = 2, - ACTIONS(384), 15, + [11768] = 2, + ACTIONS(388), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12341,7 +12006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 18, + ACTIONS(390), 18, sym_identifier, sym_float, sym_integer, @@ -12360,8 +12025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12138] = 2, - ACTIONS(452), 15, + [11806] = 2, + ACTIONS(522), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12377,7 +12042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(454), 18, + ACTIONS(524), 18, sym_identifier, sym_float, sym_integer, @@ -12396,7 +12061,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12176] = 2, + [11844] = 9, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(528), 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, + anon_sym_PERCENT, + 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, + 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, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(496), 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, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(492), 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, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(520), 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, + [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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(504), 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, + [12048] = 2, ACTIONS(514), 15, ts_builtin_sym_end, anon_sym_POUND, @@ -12432,34 +12284,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12214] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(536), 1, + [12086] = 2, + ACTIONS(453), 15, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(117), 1, - sym_logic_operator, - STATE(118), 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), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, - ACTIONS(386), 14, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(455), 18, sym_identifier, sym_float, sym_integer, @@ -12468,18 +12310,65 @@ 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, - [12265] = 4, - ACTIONS(456), 1, + [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(135), 1, + STATE(113), 1, + sym_math_operator, + STATE(125), 1, + sym_logic_operator, + STATE(197), 1, aux_sym_yield_repeat1, - ACTIONS(423), 11, + ACTIONS(362), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -12491,7 +12380,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(425), 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, @@ -12511,32 +12436,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12306] = 8, - ACTIONS(378), 1, + [12255] = 9, + ACTIONS(382), 1, anon_sym_DASH, - STATE(99), 1, + ACTIONS(536), 1, + anon_sym_DASH_GT, + STATE(113), 1, sym_math_operator, - STATE(120), 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(390), 5, + ACTIONS(388), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, - ACTIONS(392), 14, + ACTIONS(390), 14, sym_identifier, sym_float, sym_integer, @@ -12551,12 +12478,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12354] = 4, + [12306] = 9, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(542), 1, + anon_sym_COMMA, + 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(540), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(538), 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, + [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(139), 1, + STATE(152), 1, aux_sym_yield_repeat1, - ACTIONS(423), 11, + ACTIONS(418), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -12568,7 +12576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(425), 18, + ACTIONS(420), 18, sym_identifier, sym_float, sym_integer, @@ -12587,32 +12595,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12394] = 8, - ACTIONS(378), 1, + [12444] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(99), 1, + STATE(92), 1, sym_math_operator, - STATE(120), 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(402), 5, + ACTIONS(394), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, - ACTIONS(404), 14, + ACTIONS(396), 14, sym_identifier, sym_float, sym_integer, @@ -12627,21 +12635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12442] = 8, - ACTIONS(378), 1, + [12492] = 8, + ACTIONS(382), 1, anon_sym_DASH, - STATE(99), 1, + STATE(92), 1, sym_math_operator, - STATE(120), 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, @@ -12667,73 +12675,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12490] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(542), 1, - anon_sym_COMMA, - STATE(99), 1, - sym_math_operator, - STATE(120), 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(540), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(538), 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, [12540] = 8, - ACTIONS(378), 1, + ACTIONS(382), 1, anon_sym_DASH, - STATE(99), 1, + STATE(92), 1, sym_math_operator, - STATE(120), 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(372), 5, + ACTIONS(402), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, - ACTIONS(374), 14, + ACTIONS(404), 14, sym_identifier, sym_float, sym_integer, @@ -12751,7 +12718,7 @@ static const uint16_t ts_small_parse_table[] = { [12588] = 3, ACTIONS(544), 1, anon_sym_where, - ACTIONS(408), 11, + ACTIONS(412), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -12763,7 +12730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(410), 18, + ACTIONS(414), 18, sym_identifier, sym_float, sym_integer, @@ -12784,8 +12751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, [12625] = 3, ACTIONS(546), 1, - anon_sym_where, - ACTIONS(414), 11, + anon_sym_else, + ACTIONS(443), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -12797,7 +12764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(416), 18, + ACTIONS(445), 18, sym_identifier, sym_float, sym_integer, @@ -12818,8 +12785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, [12662] = 3, ACTIONS(548), 1, - anon_sym_else, - ACTIONS(427), 11, + anon_sym_where, + ACTIONS(406), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, @@ -12831,7 +12798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(429), 18, + ACTIONS(408), 18, sym_identifier, sym_float, sym_integer, @@ -12851,18 +12818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12699] = 4, - ACTIONS(550), 1, + ACTIONS(476), 1, anon_sym_DASH_GT, - STATE(204), 1, + STATE(205), 1, aux_sym_yield_repeat1, - ACTIONS(394), 6, + ACTIONS(418), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(396), 14, + ACTIONS(420), 14, sym_identifier, sym_float, sym_integer, @@ -12878,18 +12845,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12730] = 4, - ACTIONS(508), 1, + ACTIONS(550), 1, anon_sym_DASH_GT, - STATE(204), 1, + STATE(205), 1, aux_sym_yield_repeat1, - ACTIONS(423), 6, + ACTIONS(372), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(425), 14, + ACTIONS(374), 14, sym_identifier, sym_float, sym_integer, @@ -12909,13 +12876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(555), 1, anon_sym_EQ, - ACTIONS(354), 2, + ACTIONS(238), 2, anon_sym_PLUS, anon_sym_DASH, 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, @@ -12931,39 +12898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12793] = 2, - ACTIONS(384), 6, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - 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, - [12818] = 5, - ACTIONS(370), 1, + [12793] = 5, + ACTIONS(364), 1, anon_sym_DASH, - STATE(109), 1, + STATE(83), 1, sym_math_operator, - STATE(110), 1, + STATE(87), 1, sym_logic_operator, - STATE(222), 1, + STATE(225), 1, aux_sym_yield_repeat1, - ACTIONS(368), 16, + ACTIONS(362), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12980,40 +12924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12849] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 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(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, - [12881] = 2, - ACTIONS(559), 5, + [12824] = 2, + ACTIONS(388), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - ACTIONS(561), 14, + anon_sym_RBRACE, + ACTIONS(390), 14, sym_identifier, sym_float, sym_integer, @@ -13028,7 +12947,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12905] = 2, + [12849] = 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(398), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12881] = 6, + ACTIONS(364), 1, + anon_sym_DASH, + ACTIONS(559), 1, + anon_sym_DASH_GT, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + 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, + 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, + [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, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13007] = 2, ACTIONS(563), 5, ts_builtin_sym_end, anon_sym_POUND, @@ -13050,115 +13098,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12929] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 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(390), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12961] = 6, - ACTIONS(370), 1, - anon_sym_DASH, - ACTIONS(567), 1, - anon_sym_DASH_GT, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, - sym_logic_operator, - STATE(227), 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, - [12993] = 4, - ACTIONS(396), 1, - anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, - sym_logic_operator, - ACTIONS(394), 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, - [13021] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 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, - [13053] = 2, - ACTIONS(569), 5, + [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, + 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, @@ -13174,86 +13193,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13077] = 7, - ACTIONS(378), 1, + [13142] = 4, + ACTIONS(374), 1, anon_sym_DASH, - ACTIONS(573), 1, + ACTIONS(575), 1, anon_sym_DASH_GT, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, - sym_logic_operator, - ACTIONS(376), 4, + STATE(219), 1, + aux_sym_yield_repeat1, + ACTIONS(372), 15, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, 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), 6, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13111] = 6, - ACTIONS(378), 1, + [13169] = 3, + ACTIONS(408), 1, anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 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(398), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13143] = 2, - ACTIONS(577), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(575), 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, - [13166] = 3, - ACTIONS(410), 1, - anon_sym_DASH, - ACTIONS(579), 1, + ACTIONS(578), 1, anon_sym_where, - ACTIONS(408), 16, + ACTIONS(406), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13270,35 +13238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13191] = 4, - ACTIONS(396), 1, + [13194] = 3, + ACTIONS(414), 1, anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_DASH_GT, - STATE(221), 1, - aux_sym_yield_repeat1, - ACTIONS(394), 15, - 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, - [13218] = 3, - ACTIONS(425), 1, - anon_sym_DASH, - STATE(221), 1, - aux_sym_yield_repeat1, - ACTIONS(423), 16, + ACTIONS(580), 1, + anon_sym_where, + ACTIONS(412), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13315,44 +13260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13243] = 7, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(584), 1, - anon_sym_DASH_GT, - STATE(109), 1, - sym_math_operator, - STATE(110), 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), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13276] = 5, + [13219] = 5, ACTIONS(553), 1, anon_sym_LT, - ACTIONS(586), 1, + ACTIONS(582), 1, anon_sym_EQ, - ACTIONS(354), 2, + ACTIONS(238), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(588), 2, + ACTIONS(584), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(352), 12, + ACTIONS(236), 12, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_STAR, @@ -13365,13 +13284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [13305] = 2, - ACTIONS(326), 4, + [13248] = 2, + ACTIONS(283), 4, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(590), 14, + ACTIONS(586), 14, sym_identifier, sym_float, sym_integer, @@ -13386,54 +13305,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13328] = 3, - ACTIONS(416), 1, + [13271] = 7, + ACTIONS(382), 1, anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_where, - ACTIONS(414), 16, + ACTIONS(588), 1, anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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, - [13353] = 4, - ACTIONS(425), 1, + [13304] = 3, + ACTIONS(420), 1, anon_sym_DASH, - ACTIONS(567), 1, - anon_sym_DASH_GT, - STATE(221), 1, + STATE(219), 1, aux_sym_yield_repeat1, - ACTIONS(423), 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, - [13379] = 2, - ACTIONS(512), 1, - anon_sym_DASH, - ACTIONS(510), 16, + ACTIONS(418), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13450,10 +13353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13401] = 2, - ACTIONS(480), 1, + [13329] = 2, + ACTIONS(455), 1, anon_sym_DASH, - ACTIONS(478), 16, + ACTIONS(453), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13470,10 +13373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13423] = 2, - ACTIONS(386), 1, + [13351] = 2, + ACTIONS(437), 1, anon_sym_DASH, - ACTIONS(384), 16, + ACTIONS(435), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13490,424 +13393,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13445] = 2, - ACTIONS(484), 1, - anon_sym_DASH, - ACTIONS(482), 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, - [13467] = 11, - ACTIONS(596), 1, + [13373] = 11, + ACTIONS(592), 1, sym_integer, - ACTIONS(600), 1, + ACTIONS(596), 1, anon_sym_LBRACK, + ACTIONS(598), 1, + anon_sym_RBRACK, + ACTIONS(600), 1, + anon_sym_function, ACTIONS(602), 1, - anon_sym_RBRACK, + anon_sym_table, ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, anon_sym_map, - STATE(243), 1, + STATE(240), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(299), 1, sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, anon_sym_true, anon_sym_false, - STATE(299), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [13507] = 2, - ACTIONS(472), 1, - anon_sym_DASH, - ACTIONS(470), 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, - [13529] = 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, - [13551] = 2, - ACTIONS(450), 1, - anon_sym_DASH, - ACTIONS(448), 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, - [13573] = 3, - ACTIONS(429), 1, - anon_sym_DASH, - ACTIONS(610), 1, - anon_sym_else, - ACTIONS(427), 15, - 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_EQ_GT, - [13597] = 2, - ACTIONS(446), 1, - anon_sym_DASH, - ACTIONS(444), 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, - [13619] = 11, - ACTIONS(596), 1, - sym_integer, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, - anon_sym_map, - ACTIONS(612), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13659] = 2, - ACTIONS(442), 1, - anon_sym_DASH, - ACTIONS(440), 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, - [13681] = 2, - ACTIONS(460), 1, - anon_sym_DASH, - ACTIONS(458), 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, - [13703] = 2, - ACTIONS(506), 1, - anon_sym_DASH, - ACTIONS(504), 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, - [13725] = 2, - ACTIONS(468), 1, - anon_sym_DASH, - ACTIONS(466), 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, - [13747] = 11, - ACTIONS(617), 1, - sym_integer, - ACTIONS(623), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(628), 1, - anon_sym_function, - ACTIONS(631), 1, - anon_sym_table, - ACTIONS(634), 1, - anon_sym_map, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(614), 2, - sym_float, - sym_string, - ACTIONS(620), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13787] = 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, - [13809] = 11, - ACTIONS(596), 1, - sym_integer, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, - anon_sym_map, - ACTIONS(637), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13849] = 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, - [13871] = 2, - ACTIONS(438), 1, - anon_sym_DASH, - ACTIONS(436), 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, - [13893] = 2, - ACTIONS(464), 1, - anon_sym_DASH, - ACTIONS(462), 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, - [13915] = 2, - ACTIONS(516), 1, - anon_sym_DASH, - ACTIONS(514), 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, - [13937] = 2, + [13413] = 2, ACTIONS(488), 1, anon_sym_DASH, ACTIONS(486), 16, @@ -13927,7 +13442,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13959] = 2, + [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(443), 15, + 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_EQ_GT, + [13481] = 2, + ACTIONS(433), 1, + anon_sym_DASH, + ACTIONS(431), 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, + [13503] = 2, + ACTIONS(508), 1, + anon_sym_DASH, + ACTIONS(506), 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, + [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, + 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(596), 1, + anon_sym_LBRACK, + 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_RBRACK, + ACTIONS(628), 1, + anon_sym_function, + ACTIONS(631), 1, + anon_sym_table, + ACTIONS(634), 1, + anon_sym_map, + STATE(240), 1, + aux_sym_list_repeat1, + STATE(299), 1, + sym_value, + ACTIONS(614), 2, + sym_float, + sym_string, + ACTIONS(620), 2, + anon_sym_true, + anon_sym_false, + STATE(286), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [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(637), 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, + [13817] = 2, + ACTIONS(484), 1, + anon_sym_DASH, + ACTIONS(482), 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, + [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(465), 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, + [13883] = 2, + ACTIONS(496), 1, + anon_sym_DASH, + ACTIONS(494), 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, + [13905] = 2, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(478), 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, + [13927] = 2, ACTIONS(492), 1, anon_sym_DASH, ACTIONS(490), 16, @@ -13947,10 +13879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13981] = 2, - ACTIONS(454), 1, + [13949] = 2, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(452), 16, + ACTIONS(469), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13967,108 +13899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14003] = 2, - ACTIONS(641), 3, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(639), 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, - [14025] = 2, - ACTIONS(645), 3, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(643), 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, - [14047] = 11, - ACTIONS(596), 1, - sym_integer, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, - anon_sym_map, - ACTIONS(647), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14087] = 11, - ACTIONS(596), 1, - sym_integer, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, - anon_sym_map, - ACTIONS(649), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14127] = 2, - ACTIONS(502), 1, + [13971] = 2, + ACTIONS(516), 1, anon_sym_DASH, - ACTIONS(500), 16, + ACTIONS(514), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -14085,282 +13919,429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14149] = 5, - STATE(125), 1, - sym_logic_operator, - STATE(126), 1, - sym_math_operator, - ACTIONS(390), 4, + [13993] = 2, + ACTIONS(504), 1, + anon_sym_DASH, + ACTIONS(502), 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, - [14176] = 5, - STATE(125), 1, - sym_logic_operator, - STATE(126), 1, - sym_math_operator, - ACTIONS(402), 4, + 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(418), 14, 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, - [14203] = 5, - STATE(125), 1, - sym_logic_operator, - STATE(126), 1, - sym_math_operator, - ACTIONS(372), 4, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [14041] = 2, + ACTIONS(463), 1, + anon_sym_DASH, + ACTIONS(461), 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, - [14230] = 10, - ACTIONS(596), 1, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [14063] = 2, + ACTIONS(390), 1, + anon_sym_DASH, + ACTIONS(388), 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, + [14085] = 11, + ACTIONS(592), 1, sym_integer, - ACTIONS(600), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(604), 1, + ACTIONS(600), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(602), 1, anon_sym_table, - ACTIONS(608), 1, + ACTIONS(604), 1, anon_sym_map, - STATE(245), 1, + ACTIONS(645), 1, + anon_sym_RBRACK, + STATE(240), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(299), 1, sym_value, - ACTIONS(594), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(598), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(299), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14267] = 10, - ACTIONS(596), 1, + [14125] = 10, + ACTIONS(592), 1, sym_integer, - ACTIONS(600), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(604), 1, + ACTIONS(600), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(602), 1, anon_sym_table, - ACTIONS(608), 1, + ACTIONS(604), 1, anon_sym_map, - STATE(238), 1, + STATE(228), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(299), 1, sym_value, - ACTIONS(594), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(598), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(299), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14304] = 5, - STATE(125), 1, + [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(126), 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, - [14331] = 10, - ACTIONS(596), 1, + [14226] = 10, + ACTIONS(592), 1, sym_integer, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, - anon_sym_map, - STATE(255), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14368] = 10, ACTIONS(596), 1, - sym_integer, - ACTIONS(600), 1, anon_sym_LBRACK, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_table, - ACTIONS(608), 1, - anon_sym_map, - STATE(232), 1, - aux_sym_list_repeat1, - STATE(294), 1, - sym_value, - ACTIONS(594), 2, - sym_float, - sym_string, - ACTIONS(598), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14405] = 10, - ACTIONS(596), 1, - sym_integer, ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(604), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(602), 1, anon_sym_table, - ACTIONS(608), 1, + ACTIONS(604), 1, anon_sym_map, STATE(256), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(299), 1, sym_value, - ACTIONS(594), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(598), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(299), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14442] = 8, - ACTIONS(368), 1, - anon_sym_RBRACE, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(651), 1, - anon_sym_DASH_GT, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, + [14263] = 5, + STATE(120), 1, sym_logic_operator, - STATE(333), 1, - aux_sym_yield_repeat1, - ACTIONS(376), 4, + STATE(127), 1, + sym_math_operator, + ACTIONS(402), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + 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, - [14474] = 9, - ACTIONS(655), 1, + [14290] = 10, + ACTIONS(592), 1, sym_integer, - ACTIONS(659), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(600), 1, anon_sym_function, - ACTIONS(663), 1, + ACTIONS(602), 1, anon_sym_table, - ACTIONS(665), 1, + ACTIONS(604), 1, anon_sym_map, - STATE(370), 1, + STATE(238), 1, + aux_sym_list_repeat1, + STATE(299), 1, sym_value, - ACTIONS(653), 2, + ACTIONS(590), 2, sym_float, sym_string, - ACTIONS(657), 2, + ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(354), 5, + STATE(286), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14508] = 2, + [14327] = 5, + STATE(120), 1, + sym_logic_operator, + 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_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, + 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_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, + 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, + anon_sym_then, + anon_sym_EQ_GT, + [14504] = 2, + ACTIONS(665), 1, + anon_sym_where, + ACTIONS(406), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + 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, + anon_sym_then, + anon_sym_EQ_GT, + [14524] = 2, ACTIONS(667), 1, anon_sym_where, - ACTIONS(414), 14, + ACTIONS(412), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, @@ -14375,334 +14356,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [14528] = 2, + [14544] = 7, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(388), 1, + anon_sym_RBRACE, ACTIONS(669), 1, - anon_sym_where, - ACTIONS(408), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_DASH_GT, + STATE(83), 1, + sym_math_operator, + STATE(87), 1, + sym_logic_operator, + ACTIONS(380), 4, 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, - anon_sym_then, - anon_sym_EQ_GT, - [14548] = 2, + [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_else, - ACTIONS(427), 14, - anon_sym_RPAREN, anon_sym_LBRACE, - 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, - anon_sym_then, - anon_sym_EQ_GT, - [14568] = 7, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(384), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_DASH_GT, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, + STATE(120), 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, - [14597] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(109), 1, + STATE(127), 1, sym_math_operator, - STATE(110), 1, - sym_logic_operator, - ACTIONS(394), 2, - anon_sym_DASH_GT, - anon_sym_RBRACE, - ACTIONS(376), 4, + 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, [14624] = 5, - ACTIONS(675), 1, + ACTIONS(673), 1, anon_sym_then, - STATE(125), 1, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14648] = 5, - ACTIONS(677), 1, + ACTIONS(675), 1, anon_sym_then, - STATE(125), 1, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14672] = 5, - ACTIONS(679), 1, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(125), 1, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14696] = 5, - ACTIONS(681), 1, - anon_sym_then, - STATE(125), 1, + ACTIONS(679), 1, + anon_sym_LBRACE, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14720] = 5, - ACTIONS(683), 1, - anon_sym_then, - STATE(125), 1, + ACTIONS(681), 1, + anon_sym_LBRACE, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14744] = 5, - ACTIONS(685), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(125), 1, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14768] = 5, - ACTIONS(687), 1, - anon_sym_LBRACE, - STATE(125), 1, + ACTIONS(685), 1, + anon_sym_then, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14792] = 5, - ACTIONS(689), 1, - anon_sym_LBRACE, - STATE(125), 1, + ACTIONS(687), 1, + anon_sym_EQ_GT, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14816] = 5, - ACTIONS(691), 1, + ACTIONS(689), 1, anon_sym_then, - STATE(125), 1, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14840] = 5, - ACTIONS(693), 1, - anon_sym_LBRACE, - STATE(125), 1, + ACTIONS(691), 1, + anon_sym_then, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, [14864] = 5, - ACTIONS(695), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - STATE(125), 1, + STATE(120), 1, sym_logic_operator, - STATE(126), 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, - [14888] = 5, - ACTIONS(697), 1, - anon_sym_EQ_GT, - STATE(125), 1, + [14888] = 4, + STATE(120), 1, sym_logic_operator, - STATE(126), 1, + STATE(127), 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, - [14912] = 4, - STATE(125), 1, - sym_logic_operator, - STATE(126), 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, + ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14933] = 2, - ACTIONS(464), 1, + [14909] = 2, + ACTIONS(484), 1, sym_integer, - ACTIONS(462), 10, + ACTIONS(482), 10, sym_float, sym_string, anon_sym_true, @@ -14713,10 +14658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14949] = 2, - ACTIONS(699), 1, + [14925] = 2, + ACTIONS(695), 1, anon_sym_RPAREN, - ACTIONS(500), 10, + ACTIONS(514), 10, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -14727,10 +14672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14965] = 2, - ACTIONS(460), 1, + [14941] = 2, + ACTIONS(459), 1, sym_integer, - ACTIONS(458), 10, + ACTIONS(457), 10, sym_float, sym_string, anon_sym_true, @@ -14741,10 +14686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14981] = 2, - ACTIONS(476), 1, + [14957] = 2, + ACTIONS(429), 1, sym_integer, - ACTIONS(474), 10, + ACTIONS(427), 10, sym_float, sym_string, anon_sym_true, @@ -14755,120 +14700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [14997] = 2, - ACTIONS(454), 1, - sym_integer, - ACTIONS(452), 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, - [15013] = 2, - ACTIONS(468), 1, - sym_integer, - ACTIONS(466), 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, - [15029] = 2, - ACTIONS(701), 1, - anon_sym_RPAREN, - ACTIONS(500), 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, - [15045] = 3, - ACTIONS(705), 1, - sym_integer, - ACTIONS(707), 1, - anon_sym_COMMA, - ACTIONS(703), 9, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [15063] = 2, - ACTIONS(488), 1, - sym_integer, - ACTIONS(486), 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, - [15079] = 2, - ACTIONS(709), 1, - anon_sym_RPAREN, - ACTIONS(500), 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, - [15095] = 2, - ACTIONS(450), 1, - sym_integer, - ACTIONS(448), 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, - [15111] = 2, - ACTIONS(512), 1, - sym_integer, - ACTIONS(510), 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, - [15127] = 2, + [14973] = 2, ACTIONS(480), 1, sym_integer, ACTIONS(478), 10, @@ -14882,10 +14714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [15143] = 2, - ACTIONS(438), 1, + [14989] = 2, + ACTIONS(455), 1, sym_integer, - ACTIONS(436), 10, + ACTIONS(453), 10, sym_float, sym_string, anon_sym_true, @@ -14896,10 +14728,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [15159] = 2, - ACTIONS(713), 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(711), 9, + ACTIONS(461), 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, + [15037] = 2, + ACTIONS(467), 1, + sym_integer, + ACTIONS(465), 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, + [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(435), 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, + [15085] = 2, + ACTIONS(433), 1, + sym_integer, + ACTIONS(431), 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, + [15101] = 2, + ACTIONS(471), 1, + sym_integer, + ACTIONS(469), 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, + [15117] = 3, + ACTIONS(703), 1, + sym_integer, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(701), 9, sym_float, sym_string, anon_sym_true, @@ -14909,643 +14841,656 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [15174] = 3, - ACTIONS(715), 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(718), 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(302), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15186] = 3, + [15162] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(720), 1, + ACTIONS(714), 1, anon_sym_RBRACE, - STATE(302), 2, + STATE(314), 2, sym_list, aux_sym_table_repeat1, - [15197] = 3, + [15173] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(722), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15208] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(724), 1, - anon_sym_RBRACE, - STATE(310), 2, - sym_list, - aux_sym_table_repeat1, - [15219] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_RBRACE, - STATE(311), 2, - sym_list, - aux_sym_table_repeat1, - [15230] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(728), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15241] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15252] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(732), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15263] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15274] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(736), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15285] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(738), 1, + ACTIONS(716), 1, anon_sym_RBRACE, STATE(309), 2, sym_list, aux_sym_table_repeat1, - [15296] = 3, + [15184] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_RBRACE, - STATE(303), 2, + ACTIONS(718), 1, + anon_sym_into, + STATE(301), 2, sym_list, aux_sym_table_repeat1, - [15307] = 3, + [15195] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(742), 1, + 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(301), 2, + sym_list, + aux_sym_table_repeat1, + [15239] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(728), 1, + anon_sym_RBRACE, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [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(301), 2, + sym_list, + aux_sym_table_repeat1, + [15272] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, anon_sym_RBRACE, STATE(308), 2, sym_list, aux_sym_table_repeat1, - [15318] = 3, + [15283] = 3, ACTIONS(15), 1, anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_RBRACE, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15294] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(738), 1, + anon_sym_RBRACE, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15305] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + 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, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15329] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(746), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15340] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(748), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15351] = 3, - ACTIONS(750), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_GT, + ACTIONS(747), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, + [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, - [15361] = 2, + [15357] = 2, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(317), 2, + STATE(310), 2, sym_list, aux_sym_table_repeat1, - [15369] = 2, + [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, + [15383] = 2, ACTIONS(15), 1, anon_sym_LBRACK, STATE(315), 2, sym_list, aux_sym_table_repeat1, - [15377] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(756), 1, - anon_sym_RBRACE, - STATE(323), 1, - aux_sym_map_repeat1, - [15387] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15397] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, - anon_sym_RBRACE, - STATE(352), 1, - aux_sym_map_repeat1, - [15407] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(762), 1, - anon_sym_RBRACE, - STATE(325), 1, - aux_sym_map_repeat1, - [15417] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_RBRACE, - STATE(352), 1, - aux_sym_map_repeat1, - [15427] = 3, - ACTIONS(750), 1, + [15391] = 3, + ACTIONS(749), 1, sym_identifier, ACTIONS(766), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, + [15401] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(768), 1, + anon_sym_RBRACE, + STATE(327), 1, + aux_sym_map_repeat1, + [15411] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_RBRACE, + STATE(324), 1, + aux_sym_map_repeat1, + [15421] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(772), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, + [15431] = 3, + 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, - [15437] = 3, - ACTIONS(750), 1, + [15451] = 3, + ACTIONS(753), 1, sym_identifier, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15447] = 2, - ACTIONS(772), 1, - anon_sym_COMMA, - ACTIONS(770), 2, - sym_identifier, - anon_sym_GT, - [15455] = 3, - ACTIONS(394), 1, - anon_sym_RBRACE, - ACTIONS(774), 1, - anon_sym_DASH_GT, STATE(329), 1, - aux_sym_yield_repeat1, - [15465] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(777), 1, - anon_sym_RBRACE, - STATE(341), 1, - aux_sym_map_repeat1, - [15475] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(307), 2, - sym_list, - aux_sym_table_repeat1, - [15483] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(779), 1, - anon_sym_GT, - STATE(335), 1, aux_sym_function_repeat1, - [15493] = 3, - ACTIONS(423), 1, + [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(651), 1, + ACTIONS(647), 1, anon_sym_DASH_GT, - STATE(329), 1, + STATE(336), 1, aux_sym_yield_repeat1, - [15503] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(781), 1, - anon_sym_GT, - STATE(327), 1, - aux_sym_function_repeat1, - [15513] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(783), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15523] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15533] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(787), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15543] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(789), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15553] = 3, - ACTIONS(750), 1, + [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_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15563] = 3, - ACTIONS(750), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_map_repeat1, + [15531] = 3, + ACTIONS(749), 1, sym_identifier, ACTIONS(793), 1, - anon_sym_GT, - STATE(339), 1, - aux_sym_function_repeat1, - [15573] = 3, - ACTIONS(754), 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(352), 1, + STATE(317), 1, aux_sym_map_repeat1, - [15583] = 2, + [15551] = 2, ACTIONS(15), 1, anon_sym_LBRACK, STATE(304), 2, sym_list, aux_sym_table_repeat1, - [15591] = 3, - ACTIONS(754), 1, + [15559] = 3, + ACTIONS(753), 1, sym_identifier, ACTIONS(797), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15569] = 3, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(799), 1, anon_sym_RBRACE, - STATE(352), 1, + STATE(339), 1, aux_sym_map_repeat1, - [15601] = 2, + [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, + [15607] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(805), 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(322), 1, + aux_sym_function_repeat1, + [15627] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(809), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15637] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(811), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15647] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(813), 1, + 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, - [15609] = 3, - ACTIONS(754), 1, + [15665] = 2, + ACTIONS(753), 1, sym_identifier, - ACTIONS(799), 1, - anon_sym_RBRACE, - STATE(343), 1, - aux_sym_map_repeat1, - [15619] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(801), 1, - anon_sym_RBRACE, - STATE(352), 1, - aux_sym_map_repeat1, - [15629] = 3, - ACTIONS(803), 1, - sym_identifier, - ACTIONS(806), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15639] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(808), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15649] = 3, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(810), 1, - anon_sym_RBRACE, STATE(346), 1, - aux_sym_map_repeat1, - [15659] = 3, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(812), 1, - anon_sym_GT, - STATE(347), 1, aux_sym_function_repeat1, - [15669] = 3, - ACTIONS(750), 1, + [15672] = 1, + ACTIONS(457), 2, sym_identifier, - ACTIONS(814), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15679] = 3, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(819), 1, anon_sym_RBRACE, - STATE(352), 1, - aux_sym_map_repeat1, + [15677] = 1, + ACTIONS(764), 2, + sym_identifier, + anon_sym_GT, + [15682] = 2, + ACTIONS(753), 1, + sym_identifier, + STATE(349), 1, + aux_sym_function_repeat1, [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, + [15715] = 2, ACTIONS(821), 1, anon_sym_LT, ACTIONS(823), 1, anon_sym_LBRACE, - [15696] = 1, + [15722] = 1, + ACTIONS(482), 2, + sym_identifier, + anon_sym_RBRACE, + [15727] = 1, ACTIONS(478), 2, sym_identifier, anon_sym_RBRACE, - [15701] = 2, + [15732] = 1, + ACTIONS(461), 2, + sym_identifier, + anon_sym_RBRACE, + [15737] = 1, + ACTIONS(469), 2, + sym_identifier, + anon_sym_RBRACE, + [15742] = 2, + ACTIONS(753), 1, + sym_identifier, + STATE(350), 1, + aux_sym_function_repeat1, + [15749] = 2, ACTIONS(825), 1, anon_sym_LT, ACTIONS(827), 1, anon_sym_LBRACE, - [15708] = 1, - ACTIONS(486), 2, + [15756] = 1, + ACTIONS(431), 2, sym_identifier, anon_sym_RBRACE, - [15713] = 1, - ACTIONS(436), 2, + [15761] = 1, + ACTIONS(465), 2, sym_identifier, anon_sym_RBRACE, - [15718] = 2, - ACTIONS(750), 1, - sym_identifier, - STATE(336), 1, - aux_sym_function_repeat1, - [15725] = 1, - ACTIONS(510), 2, - sym_identifier, - anon_sym_RBRACE, - [15730] = 1, - ACTIONS(462), 2, - sym_identifier, - anon_sym_RBRACE, - [15735] = 2, + [15766] = 2, ACTIONS(829), 1, anon_sym_LT, ACTIONS(831), 1, anon_sym_LBRACE, - [15742] = 1, - ACTIONS(474), 2, + [15773] = 1, + ACTIONS(435), 2, sym_identifier, anon_sym_RBRACE, - [15747] = 1, - ACTIONS(458), 2, - sym_identifier, - anon_sym_RBRACE, - [15752] = 1, - ACTIONS(466), 2, - sym_identifier, - anon_sym_RBRACE, - [15757] = 1, - ACTIONS(448), 2, - sym_identifier, - anon_sym_RBRACE, - [15762] = 1, - ACTIONS(452), 2, - sym_identifier, - anon_sym_RBRACE, - [15767] = 2, - ACTIONS(750), 1, - sym_identifier, - STATE(351), 1, - aux_sym_function_repeat1, - [15774] = 2, - ACTIONS(750), 1, - sym_identifier, - STATE(350), 1, - aux_sym_function_repeat1, - [15781] = 2, + [15778] = 2, ACTIONS(833), 1, anon_sym_LT, ACTIONS(835), 1, anon_sym_LBRACE, - [15788] = 1, - ACTIONS(837), 2, + [15785] = 1, + ACTIONS(453), 2, sym_identifier, anon_sym_RBRACE, - [15793] = 2, - ACTIONS(750), 1, + [15790] = 1, + ACTIONS(427), 2, sym_identifier, - STATE(348), 1, - aux_sym_function_repeat1, - [15800] = 2, + anon_sym_RBRACE, + [15795] = 1, + ACTIONS(837), 1, + anon_sym_LBRACE, + [15799] = 1, ACTIONS(839), 1, - anon_sym_LT, + sym_identifier, + [15803] = 1, ACTIONS(841), 1, anon_sym_LBRACE, - [15807] = 2, - ACTIONS(750), 1, - sym_identifier, - STATE(337), 1, - aux_sym_function_repeat1, - [15814] = 1, - ACTIONS(806), 2, - sym_identifier, - anon_sym_GT, - [15819] = 1, + [15807] = 1, ACTIONS(843), 1, - sym_identifier, - [15823] = 1, + anon_sym_LBRACE, + [15811] = 1, ACTIONS(845), 1, anon_sym_LBRACE, - [15827] = 1, + [15815] = 1, ACTIONS(847), 1, - anon_sym_from, - [15831] = 1, + anon_sym_LBRACE, + [15819] = 1, ACTIONS(849), 1, anon_sym_LBRACE, - [15835] = 1, + [15823] = 1, ACTIONS(851), 1, - anon_sym_from, - [15839] = 1, + anon_sym_LBRACE, + [15827] = 1, ACTIONS(853), 1, anon_sym_LBRACE, - [15843] = 1, + [15831] = 1, ACTIONS(855), 1, - anon_sym_LBRACE, - [15847] = 1, + sym_identifier, + [15835] = 1, ACTIONS(857), 1, ts_builtin_sym_end, - [15851] = 1, + [15839] = 1, ACTIONS(859), 1, anon_sym_LBRACE, - [15855] = 1, + [15843] = 1, ACTIONS(861), 1, - anon_sym_from, - [15859] = 1, - ACTIONS(863), 1, - anon_sym_EQ, - [15863] = 1, - ACTIONS(865), 1, anon_sym_LBRACE, - [15867] = 1, + [15847] = 1, + ACTIONS(863), 1, + anon_sym_LBRACE, + [15851] = 1, + ACTIONS(865), 1, + anon_sym_from, + [15855] = 1, ACTIONS(867), 1, anon_sym_LBRACE, - [15871] = 1, + [15859] = 1, ACTIONS(869), 1, sym_identifier, - [15875] = 1, + [15863] = 1, ACTIONS(871), 1, sym_identifier, - [15879] = 1, + [15867] = 1, ACTIONS(873), 1, - aux_sym_comment_token1, - [15883] = 1, + anon_sym_from, + [15871] = 1, ACTIONS(875), 1, - anon_sym_RBRACE, - [15887] = 1, + sym_identifier, + [15875] = 1, ACTIONS(877), 1, - anon_sym_LBRACE, - [15891] = 1, + sym_identifier, + [15879] = 1, ACTIONS(879), 1, - anon_sym_LBRACE, - [15895] = 1, + anon_sym_LT, + [15883] = 1, ACTIONS(881), 1, anon_sym_LBRACE, - [15899] = 1, + [15887] = 1, ACTIONS(883), 1, - anon_sym_RBRACE, - [15903] = 1, + anon_sym_LBRACE, + [15891] = 1, ACTIONS(885), 1, - anon_sym_LT, - [15907] = 1, + anon_sym_LBRACE, + [15895] = 1, ACTIONS(887), 1, - sym_identifier, - [15911] = 1, + anon_sym_LBRACE, + [15899] = 1, ACTIONS(889), 1, - anon_sym_RBRACE, - [15915] = 1, + aux_sym_comment_token1, + [15903] = 1, ACTIONS(891), 1, sym_identifier, - [15919] = 1, + [15907] = 1, ACTIONS(893), 1, sym_identifier, - [15923] = 1, + [15911] = 1, ACTIONS(895), 1, - anon_sym_LBRACE, - [15927] = 1, + anon_sym_EQ, + [15915] = 1, ACTIONS(897), 1, anon_sym_RBRACE, - [15931] = 1, + [15919] = 1, ACTIONS(899), 1, - anon_sym_LBRACE, - [15935] = 1, + anon_sym_RBRACE, + [15923] = 1, ACTIONS(901), 1, anon_sym_LBRACE, - [15939] = 1, + [15927] = 1, ACTIONS(903), 1, anon_sym_RBRACE, - [15943] = 1, + [15931] = 1, ACTIONS(905), 1, anon_sym_LBRACE, - [15947] = 1, + [15935] = 1, ACTIONS(907), 1, anon_sym_RBRACE, - [15951] = 1, + [15939] = 1, ACTIONS(909), 1, - sym_identifier, - [15955] = 1, - ACTIONS(911), 1, - anon_sym_LBRACE, - [15959] = 1, - ACTIONS(913), 1, - sym_identifier, - [15963] = 1, - ACTIONS(915), 1, anon_sym_LT, - [15967] = 1, + [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, - [15971] = 1, + [15959] = 1, ACTIONS(919), 1, anon_sym_LBRACE, - [15975] = 1, + [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(923), 1, - anon_sym_LBRACE, - [15983] = 1, - ACTIONS(925), 1, - sym_identifier, - [15987] = 1, - ACTIONS(927), 1, - sym_identifier, - [15991] = 1, ACTIONS(929), 1, sym_identifier, - [15995] = 1, + [15983] = 1, ACTIONS(931), 1, - anon_sym_from, - [15999] = 1, - ACTIONS(933), 1, anon_sym_LBRACE, - [16003] = 1, + [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(937), 1, - anon_sym_LBRACE, - [16011] = 1, - ACTIONS(939), 1, - anon_sym_LT, - [16015] = 1, - ACTIONS(941), 1, - anon_sym_LT, - [16019] = 1, ACTIONS(943), 1, - anon_sym_LT, - [16023] = 1, + anon_sym_from, + [16011] = 1, ACTIONS(945), 1, - sym_identifier, - [16027] = 1, + anon_sym_LBRACE, + [16015] = 1, ACTIONS(947), 1, sym_identifier, - [16031] = 1, + [16019] = 1, ACTIONS(949), 1, - anon_sym_from, - [16035] = 1, - ACTIONS(951), 1, - anon_sym_LBRACE, - [16039] = 1, - ACTIONS(953), 1, sym_identifier, - [16043] = 1, - ACTIONS(955), 1, - anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -15590,33 +15535,33 @@ 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(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)] = 5468, + [SMALL_STATE(71)] = 5438, [SMALL_STATE(72)] = 5516, [SMALL_STATE(73)] = 5564, [SMALL_STATE(74)] = 5642, @@ -15629,122 +15574,122 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(81)] = 6167, [SMALL_STATE(82)] = 6242, [SMALL_STATE(83)] = 6317, - [SMALL_STATE(84)] = 6370, - [SMALL_STATE(85)] = 6445, - [SMALL_STATE(86)] = 6520, - [SMALL_STATE(87)] = 6595, - [SMALL_STATE(88)] = 6650, - [SMALL_STATE(89)] = 6725, - [SMALL_STATE(90)] = 6778, - [SMALL_STATE(91)] = 6853, - [SMALL_STATE(92)] = 6928, - [SMALL_STATE(93)] = 7003, - [SMALL_STATE(94)] = 7078, - [SMALL_STATE(95)] = 7153, - [SMALL_STATE(96)] = 7228, - [SMALL_STATE(97)] = 7303, - [SMALL_STATE(98)] = 7378, - [SMALL_STATE(99)] = 7453, - [SMALL_STATE(100)] = 7528, - [SMALL_STATE(101)] = 7603, - [SMALL_STATE(102)] = 7678, - [SMALL_STATE(103)] = 7753, - [SMALL_STATE(104)] = 7828, - [SMALL_STATE(105)] = 7903, - [SMALL_STATE(106)] = 7978, - [SMALL_STATE(107)] = 8053, - [SMALL_STATE(108)] = 8128, - [SMALL_STATE(109)] = 8203, - [SMALL_STATE(110)] = 8278, - [SMALL_STATE(111)] = 8353, - [SMALL_STATE(112)] = 8428, - [SMALL_STATE(113)] = 8503, - [SMALL_STATE(114)] = 8578, - [SMALL_STATE(115)] = 8653, - [SMALL_STATE(116)] = 8728, - [SMALL_STATE(117)] = 8773, - [SMALL_STATE(118)] = 8848, - [SMALL_STATE(119)] = 8923, - [SMALL_STATE(120)] = 8998, - [SMALL_STATE(121)] = 9073, - [SMALL_STATE(122)] = 9126, - [SMALL_STATE(123)] = 9201, - [SMALL_STATE(124)] = 9254, + [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)] = 9578, - [SMALL_STATE(130)] = 9632, - [SMALL_STATE(131)] = 9684, - [SMALL_STATE(132)] = 9736, - [SMALL_STATE(133)] = 9778, - [SMALL_STATE(134)] = 9822, - [SMALL_STATE(135)] = 9864, - [SMALL_STATE(136)] = 9908, - [SMALL_STATE(137)] = 9960, + [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)] = 10043, - [SMALL_STATE(140)] = 10086, - [SMALL_STATE(141)] = 10125, - [SMALL_STATE(142)] = 10164, - [SMALL_STATE(143)] = 10203, + [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)] = 10281, - [SMALL_STATE(146)] = 10328, + [SMALL_STATE(145)] = 10283, + [SMALL_STATE(146)] = 10330, [SMALL_STATE(147)] = 10369, [SMALL_STATE(148)] = 10408, [SMALL_STATE(149)] = 10447, - [SMALL_STATE(150)] = 10486, - [SMALL_STATE(151)] = 10525, - [SMALL_STATE(152)] = 10564, - [SMALL_STATE(153)] = 10603, - [SMALL_STATE(154)] = 10642, - [SMALL_STATE(155)] = 10681, - [SMALL_STATE(156)] = 10720, - [SMALL_STATE(157)] = 10761, - [SMALL_STATE(158)] = 10802, - [SMALL_STATE(159)] = 10843, - [SMALL_STATE(160)] = 10882, - [SMALL_STATE(161)] = 10921, - [SMALL_STATE(162)] = 10960, - [SMALL_STATE(163)] = 10999, + [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)] = 11248, - [SMALL_STATE(170)] = 11286, - [SMALL_STATE(171)] = 11330, - [SMALL_STATE(172)] = 11368, - [SMALL_STATE(173)] = 11406, - [SMALL_STATE(174)] = 11444, - [SMALL_STATE(175)] = 11482, - [SMALL_STATE(176)] = 11520, - [SMALL_STATE(177)] = 11558, - [SMALL_STATE(178)] = 11596, - [SMALL_STATE(179)] = 11634, - [SMALL_STATE(180)] = 11672, - [SMALL_STATE(181)] = 11710, - [SMALL_STATE(182)] = 11760, - [SMALL_STATE(183)] = 11812, - [SMALL_STATE(184)] = 11850, - [SMALL_STATE(185)] = 11902, - [SMALL_STATE(186)] = 11940, - [SMALL_STATE(187)] = 11978, - [SMALL_STATE(188)] = 12024, - [SMALL_STATE(189)] = 12062, - [SMALL_STATE(190)] = 12100, - [SMALL_STATE(191)] = 12138, - [SMALL_STATE(192)] = 12176, + [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)] = 12265, + [SMALL_STATE(194)] = 12255, [SMALL_STATE(195)] = 12306, - [SMALL_STATE(196)] = 12354, - [SMALL_STATE(197)] = 12394, - [SMALL_STATE(198)] = 12442, - [SMALL_STATE(199)] = 12490, + [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, @@ -15753,72 +15698,72 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(205)] = 12730, [SMALL_STATE(206)] = 12761, [SMALL_STATE(207)] = 12793, - [SMALL_STATE(208)] = 12818, + [SMALL_STATE(208)] = 12824, [SMALL_STATE(209)] = 12849, [SMALL_STATE(210)] = 12881, - [SMALL_STATE(211)] = 12905, - [SMALL_STATE(212)] = 12929, - [SMALL_STATE(213)] = 12961, - [SMALL_STATE(214)] = 12993, - [SMALL_STATE(215)] = 13021, - [SMALL_STATE(216)] = 13053, - [SMALL_STATE(217)] = 13077, - [SMALL_STATE(218)] = 13111, - [SMALL_STATE(219)] = 13143, - [SMALL_STATE(220)] = 13166, - [SMALL_STATE(221)] = 13191, - [SMALL_STATE(222)] = 13218, - [SMALL_STATE(223)] = 13243, - [SMALL_STATE(224)] = 13276, - [SMALL_STATE(225)] = 13305, - [SMALL_STATE(226)] = 13328, - [SMALL_STATE(227)] = 13353, - [SMALL_STATE(228)] = 13379, - [SMALL_STATE(229)] = 13401, - [SMALL_STATE(230)] = 13423, - [SMALL_STATE(231)] = 13445, - [SMALL_STATE(232)] = 13467, - [SMALL_STATE(233)] = 13507, - [SMALL_STATE(234)] = 13529, - [SMALL_STATE(235)] = 13551, - [SMALL_STATE(236)] = 13573, - [SMALL_STATE(237)] = 13597, - [SMALL_STATE(238)] = 13619, - [SMALL_STATE(239)] = 13659, - [SMALL_STATE(240)] = 13681, - [SMALL_STATE(241)] = 13703, - [SMALL_STATE(242)] = 13725, - [SMALL_STATE(243)] = 13747, - [SMALL_STATE(244)] = 13787, - [SMALL_STATE(245)] = 13809, - [SMALL_STATE(246)] = 13849, - [SMALL_STATE(247)] = 13871, - [SMALL_STATE(248)] = 13893, - [SMALL_STATE(249)] = 13915, - [SMALL_STATE(250)] = 13937, - [SMALL_STATE(251)] = 13959, - [SMALL_STATE(252)] = 13981, - [SMALL_STATE(253)] = 14003, - [SMALL_STATE(254)] = 14025, - [SMALL_STATE(255)] = 14047, - [SMALL_STATE(256)] = 14087, - [SMALL_STATE(257)] = 14127, - [SMALL_STATE(258)] = 14149, - [SMALL_STATE(259)] = 14176, - [SMALL_STATE(260)] = 14203, - [SMALL_STATE(261)] = 14230, - [SMALL_STATE(262)] = 14267, - [SMALL_STATE(263)] = 14304, - [SMALL_STATE(264)] = 14331, - [SMALL_STATE(265)] = 14368, - [SMALL_STATE(266)] = 14405, - [SMALL_STATE(267)] = 14442, - [SMALL_STATE(268)] = 14474, - [SMALL_STATE(269)] = 14508, - [SMALL_STATE(270)] = 14528, - [SMALL_STATE(271)] = 14548, - [SMALL_STATE(272)] = 14568, - [SMALL_STATE(273)] = 14597, + [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, @@ -15831,596 +15776,592 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(283)] = 14840, [SMALL_STATE(284)] = 14864, [SMALL_STATE(285)] = 14888, - [SMALL_STATE(286)] = 14912, - [SMALL_STATE(287)] = 14933, - [SMALL_STATE(288)] = 14949, - [SMALL_STATE(289)] = 14965, - [SMALL_STATE(290)] = 14981, - [SMALL_STATE(291)] = 14997, - [SMALL_STATE(292)] = 15013, - [SMALL_STATE(293)] = 15029, - [SMALL_STATE(294)] = 15045, - [SMALL_STATE(295)] = 15063, - [SMALL_STATE(296)] = 15079, - [SMALL_STATE(297)] = 15095, - [SMALL_STATE(298)] = 15111, - [SMALL_STATE(299)] = 15127, - [SMALL_STATE(300)] = 15143, - [SMALL_STATE(301)] = 15159, - [SMALL_STATE(302)] = 15174, - [SMALL_STATE(303)] = 15186, - [SMALL_STATE(304)] = 15197, - [SMALL_STATE(305)] = 15208, - [SMALL_STATE(306)] = 15219, - [SMALL_STATE(307)] = 15230, - [SMALL_STATE(308)] = 15241, - [SMALL_STATE(309)] = 15252, - [SMALL_STATE(310)] = 15263, - [SMALL_STATE(311)] = 15274, - [SMALL_STATE(312)] = 15285, - [SMALL_STATE(313)] = 15296, - [SMALL_STATE(314)] = 15307, - [SMALL_STATE(315)] = 15318, - [SMALL_STATE(316)] = 15329, - [SMALL_STATE(317)] = 15340, - [SMALL_STATE(318)] = 15351, - [SMALL_STATE(319)] = 15361, - [SMALL_STATE(320)] = 15369, - [SMALL_STATE(321)] = 15377, - [SMALL_STATE(322)] = 15387, - [SMALL_STATE(323)] = 15397, - [SMALL_STATE(324)] = 15407, - [SMALL_STATE(325)] = 15417, - [SMALL_STATE(326)] = 15427, - [SMALL_STATE(327)] = 15437, - [SMALL_STATE(328)] = 15447, - [SMALL_STATE(329)] = 15455, - [SMALL_STATE(330)] = 15465, - [SMALL_STATE(331)] = 15475, - [SMALL_STATE(332)] = 15483, - [SMALL_STATE(333)] = 15493, - [SMALL_STATE(334)] = 15503, - [SMALL_STATE(335)] = 15513, - [SMALL_STATE(336)] = 15523, - [SMALL_STATE(337)] = 15533, - [SMALL_STATE(338)] = 15543, - [SMALL_STATE(339)] = 15553, - [SMALL_STATE(340)] = 15563, - [SMALL_STATE(341)] = 15573, - [SMALL_STATE(342)] = 15583, - [SMALL_STATE(343)] = 15591, - [SMALL_STATE(344)] = 15601, - [SMALL_STATE(345)] = 15609, - [SMALL_STATE(346)] = 15619, - [SMALL_STATE(347)] = 15629, - [SMALL_STATE(348)] = 15639, - [SMALL_STATE(349)] = 15649, - [SMALL_STATE(350)] = 15659, - [SMALL_STATE(351)] = 15669, - [SMALL_STATE(352)] = 15679, - [SMALL_STATE(353)] = 15689, - [SMALL_STATE(354)] = 15696, - [SMALL_STATE(355)] = 15701, - [SMALL_STATE(356)] = 15708, - [SMALL_STATE(357)] = 15713, - [SMALL_STATE(358)] = 15718, - [SMALL_STATE(359)] = 15725, - [SMALL_STATE(360)] = 15730, - [SMALL_STATE(361)] = 15735, - [SMALL_STATE(362)] = 15742, - [SMALL_STATE(363)] = 15747, - [SMALL_STATE(364)] = 15752, - [SMALL_STATE(365)] = 15757, - [SMALL_STATE(366)] = 15762, - [SMALL_STATE(367)] = 15767, - [SMALL_STATE(368)] = 15774, - [SMALL_STATE(369)] = 15781, - [SMALL_STATE(370)] = 15788, - [SMALL_STATE(371)] = 15793, - [SMALL_STATE(372)] = 15800, - [SMALL_STATE(373)] = 15807, - [SMALL_STATE(374)] = 15814, - [SMALL_STATE(375)] = 15819, - [SMALL_STATE(376)] = 15823, - [SMALL_STATE(377)] = 15827, - [SMALL_STATE(378)] = 15831, - [SMALL_STATE(379)] = 15835, - [SMALL_STATE(380)] = 15839, - [SMALL_STATE(381)] = 15843, - [SMALL_STATE(382)] = 15847, - [SMALL_STATE(383)] = 15851, - [SMALL_STATE(384)] = 15855, - [SMALL_STATE(385)] = 15859, - [SMALL_STATE(386)] = 15863, - [SMALL_STATE(387)] = 15867, - [SMALL_STATE(388)] = 15871, - [SMALL_STATE(389)] = 15875, - [SMALL_STATE(390)] = 15879, - [SMALL_STATE(391)] = 15883, - [SMALL_STATE(392)] = 15887, - [SMALL_STATE(393)] = 15891, - [SMALL_STATE(394)] = 15895, - [SMALL_STATE(395)] = 15899, - [SMALL_STATE(396)] = 15903, - [SMALL_STATE(397)] = 15907, - [SMALL_STATE(398)] = 15911, - [SMALL_STATE(399)] = 15915, - [SMALL_STATE(400)] = 15919, - [SMALL_STATE(401)] = 15923, - [SMALL_STATE(402)] = 15927, - [SMALL_STATE(403)] = 15931, - [SMALL_STATE(404)] = 15935, - [SMALL_STATE(405)] = 15939, - [SMALL_STATE(406)] = 15943, - [SMALL_STATE(407)] = 15947, - [SMALL_STATE(408)] = 15951, - [SMALL_STATE(409)] = 15955, - [SMALL_STATE(410)] = 15959, - [SMALL_STATE(411)] = 15963, - [SMALL_STATE(412)] = 15967, - [SMALL_STATE(413)] = 15971, - [SMALL_STATE(414)] = 15975, - [SMALL_STATE(415)] = 15979, - [SMALL_STATE(416)] = 15983, - [SMALL_STATE(417)] = 15987, - [SMALL_STATE(418)] = 15991, - [SMALL_STATE(419)] = 15995, - [SMALL_STATE(420)] = 15999, - [SMALL_STATE(421)] = 16003, - [SMALL_STATE(422)] = 16007, - [SMALL_STATE(423)] = 16011, - [SMALL_STATE(424)] = 16015, - [SMALL_STATE(425)] = 16019, - [SMALL_STATE(426)] = 16023, - [SMALL_STATE(427)] = 16027, - [SMALL_STATE(428)] = 16031, - [SMALL_STATE(429)] = 16035, - [SMALL_STATE(430)] = 16039, - [SMALL_STATE(431)] = 16043, + [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(71), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [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(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(71), - [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(390), - [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), - [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(188), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(188), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(174), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(261), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(372), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(396), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(393), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(375), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(342), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(106), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(105), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(387), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(102), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(71), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(80), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(188), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(188), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(174), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(261), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(372), - [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(396), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(393), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(375), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(342), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(106), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(105), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(387), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(102), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [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(363), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [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(170), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(224), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(77), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(229), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(229), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(250), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(262), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(361), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(411), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(386), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(416), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(331), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(92), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(122), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(404), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(97), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(170), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(80), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(188), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(188), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(174), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(261), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(372), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(396), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(393), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(430), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(319), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(82), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(105), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(387), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(102), - [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(38), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [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_math, 3), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(114), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4, .production_id = 7), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4, .production_id = 7), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(98), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 3), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 3), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 5), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 5), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6, .production_id = 9), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6, .production_id = 9), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [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(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, .production_id = 1), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4, .production_id = 1), + [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, .production_id = 2), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6, .production_id = 2), + [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 = true}}, SHIFT(225), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(94), + [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(36), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [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}}, SHIFT(90), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1, .production_id = 1), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1, .production_id = 1), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(90), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(299), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(299), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(295), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(266), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(355), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(423), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 4), SHIFT_REPEAT(380), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [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 = false}}, REDUCE(sym_math_operator, 1), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1, .production_id = 2), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1, .production_id = 2), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 2), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2, .production_id = 2), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(261), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(113), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(328), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, .production_id = 6), SHIFT_REPEAT(385), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, .production_id = 6), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [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(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(318), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3, .production_id = 8), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [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(26), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [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