From 63d495c1e1a705c3bc8feec36e89e6a6833c250c Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 1 Oct 2023 06:09:29 -0400 Subject: [PATCH] Fix tests for new grammar --- corpus/control_flow.txt | 16 +- corpus/functions.txt | 5 +- corpus/lists.txt | 34 +- corpus/maps.txt | 13 +- corpus/statements.txt | 33 +- corpus/tables.txt | 21 +- corpus/yield.txt | 71 + grammar.js | 13 +- src/grammar.json | 37 +- src/node-types.json | 6 +- src/parser.c | 20801 +++++++++++++++++++++----------------- 11 files changed, 11823 insertions(+), 9227 deletions(-) create mode 100644 corpus/yield.txt diff --git a/corpus/control_flow.txt b/corpus/control_flow.txt index 2e97e3a..c8cf7a2 100644 --- a/corpus/control_flow.txt +++ b/corpus/control_flow.txt @@ -34,13 +34,13 @@ x = if true then 1 (expression (assignment (identifier) - (expression - (control_flow - (expression - (value - (boolean))) - (statement + (statement + (expression + (control_flow (expression (value - (integer))))))))))) - + (boolean))) + (statement + (expression + (value + (integer)))))))))))) diff --git a/corpus/functions.txt b/corpus/functions.txt index 729b1b4..2dd7937 100644 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -32,8 +32,9 @@ foobar <"Hiya"> (expression (function_call (identifier) - (value - (string))))))) + (expression + (value + (string)))))))) ================== Complex Function diff --git a/corpus/lists.txt b/corpus/lists.txt index 1fc3152..6543db7 100644 --- a/corpus/lists.txt +++ b/corpus/lists.txt @@ -27,23 +27,24 @@ foobar = ['answer', 42] (root (item - (statement + (statement (expression (assignment (identifier) - (expression - (value - (list - (value - (string)) - (value - (integer)))))))))) + (statement + (expression + (value + (list + (value + (string)) + (value + (integer))))))))))) ================== List Nesting ================== -foobar = ['answers', [42, [666]]] +['answers', [42, [666]]] --- @@ -51,18 +52,15 @@ foobar = ['answers', [42, [666]]] (item (statement (expression - (assignment - (identifier) - (expression + (value + (list + (value + (string)) (value (list (value - (string)) + (integer)) (value (list (value - (integer)) - (value - (list - (value - (integer)))))))))))))) \ No newline at end of file + (integer)))))))))))) diff --git a/corpus/maps.txt b/corpus/maps.txt index 51b3616..1cddf87 100644 --- a/corpus/maps.txt +++ b/corpus/maps.txt @@ -33,13 +33,14 @@ x = map { (statement (expression (assignment - (identifier) - (expression - (value - (map - (identifier) + (identifier) + (statement + (expression (value - (integer)))))))))) + (map + (identifier) + (value + (integer))))))))))) ================== Map Access diff --git a/corpus/statements.txt b/corpus/statements.txt index fcc7006..dddd66d 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -39,17 +39,19 @@ y = "one" (expression (assignment (identifier) - (expression - (value - (integer))))))) + (statement + (expression + (value + (integer)))))))) (item (statement (expression (assignment (identifier) - (expression - (value - (string)))))))) + (statement + (expression + (value + (string))))))))) ================== Complex Assignment @@ -65,12 +67,13 @@ x = 1 + 1 (expression (assignment (identifier) - (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer)))))))))) \ No newline at end of file + (statement + (expression + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))))))))) diff --git a/corpus/tables.txt b/corpus/tables.txt index 41b3eaa..21b29d1 100644 --- a/corpus/tables.txt +++ b/corpus/tables.txt @@ -38,16 +38,17 @@ foobar = table { (expression (assignment (identifier) - (expression - (value - (table - (identifier) - (identifier) - (list - (value - (string)) - (value - (integer))))))))))) + (statement + (expression + (value + (table + (identifier) + (identifier) + (list + (value + (string)) + (value + (integer)))))))))))) ================== Table Access diff --git a/corpus/yield.txt b/corpus/yield.txt new file mode 100644 index 0000000..2bf878a --- /dev/null +++ b/corpus/yield.txt @@ -0,0 +1,71 @@ +================== +Simple Yield +================== + +1 -> output + +--- + +(root + (item + (statement + (yield + (expression + (value + (integer))) + (expression + (identifier)))))) + +================== +Complex Yield +================== + +1 + 1 -> to_string -> output + +--- + +(root + (item + (statement + (yield + (expression + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))) + (expression + (identifier)) + (expression + (identifier)))))) + +================== +Yield Assignment +================== + +x = 1 + 1 -> to_string + +--- + +(root + (item + (statement + (expression + (assignment + (identifier) + (statement + (yield + (expression + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))) + (expression + (identifier))))))))) diff --git a/grammar.js b/grammar.js index 4b92168..28fc0e9 100644 --- a/grammar.js +++ b/grammar.js @@ -18,7 +18,14 @@ module.exports = grammar({ $.yield, )), - yield: $ => prec.left(seq($.statement, '->', $.statement)), + yield: $ => prec.left( + seq( + $.expression, + '->', + $.expression, + repeat(prec.left(seq('->', $.expression))) + ) + ), expression: $ => choice( $._expression_kind, @@ -157,9 +164,7 @@ module.exports = grammar({ function_call: $ => prec.right(seq( $.identifier, '<', - repeat( - choice($.identifier, $.value), - ), + repeat($.expression), '>', )), diff --git a/src/grammar.json b/src/grammar.json index aa783c6..dfee1cc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -63,7 +63,7 @@ "members": [ { "type": "SYMBOL", - "name": "statement" + "name": "expression" }, { "type": "STRING", @@ -71,7 +71,27 @@ }, { "type": "SYMBOL", - "name": "statement" + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } } ] } @@ -713,17 +733,8 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "value" - } - ] + "type": "SYMBOL", + "name": "expression" } }, { diff --git a/src/node-types.json b/src/node-types.json index 31e5b08..b99ac5c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -145,11 +145,11 @@ "required": true, "types": [ { - "type": "identifier", + "type": "expression", "named": true }, { - "type": "value", + "type": "identifier", "named": true } ] @@ -460,7 +460,7 @@ "required": true, "types": [ { - "type": "statement", + "type": "expression", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 7851341..7ad1698 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 382 +#define STATE_COUNT 430 #define LARGE_STATE_COUNT 4 -#define SYMBOL_COUNT 81 +#define SYMBOL_COUNT 82 #define ALIAS_COUNT 0 #define TOKEN_COUNT 47 #define EXTERNAL_TOKEN_COUNT 0 @@ -90,13 +90,14 @@ enum { sym_break_loop = 71, sym_match = 72, aux_sym_root_repeat1 = 73, - aux_sym_list_repeat1 = 74, - aux_sym_function_repeat1 = 75, - aux_sym_function_repeat2 = 76, - aux_sym_table_repeat1 = 77, - aux_sym_map_repeat1 = 78, - aux_sym_function_call_repeat1 = 79, - aux_sym_match_repeat1 = 80, + aux_sym_yield_repeat1 = 74, + aux_sym_list_repeat1 = 75, + aux_sym_function_repeat1 = 76, + aux_sym_function_repeat2 = 77, + aux_sym_table_repeat1 = 78, + aux_sym_map_repeat1 = 79, + aux_sym_function_call_repeat1 = 80, + aux_sym_match_repeat1 = 81, }; static const char * const ts_symbol_names[] = { @@ -174,6 +175,7 @@ static const char * const ts_symbol_names[] = { [sym_break_loop] = "break_loop", [sym_match] = "match", [aux_sym_root_repeat1] = "root_repeat1", + [aux_sym_yield_repeat1] = "yield_repeat1", [aux_sym_list_repeat1] = "list_repeat1", [aux_sym_function_repeat1] = "function_repeat1", [aux_sym_function_repeat2] = "function_repeat2", @@ -258,6 +260,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_break_loop] = sym_break_loop, [sym_match] = sym_match, [aux_sym_root_repeat1] = aux_sym_root_repeat1, + [aux_sym_yield_repeat1] = aux_sym_yield_repeat1, [aux_sym_list_repeat1] = aux_sym_list_repeat1, [aux_sym_function_repeat1] = aux_sym_function_repeat1, [aux_sym_function_repeat2] = aux_sym_function_repeat2, @@ -564,6 +567,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_yield_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_list_repeat1] = { .visible = false, .named = false, @@ -608,383 +615,431 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 5, - [6] = 6, - [7] = 6, - [8] = 4, + [5] = 4, + [6] = 4, + [7] = 4, + [8] = 8, [9] = 9, - [10] = 6, - [11] = 6, - [12] = 9, - [13] = 6, + [10] = 8, + [11] = 11, + [12] = 4, + [13] = 9, [14] = 9, - [15] = 4, - [16] = 4, - [17] = 6, - [18] = 9, - [19] = 4, - [20] = 4, - [21] = 9, - [22] = 9, - [23] = 23, + [15] = 8, + [16] = 9, + [17] = 9, + [18] = 8, + [19] = 8, + [20] = 20, + [21] = 21, + [22] = 20, + [23] = 21, [24] = 24, - [25] = 25, - [26] = 25, - [27] = 23, - [28] = 24, + [25] = 21, + [26] = 24, + [27] = 20, + [28] = 21, [29] = 24, - [30] = 24, - [31] = 25, - [32] = 24, - [33] = 23, - [34] = 23, - [35] = 25, - [36] = 23, - [37] = 25, - [38] = 25, - [39] = 24, - [40] = 23, - [41] = 41, - [42] = 42, - [43] = 43, - [44] = 41, - [45] = 42, + [30] = 21, + [31] = 20, + [32] = 20, + [33] = 24, + [34] = 24, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 36, + [40] = 40, + [41] = 36, + [42] = 38, + [43] = 37, + [44] = 36, + [45] = 36, [46] = 46, - [47] = 41, - [48] = 48, - [49] = 48, - [50] = 43, + [47] = 38, + [48] = 38, + [49] = 38, + [50] = 40, [51] = 51, - [52] = 52, - [53] = 41, + [52] = 46, + [53] = 35, [54] = 54, - [55] = 55, - [56] = 51, + [55] = 40, + [56] = 56, [57] = 51, - [58] = 43, - [59] = 46, - [60] = 41, - [61] = 48, + [58] = 35, + [59] = 37, + [60] = 46, + [61] = 37, [62] = 54, - [63] = 46, - [64] = 54, - [65] = 42, - [66] = 66, - [67] = 66, - [68] = 66, - [69] = 69, - [70] = 69, + [63] = 63, + [64] = 64, + [65] = 54, + [66] = 37, + [67] = 51, + [68] = 68, + [69] = 68, + [70] = 68, [71] = 71, [72] = 72, [73] = 73, - [74] = 71, + [74] = 74, [75] = 75, - [76] = 73, - [77] = 75, - [78] = 71, - [79] = 79, - [80] = 79, - [81] = 73, - [82] = 82, - [83] = 75, - [84] = 72, - [85] = 79, - [86] = 72, - [87] = 87, - [88] = 69, - [89] = 87, - [90] = 90, - [91] = 90, - [92] = 87, - [93] = 90, - [94] = 82, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 98, - [101] = 96, - [102] = 95, - [103] = 103, - [104] = 97, - [105] = 99, + [76] = 76, + [77] = 77, + [78] = 76, + [79] = 74, + [80] = 75, + [81] = 72, + [82] = 77, + [83] = 83, + [84] = 84, + [85] = 73, + [86] = 76, + [87] = 77, + [88] = 76, + [89] = 89, + [90] = 84, + [91] = 77, + [92] = 77, + [93] = 89, + [94] = 89, + [95] = 75, + [96] = 84, + [97] = 77, + [98] = 73, + [99] = 84, + [100] = 73, + [101] = 83, + [102] = 83, + [103] = 89, + [104] = 73, + [105] = 75, [106] = 106, - [107] = 103, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 108, - [118] = 118, - [119] = 106, - [120] = 120, + [107] = 74, + [108] = 71, + [109] = 106, + [110] = 72, + [111] = 84, + [112] = 89, + [113] = 106, + [114] = 83, + [115] = 77, + [116] = 83, + [117] = 75, + [118] = 76, + [119] = 119, + [120] = 77, [121] = 121, [122] = 122, [123] = 123, [124] = 124, [125] = 125, [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, + [127] = 119, + [128] = 121, + [129] = 125, [130] = 130, [131] = 131, - [132] = 109, - [133] = 133, - [134] = 115, - [135] = 131, - [136] = 111, - [137] = 110, - [138] = 116, - [139] = 124, - [140] = 122, - [141] = 113, - [142] = 128, - [143] = 123, - [144] = 126, - [145] = 129, - [146] = 130, - [147] = 112, - [148] = 114, - [149] = 121, - [150] = 120, - [151] = 118, - [152] = 125, - [153] = 127, - [154] = 133, - [155] = 82, - [156] = 121, - [157] = 122, + [132] = 132, + [133] = 119, + [134] = 123, + [135] = 122, + [136] = 136, + [137] = 126, + [138] = 124, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 132, + [146] = 146, + [147] = 147, + [148] = 126, + [149] = 124, + [150] = 119, + [151] = 131, + [152] = 147, + [153] = 136, + [154] = 154, + [155] = 130, + [156] = 156, + [157] = 157, [158] = 158, - [159] = 98, + [159] = 159, [160] = 160, [161] = 161, - [162] = 99, - [163] = 96, - [164] = 95, - [165] = 97, - [166] = 166, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 160, [167] = 167, [168] = 168, [169] = 169, - [170] = 169, - [171] = 168, + [170] = 167, + [171] = 158, [172] = 169, - [173] = 168, - [174] = 174, - [175] = 103, - [176] = 106, - [177] = 129, - [178] = 178, - [179] = 124, - [180] = 113, - [181] = 112, - [182] = 182, - [183] = 182, - [184] = 109, - [185] = 126, - [186] = 123, - [187] = 182, - [188] = 182, - [189] = 189, - [190] = 190, - [191] = 111, - [192] = 125, - [193] = 182, - [194] = 120, - [195] = 182, - [196] = 118, - [197] = 133, - [198] = 131, - [199] = 130, - [200] = 128, - [201] = 108, - [202] = 121, - [203] = 110, - [204] = 114, - [205] = 116, - [206] = 115, - [207] = 127, - [208] = 122, - [209] = 209, - [210] = 209, - [211] = 209, - [212] = 209, - [213] = 209, - [214] = 209, - [215] = 215, - [216] = 216, + [173] = 162, + [174] = 161, + [175] = 124, + [176] = 140, + [177] = 168, + [178] = 159, + [179] = 139, + [180] = 154, + [181] = 157, + [182] = 119, + [183] = 165, + [184] = 71, + [185] = 164, + [186] = 144, + [187] = 163, + [188] = 143, + [189] = 141, + [190] = 156, + [191] = 142, + [192] = 146, + [193] = 132, + [194] = 124, + [195] = 195, + [196] = 132, + [197] = 123, + [198] = 125, + [199] = 121, + [200] = 122, + [201] = 147, + [202] = 130, + [203] = 136, + [204] = 131, + [205] = 132, + [206] = 71, + [207] = 119, + [208] = 159, + [209] = 124, + [210] = 210, + [211] = 119, + [212] = 126, + [213] = 125, + [214] = 123, + [215] = 122, + [216] = 121, [217] = 217, - [218] = 217, - [219] = 216, - [220] = 220, - [221] = 217, - [222] = 220, - [223] = 216, - [224] = 220, + [218] = 136, + [219] = 130, + [220] = 124, + [221] = 131, + [222] = 222, + [223] = 132, + [224] = 71, [225] = 225, - [226] = 226, - [227] = 118, - [228] = 108, - [229] = 118, - [230] = 114, - [231] = 120, - [232] = 116, - [233] = 110, - [234] = 116, - [235] = 111, - [236] = 120, - [237] = 113, - [238] = 112, - [239] = 108, - [240] = 113, - [241] = 110, - [242] = 115, + [226] = 164, + [227] = 157, + [228] = 161, + [229] = 141, + [230] = 168, + [231] = 154, + [232] = 162, + [233] = 169, + [234] = 160, + [235] = 225, + [236] = 139, + [237] = 146, + [238] = 225, + [239] = 147, + [240] = 142, + [241] = 159, + [242] = 242, [243] = 243, - [244] = 111, - [245] = 245, - [246] = 243, - [247] = 112, - [248] = 115, - [249] = 114, - [250] = 243, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 254, - [256] = 254, - [257] = 257, - [258] = 254, - [259] = 257, - [260] = 253, - [261] = 257, - [262] = 253, - [263] = 254, - [264] = 254, - [265] = 253, - [266] = 253, - [267] = 253, - [268] = 268, + [244] = 225, + [245] = 225, + [246] = 246, + [247] = 158, + [248] = 140, + [249] = 144, + [250] = 143, + [251] = 167, + [252] = 156, + [253] = 165, + [254] = 132, + [255] = 163, + [256] = 256, + [257] = 256, + [258] = 121, + [259] = 256, + [260] = 123, + [261] = 125, + [262] = 256, + [263] = 122, + [264] = 256, + [265] = 119, + [266] = 147, + [267] = 136, + [268] = 130, [269] = 269, - [270] = 270, - [271] = 270, + [270] = 124, + [271] = 126, [272] = 272, [273] = 273, - [274] = 268, - [275] = 270, + [274] = 274, + [275] = 272, [276] = 273, - [277] = 272, - [278] = 278, + [277] = 277, + [278] = 272, [279] = 273, - [280] = 272, + [280] = 274, [281] = 272, - [282] = 270, - [283] = 268, + [282] = 272, + [283] = 274, [284] = 284, - [285] = 268, - [286] = 273, - [287] = 268, - [288] = 269, - [289] = 269, - [290] = 269, - [291] = 284, - [292] = 269, - [293] = 268, - [294] = 270, - [295] = 284, - [296] = 272, - [297] = 297, - [298] = 273, - [299] = 273, - [300] = 270, - [301] = 269, - [302] = 272, - [303] = 303, - [304] = 111, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 306, - [310] = 310, - [311] = 307, - [312] = 120, - [313] = 308, - [314] = 306, - [315] = 307, - [316] = 306, - [317] = 305, - [318] = 306, + [285] = 167, + [286] = 161, + [287] = 287, + [288] = 141, + [289] = 287, + [290] = 290, + [291] = 287, + [292] = 146, + [293] = 156, + [294] = 160, + [295] = 169, + [296] = 162, + [297] = 154, + [298] = 139, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 302, + [304] = 304, + [305] = 301, + [306] = 302, + [307] = 302, + [308] = 304, + [309] = 301, + [310] = 302, + [311] = 304, + [312] = 301, + [313] = 304, + [314] = 304, + [315] = 301, + [316] = 316, + [317] = 317, + [318] = 318, [319] = 319, - [320] = 110, - [321] = 112, - [322] = 305, - [323] = 113, - [324] = 305, - [325] = 305, - [326] = 114, - [327] = 305, - [328] = 115, - [329] = 308, - [330] = 118, - [331] = 306, - [332] = 108, - [333] = 116, - [334] = 334, - [335] = 335, - [336] = 336, + [320] = 320, + [321] = 316, + [322] = 322, + [323] = 320, + [324] = 322, + [325] = 320, + [326] = 317, + [327] = 317, + [328] = 131, + [329] = 322, + [330] = 330, + [331] = 318, + [332] = 316, + [333] = 333, + [334] = 322, + [335] = 322, + [336] = 320, [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 339, - [342] = 336, - [343] = 339, + [338] = 316, + [339] = 337, + [340] = 317, + [341] = 316, + [342] = 318, + [343] = 132, [344] = 337, - [345] = 335, - [346] = 334, - [347] = 347, - [348] = 337, - [349] = 338, - [350] = 334, + [345] = 337, + [346] = 320, + [347] = 317, + [348] = 318, + [349] = 337, + [350] = 318, [351] = 351, - [352] = 337, - [353] = 336, - [354] = 334, - [355] = 335, - [356] = 337, - [357] = 334, - [358] = 338, + [352] = 141, + [353] = 353, + [354] = 353, + [355] = 353, + [356] = 356, + [357] = 353, + [358] = 351, [359] = 351, - [360] = 334, - [361] = 351, - [362] = 351, - [363] = 363, - [364] = 364, - [365] = 364, - [366] = 336, - [367] = 367, - [368] = 368, - [369] = 351, - [370] = 364, - [371] = 367, - [372] = 336, - [373] = 351, - [374] = 337, - [375] = 336, - [376] = 367, - [377] = 363, - [378] = 363, - [379] = 363, - [380] = 363, - [381] = 363, + [360] = 139, + [361] = 154, + [362] = 160, + [363] = 161, + [364] = 162, + [365] = 169, + [366] = 167, + [367] = 351, + [368] = 146, + [369] = 156, + [370] = 353, + [371] = 371, + [372] = 351, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 373, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 376, + [383] = 381, + [384] = 384, + [385] = 385, + [386] = 376, + [387] = 381, + [388] = 388, + [389] = 384, + [390] = 385, + [391] = 384, + [392] = 375, + [393] = 376, + [394] = 394, + [395] = 373, + [396] = 380, + [397] = 374, + [398] = 385, + [399] = 399, + [400] = 380, + [401] = 374, + [402] = 381, + [403] = 378, + [404] = 404, + [405] = 375, + [406] = 385, + [407] = 376, + [408] = 399, + [409] = 394, + [410] = 380, + [411] = 381, + [412] = 380, + [413] = 413, + [414] = 399, + [415] = 404, + [416] = 375, + [417] = 378, + [418] = 404, + [419] = 373, + [420] = 378, + [421] = 394, + [422] = 394, + [423] = 394, + [424] = 404, + [425] = 375, + [426] = 378, + [427] = 404, + [428] = 373, + [429] = 385, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1232,6 +1287,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(122); if (lookahead == '<') ADVANCE(106); if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(107); if (lookahead == '[') ADVANCE(101); if (lookahead == '`') ADVANCE(10); if (lookahead == 'a') ADVANCE(76); @@ -1264,6 +1320,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(122); if (lookahead == '<') ADVANCE(106); if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(107); if (lookahead == '[') ADVANCE(101); if (lookahead == '`') ADVANCE(10); if (lookahead == 'a') ADVANCE(76); @@ -1294,6 +1351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(89); if (lookahead == '/') ADVANCE(122); if (lookahead == '=') ADVANCE(9); + if (lookahead == '>') ADVANCE(107); if (lookahead == '[') ADVANCE(101); if (lookahead == '`') ADVANCE(10); if (lookahead == 'a') ADVANCE(76); @@ -1326,6 +1384,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(89); if (lookahead == '/') ADVANCE(122); if (lookahead == '=') ADVANCE(9); + if (lookahead == '>') ADVANCE(107); if (lookahead == '[') ADVANCE(101); if (lookahead == '`') ADVANCE(10); if (lookahead == 'a') ADVANCE(76); @@ -2136,7 +2195,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 48}, [69] = {.lex_state = 48}, [70] = {.lex_state = 48}, - [71] = {.lex_state = 48}, + [71] = {.lex_state = 44}, [72] = {.lex_state = 48}, [73] = {.lex_state = 48}, [74] = {.lex_state = 48}, @@ -2147,7 +2206,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [79] = {.lex_state = 48}, [80] = {.lex_state = 48}, [81] = {.lex_state = 48}, - [82] = {.lex_state = 44}, + [82] = {.lex_state = 48}, [83] = {.lex_state = 48}, [84] = {.lex_state = 48}, [85] = {.lex_state = 48}, @@ -2159,227 +2218,227 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [91] = {.lex_state = 48}, [92] = {.lex_state = 48}, [93] = {.lex_state = 48}, - [94] = {.lex_state = 45}, - [95] = {.lex_state = 44}, - [96] = {.lex_state = 44}, - [97] = {.lex_state = 44}, - [98] = {.lex_state = 44}, - [99] = {.lex_state = 44}, - [100] = {.lex_state = 45}, - [101] = {.lex_state = 45}, - [102] = {.lex_state = 45}, - [103] = {.lex_state = 46}, - [104] = {.lex_state = 45}, - [105] = {.lex_state = 45}, - [106] = {.lex_state = 46}, - [107] = {.lex_state = 47}, + [94] = {.lex_state = 48}, + [95] = {.lex_state = 48}, + [96] = {.lex_state = 48}, + [97] = {.lex_state = 48}, + [98] = {.lex_state = 48}, + [99] = {.lex_state = 48}, + [100] = {.lex_state = 48}, + [101] = {.lex_state = 48}, + [102] = {.lex_state = 48}, + [103] = {.lex_state = 48}, + [104] = {.lex_state = 48}, + [105] = {.lex_state = 48}, + [106] = {.lex_state = 48}, + [107] = {.lex_state = 48}, [108] = {.lex_state = 45}, - [109] = {.lex_state = 44}, - [110] = {.lex_state = 44}, - [111] = {.lex_state = 44}, - [112] = {.lex_state = 44}, - [113] = {.lex_state = 44}, - [114] = {.lex_state = 44}, - [115] = {.lex_state = 44}, - [116] = {.lex_state = 44}, - [117] = {.lex_state = 44}, - [118] = {.lex_state = 44}, - [119] = {.lex_state = 47}, - [120] = {.lex_state = 44}, + [109] = {.lex_state = 48}, + [110] = {.lex_state = 48}, + [111] = {.lex_state = 48}, + [112] = {.lex_state = 48}, + [113] = {.lex_state = 48}, + [114] = {.lex_state = 48}, + [115] = {.lex_state = 48}, + [116] = {.lex_state = 48}, + [117] = {.lex_state = 48}, + [118] = {.lex_state = 48}, + [119] = {.lex_state = 44}, + [120] = {.lex_state = 48}, [121] = {.lex_state = 44}, [122] = {.lex_state = 44}, [123] = {.lex_state = 44}, [124] = {.lex_state = 44}, [125] = {.lex_state = 44}, [126] = {.lex_state = 44}, - [127] = {.lex_state = 44}, - [128] = {.lex_state = 44}, - [129] = {.lex_state = 44}, - [130] = {.lex_state = 44}, + [127] = {.lex_state = 45}, + [128] = {.lex_state = 45}, + [129] = {.lex_state = 45}, + [130] = {.lex_state = 46}, [131] = {.lex_state = 44}, [132] = {.lex_state = 44}, - [133] = {.lex_state = 44}, + [133] = {.lex_state = 45}, [134] = {.lex_state = 45}, [135] = {.lex_state = 45}, - [136] = {.lex_state = 45}, + [136] = {.lex_state = 46}, [137] = {.lex_state = 45}, [138] = {.lex_state = 45}, - [139] = {.lex_state = 45}, - [140] = {.lex_state = 45}, - [141] = {.lex_state = 45}, - [142] = {.lex_state = 45}, - [143] = {.lex_state = 45}, - [144] = {.lex_state = 45}, + [139] = {.lex_state = 44}, + [140] = {.lex_state = 44}, + [141] = {.lex_state = 44}, + [142] = {.lex_state = 44}, + [143] = {.lex_state = 44}, + [144] = {.lex_state = 44}, [145] = {.lex_state = 45}, - [146] = {.lex_state = 45}, - [147] = {.lex_state = 45}, + [146] = {.lex_state = 44}, + [147] = {.lex_state = 44}, [148] = {.lex_state = 45}, [149] = {.lex_state = 45}, - [150] = {.lex_state = 45}, + [150] = {.lex_state = 44}, [151] = {.lex_state = 45}, - [152] = {.lex_state = 45}, - [153] = {.lex_state = 45}, - [154] = {.lex_state = 45}, - [155] = {.lex_state = 3}, - [156] = {.lex_state = 48}, - [157] = {.lex_state = 48}, - [158] = {.lex_state = 48}, - [159] = {.lex_state = 3}, - [160] = {.lex_state = 48}, - [161] = {.lex_state = 48}, - [162] = {.lex_state = 3}, - [163] = {.lex_state = 3}, - [164] = {.lex_state = 3}, - [165] = {.lex_state = 3}, - [166] = {.lex_state = 48}, - [167] = {.lex_state = 48}, - [168] = {.lex_state = 48}, - [169] = {.lex_state = 48}, - [170] = {.lex_state = 48}, - [171] = {.lex_state = 48}, - [172] = {.lex_state = 48}, - [173] = {.lex_state = 48}, - [174] = {.lex_state = 48}, - [175] = {.lex_state = 3}, - [176] = {.lex_state = 3}, - [177] = {.lex_state = 3}, - [178] = {.lex_state = 1}, - [179] = {.lex_state = 3}, - [180] = {.lex_state = 3}, - [181] = {.lex_state = 3}, - [182] = {.lex_state = 1}, - [183] = {.lex_state = 1}, - [184] = {.lex_state = 3}, - [185] = {.lex_state = 3}, - [186] = {.lex_state = 3}, - [187] = {.lex_state = 1}, - [188] = {.lex_state = 1}, - [189] = {.lex_state = 48}, - [190] = {.lex_state = 48}, - [191] = {.lex_state = 3}, - [192] = {.lex_state = 3}, - [193] = {.lex_state = 1}, - [194] = {.lex_state = 3}, - [195] = {.lex_state = 1}, - [196] = {.lex_state = 3}, - [197] = {.lex_state = 3}, - [198] = {.lex_state = 3}, - [199] = {.lex_state = 3}, - [200] = {.lex_state = 3}, - [201] = {.lex_state = 3}, - [202] = {.lex_state = 3}, - [203] = {.lex_state = 3}, - [204] = {.lex_state = 3}, - [205] = {.lex_state = 3}, + [152] = {.lex_state = 44}, + [153] = {.lex_state = 47}, + [154] = {.lex_state = 44}, + [155] = {.lex_state = 47}, + [156] = {.lex_state = 44}, + [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 = 44}, + [164] = {.lex_state = 44}, + [165] = {.lex_state = 44}, + [166] = {.lex_state = 45}, + [167] = {.lex_state = 44}, + [168] = {.lex_state = 44}, + [169] = {.lex_state = 44}, + [170] = {.lex_state = 45}, + [171] = {.lex_state = 45}, + [172] = {.lex_state = 45}, + [173] = {.lex_state = 45}, + [174] = {.lex_state = 45}, + [175] = {.lex_state = 44}, + [176] = {.lex_state = 45}, + [177] = {.lex_state = 45}, + [178] = {.lex_state = 45}, + [179] = {.lex_state = 45}, + [180] = {.lex_state = 45}, + [181] = {.lex_state = 45}, + [182] = {.lex_state = 45}, + [183] = {.lex_state = 45}, + [184] = {.lex_state = 45}, + [185] = {.lex_state = 45}, + [186] = {.lex_state = 45}, + [187] = {.lex_state = 45}, + [188] = {.lex_state = 45}, + [189] = {.lex_state = 45}, + [190] = {.lex_state = 45}, + [191] = {.lex_state = 45}, + [192] = {.lex_state = 45}, + [193] = {.lex_state = 44}, + [194] = {.lex_state = 45}, + [195] = {.lex_state = 45}, + [196] = {.lex_state = 45}, + [197] = {.lex_state = 45}, + [198] = {.lex_state = 45}, + [199] = {.lex_state = 45}, + [200] = {.lex_state = 45}, + [201] = {.lex_state = 44}, + [202] = {.lex_state = 47}, + [203] = {.lex_state = 47}, + [204] = {.lex_state = 48}, + [205] = {.lex_state = 48}, [206] = {.lex_state = 3}, [207] = {.lex_state = 3}, - [208] = {.lex_state = 3}, - [209] = {.lex_state = 1}, - [210] = {.lex_state = 1}, - [211] = {.lex_state = 1}, - [212] = {.lex_state = 1}, - [213] = {.lex_state = 1}, - [214] = {.lex_state = 1}, - [215] = {.lex_state = 1}, + [208] = {.lex_state = 48}, + [209] = {.lex_state = 3}, + [210] = {.lex_state = 48}, + [211] = {.lex_state = 3}, + [212] = {.lex_state = 3}, + [213] = {.lex_state = 3}, + [214] = {.lex_state = 3}, + [215] = {.lex_state = 3}, [216] = {.lex_state = 3}, - [217] = {.lex_state = 3}, + [217] = {.lex_state = 48}, [218] = {.lex_state = 3}, [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, - [222] = {.lex_state = 3}, + [222] = {.lex_state = 48}, [223] = {.lex_state = 3}, [224] = {.lex_state = 3}, - [225] = {.lex_state = 3}, + [225] = {.lex_state = 1}, [226] = {.lex_state = 3}, - [227] = {.lex_state = 48}, - [228] = {.lex_state = 48}, - [229] = {.lex_state = 1}, - [230] = {.lex_state = 1}, - [231] = {.lex_state = 1}, - [232] = {.lex_state = 48}, - [233] = {.lex_state = 48}, - [234] = {.lex_state = 1}, - [235] = {.lex_state = 48}, - [236] = {.lex_state = 48}, - [237] = {.lex_state = 1}, - [238] = {.lex_state = 48}, - [239] = {.lex_state = 1}, - [240] = {.lex_state = 48}, - [241] = {.lex_state = 1}, - [242] = {.lex_state = 1}, - [243] = {.lex_state = 3}, + [227] = {.lex_state = 3}, + [228] = {.lex_state = 3}, + [229] = {.lex_state = 3}, + [230] = {.lex_state = 3}, + [231] = {.lex_state = 3}, + [232] = {.lex_state = 3}, + [233] = {.lex_state = 3}, + [234] = {.lex_state = 3}, + [235] = {.lex_state = 1}, + [236] = {.lex_state = 3}, + [237] = {.lex_state = 3}, + [238] = {.lex_state = 1}, + [239] = {.lex_state = 3}, + [240] = {.lex_state = 3}, + [241] = {.lex_state = 3}, + [242] = {.lex_state = 48}, + [243] = {.lex_state = 1}, [244] = {.lex_state = 1}, [245] = {.lex_state = 1}, - [246] = {.lex_state = 3}, - [247] = {.lex_state = 1}, - [248] = {.lex_state = 48}, - [249] = {.lex_state = 48}, + [246] = {.lex_state = 48}, + [247] = {.lex_state = 3}, + [248] = {.lex_state = 3}, + [249] = {.lex_state = 3}, [250] = {.lex_state = 3}, - [251] = {.lex_state = 1}, - [252] = {.lex_state = 6}, - [253] = {.lex_state = 0}, - [254] = {.lex_state = 0}, - [255] = {.lex_state = 0}, - [256] = {.lex_state = 0}, - [257] = {.lex_state = 6}, - [258] = {.lex_state = 0}, - [259] = {.lex_state = 6}, - [260] = {.lex_state = 0}, - [261] = {.lex_state = 6}, - [262] = {.lex_state = 0}, - [263] = {.lex_state = 0}, - [264] = {.lex_state = 0}, - [265] = {.lex_state = 0}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 0}, - [268] = {.lex_state = 6}, - [269] = {.lex_state = 6}, - [270] = {.lex_state = 6}, - [271] = {.lex_state = 6}, - [272] = {.lex_state = 6}, - [273] = {.lex_state = 6}, - [274] = {.lex_state = 6}, - [275] = {.lex_state = 6}, - [276] = {.lex_state = 6}, - [277] = {.lex_state = 6}, - [278] = {.lex_state = 6}, - [279] = {.lex_state = 6}, - [280] = {.lex_state = 6}, - [281] = {.lex_state = 6}, - [282] = {.lex_state = 6}, - [283] = {.lex_state = 6}, - [284] = {.lex_state = 0}, - [285] = {.lex_state = 6}, - [286] = {.lex_state = 6}, - [287] = {.lex_state = 6}, - [288] = {.lex_state = 6}, - [289] = {.lex_state = 6}, - [290] = {.lex_state = 6}, - [291] = {.lex_state = 0}, - [292] = {.lex_state = 6}, - [293] = {.lex_state = 6}, - [294] = {.lex_state = 6}, - [295] = {.lex_state = 0}, - [296] = {.lex_state = 6}, - [297] = {.lex_state = 6}, - [298] = {.lex_state = 6}, - [299] = {.lex_state = 6}, + [251] = {.lex_state = 3}, + [252] = {.lex_state = 3}, + [253] = {.lex_state = 3}, + [254] = {.lex_state = 3}, + [255] = {.lex_state = 3}, + [256] = {.lex_state = 1}, + [257] = {.lex_state = 1}, + [258] = {.lex_state = 3}, + [259] = {.lex_state = 1}, + [260] = {.lex_state = 3}, + [261] = {.lex_state = 3}, + [262] = {.lex_state = 1}, + [263] = {.lex_state = 3}, + [264] = {.lex_state = 1}, + [265] = {.lex_state = 3}, + [266] = {.lex_state = 3}, + [267] = {.lex_state = 3}, + [268] = {.lex_state = 3}, + [269] = {.lex_state = 1}, + [270] = {.lex_state = 3}, + [271] = {.lex_state = 3}, + [272] = {.lex_state = 3}, + [273] = {.lex_state = 3}, + [274] = {.lex_state = 3}, + [275] = {.lex_state = 3}, + [276] = {.lex_state = 3}, + [277] = {.lex_state = 3}, + [278] = {.lex_state = 3}, + [279] = {.lex_state = 3}, + [280] = {.lex_state = 3}, + [281] = {.lex_state = 3}, + [282] = {.lex_state = 3}, + [283] = {.lex_state = 3}, + [284] = {.lex_state = 3}, + [285] = {.lex_state = 1}, + [286] = {.lex_state = 1}, + [287] = {.lex_state = 3}, + [288] = {.lex_state = 1}, + [289] = {.lex_state = 3}, + [290] = {.lex_state = 1}, + [291] = {.lex_state = 3}, + [292] = {.lex_state = 1}, + [293] = {.lex_state = 1}, + [294] = {.lex_state = 1}, + [295] = {.lex_state = 1}, + [296] = {.lex_state = 1}, + [297] = {.lex_state = 1}, + [298] = {.lex_state = 1}, + [299] = {.lex_state = 1}, [300] = {.lex_state = 6}, - [301] = {.lex_state = 6}, + [301] = {.lex_state = 0}, [302] = {.lex_state = 6}, [303] = {.lex_state = 6}, - [304] = {.lex_state = 6}, + [304] = {.lex_state = 0}, [305] = {.lex_state = 0}, [306] = {.lex_state = 6}, - [307] = {.lex_state = 0}, + [307] = {.lex_state = 6}, [308] = {.lex_state = 0}, - [309] = {.lex_state = 6}, + [309] = {.lex_state = 0}, [310] = {.lex_state = 6}, [311] = {.lex_state = 0}, - [312] = {.lex_state = 6}, + [312] = {.lex_state = 0}, [313] = {.lex_state = 0}, - [314] = {.lex_state = 6}, + [314] = {.lex_state = 0}, [315] = {.lex_state = 0}, [316] = {.lex_state = 6}, [317] = {.lex_state = 0}, @@ -2387,66 +2446,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [319] = {.lex_state = 6}, [320] = {.lex_state = 6}, [321] = {.lex_state = 6}, - [322] = {.lex_state = 0}, + [322] = {.lex_state = 6}, [323] = {.lex_state = 6}, - [324] = {.lex_state = 0}, - [325] = {.lex_state = 0}, - [326] = {.lex_state = 6}, + [324] = {.lex_state = 6}, + [325] = {.lex_state = 6}, + [326] = {.lex_state = 0}, [327] = {.lex_state = 0}, - [328] = {.lex_state = 6}, - [329] = {.lex_state = 0}, + [328] = {.lex_state = 0}, + [329] = {.lex_state = 6}, [330] = {.lex_state = 6}, [331] = {.lex_state = 6}, [332] = {.lex_state = 6}, [333] = {.lex_state = 6}, - [334] = {.lex_state = 0}, + [334] = {.lex_state = 6}, [335] = {.lex_state = 6}, - [336] = {.lex_state = 0}, - [337] = {.lex_state = 0}, + [336] = {.lex_state = 6}, + [337] = {.lex_state = 6}, [338] = {.lex_state = 6}, - [339] = {.lex_state = 0}, + [339] = {.lex_state = 6}, [340] = {.lex_state = 0}, - [341] = {.lex_state = 0}, - [342] = {.lex_state = 0}, + [341] = {.lex_state = 6}, + [342] = {.lex_state = 6}, [343] = {.lex_state = 0}, - [344] = {.lex_state = 0}, + [344] = {.lex_state = 6}, [345] = {.lex_state = 6}, - [346] = {.lex_state = 0}, - [347] = {.lex_state = 51}, - [348] = {.lex_state = 0}, + [346] = {.lex_state = 6}, + [347] = {.lex_state = 0}, + [348] = {.lex_state = 6}, [349] = {.lex_state = 6}, - [350] = {.lex_state = 0}, + [350] = {.lex_state = 6}, [351] = {.lex_state = 0}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, + [352] = {.lex_state = 6}, + [353] = {.lex_state = 6}, + [354] = {.lex_state = 6}, [355] = {.lex_state = 6}, - [356] = {.lex_state = 0}, - [357] = {.lex_state = 0}, - [358] = {.lex_state = 6}, + [356] = {.lex_state = 6}, + [357] = {.lex_state = 6}, + [358] = {.lex_state = 0}, [359] = {.lex_state = 0}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 0}, + [360] = {.lex_state = 6}, + [361] = {.lex_state = 6}, + [362] = {.lex_state = 6}, + [363] = {.lex_state = 6}, [364] = {.lex_state = 6}, [365] = {.lex_state = 6}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 6}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 0}, + [366] = {.lex_state = 6}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 6}, + [369] = {.lex_state = 6}, [370] = {.lex_state = 6}, [371] = {.lex_state = 6}, [372] = {.lex_state = 0}, - [373] = {.lex_state = 0}, + [373] = {.lex_state = 6}, [374] = {.lex_state = 0}, - [375] = {.lex_state = 0}, - [376] = {.lex_state = 6}, - [377] = {.lex_state = 0}, - [378] = {.lex_state = 0}, + [375] = {.lex_state = 6}, + [376] = {.lex_state = 0}, + [377] = {.lex_state = 6}, + [378] = {.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 = 0}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 0}, + [387] = {.lex_state = 0}, + [388] = {.lex_state = 51}, + [389] = {.lex_state = 0}, + [390] = {.lex_state = 0}, + [391] = {.lex_state = 0}, + [392] = {.lex_state = 6}, + [393] = {.lex_state = 0}, + [394] = {.lex_state = 0}, + [395] = {.lex_state = 6}, + [396] = {.lex_state = 0}, + [397] = {.lex_state = 0}, + [398] = {.lex_state = 0}, + [399] = {.lex_state = 0}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, + [403] = {.lex_state = 6}, + [404] = {.lex_state = 6}, + [405] = {.lex_state = 6}, + [406] = {.lex_state = 0}, + [407] = {.lex_state = 0}, + [408] = {.lex_state = 0}, + [409] = {.lex_state = 0}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 0}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 6}, + [416] = {.lex_state = 6}, + [417] = {.lex_state = 6}, + [418] = {.lex_state = 6}, + [419] = {.lex_state = 6}, + [420] = {.lex_state = 6}, + [421] = {.lex_state = 0}, + [422] = {.lex_state = 0}, + [423] = {.lex_state = 0}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 6}, + [426] = {.lex_state = 6}, + [427] = {.lex_state = 6}, + [428] = {.lex_state = 6}, + [429] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2499,31 +2606,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(340), - [sym_item] = STATE(2), - [sym_comment] = STATE(161), - [sym_statement] = STATE(158), - [sym_yield] = STATE(157), - [sym_expression] = STATE(102), - [sym__expression_kind] = STATE(154), - [sym_value] = STATE(154), - [sym_boolean] = STATE(150), - [sym_list] = STATE(150), - [sym_function] = STATE(150), - [sym_table] = STATE(150), - [sym_map] = STATE(150), - [sym_math] = STATE(154), - [sym_logic] = STATE(154), - [sym_assignment] = STATE(154), - [sym_select] = STATE(154), - [sym_insert] = STATE(154), - [sym_control_flow] = STATE(154), - [sym_function_call] = STATE(154), - [sym_loop] = STATE(154), - [sym_while_loop] = STATE(135), - [sym_break_loop] = STATE(135), - [sym_match] = STATE(154), - [aux_sym_root_repeat1] = STATE(2), + [sym_root] = STATE(379), + [sym_item] = STATE(3), + [sym_comment] = STATE(217), + [sym_statement] = STATE(217), + [sym_yield] = STATE(208), + [sym_expression] = STATE(149), + [sym__expression_kind] = STATE(181), + [sym_value] = STATE(181), + [sym_boolean] = STATE(179), + [sym_list] = STATE(179), + [sym_function] = STATE(179), + [sym_table] = STATE(179), + [sym_map] = STATE(179), + [sym_math] = STATE(181), + [sym_logic] = STATE(181), + [sym_assignment] = STATE(181), + [sym_select] = STATE(181), + [sym_insert] = STATE(181), + [sym_control_flow] = STATE(181), + [sym_function_call] = STATE(181), + [sym_loop] = STATE(181), + [sym_while_loop] = STATE(171), + [sym_break_loop] = STATE(171), + [sym_match] = STATE(181), + [aux_sym_root_repeat1] = STATE(3), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2544,31 +2651,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(33), }, [2] = { - [sym_item] = STATE(3), - [sym_comment] = STATE(161), - [sym_statement] = STATE(158), - [sym_yield] = STATE(157), - [sym_expression] = STATE(102), - [sym__expression_kind] = STATE(154), - [sym_value] = STATE(154), - [sym_boolean] = STATE(150), - [sym_list] = STATE(150), - [sym_function] = STATE(150), - [sym_table] = STATE(150), - [sym_map] = STATE(150), - [sym_math] = STATE(154), - [sym_logic] = STATE(154), - [sym_assignment] = STATE(154), - [sym_select] = STATE(154), - [sym_insert] = STATE(154), - [sym_control_flow] = STATE(154), - [sym_function_call] = STATE(154), - [sym_loop] = STATE(154), - [sym_while_loop] = STATE(135), - [sym_break_loop] = STATE(135), - [sym_match] = STATE(154), - [aux_sym_root_repeat1] = STATE(3), + [sym_item] = STATE(2), + [sym_comment] = STATE(217), + [sym_statement] = STATE(217), + [sym_yield] = STATE(208), + [sym_expression] = STATE(149), + [sym__expression_kind] = STATE(181), + [sym_value] = STATE(181), + [sym_boolean] = STATE(179), + [sym_list] = STATE(179), + [sym_function] = STATE(179), + [sym_table] = STATE(179), + [sym_map] = STATE(179), + [sym_math] = STATE(181), + [sym_logic] = STATE(181), + [sym_assignment] = STATE(181), + [sym_select] = STATE(181), + [sym_insert] = STATE(181), + [sym_control_flow] = STATE(181), + [sym_function_call] = STATE(181), + [sym_loop] = STATE(181), + [sym_while_loop] = STATE(171), + [sym_break_loop] = STATE(171), + [sym_match] = STATE(181), + [aux_sym_root_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(35), + [sym_identifier] = ACTIONS(37), + [anon_sym_POUND] = ACTIONS(40), + [anon_sym_LPAREN] = ACTIONS(43), + [sym_float] = ACTIONS(46), + [sym_integer] = ACTIONS(46), + [sym_string] = ACTIONS(49), + [anon_sym_true] = ACTIONS(52), + [anon_sym_false] = ACTIONS(52), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_function] = ACTIONS(58), + [anon_sym_table] = ACTIONS(61), + [anon_sym_map] = ACTIONS(64), + [anon_sym_select] = ACTIONS(67), + [anon_sym_insert] = ACTIONS(70), + [anon_sym_if] = ACTIONS(73), + [anon_sym_while] = ACTIONS(76), + [anon_sym_loop] = ACTIONS(79), + [anon_sym_match] = ACTIONS(82), + }, + [3] = { + [sym_item] = STATE(2), + [sym_comment] = STATE(217), + [sym_statement] = STATE(217), + [sym_yield] = STATE(208), + [sym_expression] = STATE(149), + [sym__expression_kind] = STATE(181), + [sym_value] = STATE(181), + [sym_boolean] = STATE(179), + [sym_list] = STATE(179), + [sym_function] = STATE(179), + [sym_table] = STATE(179), + [sym_map] = STATE(179), + [sym_math] = STATE(181), + [sym_logic] = STATE(181), + [sym_assignment] = STATE(181), + [sym_select] = STATE(181), + [sym_insert] = STATE(181), + [sym_control_flow] = STATE(181), + [sym_function_call] = STATE(181), + [sym_loop] = STATE(181), + [sym_while_loop] = STATE(171), + [sym_break_loop] = STATE(171), + [sym_match] = STATE(181), + [aux_sym_root_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(85), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2588,55 +2740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(31), [anon_sym_match] = ACTIONS(33), }, - [3] = { - [sym_item] = STATE(3), - [sym_comment] = STATE(161), - [sym_statement] = STATE(158), - [sym_yield] = STATE(157), - [sym_expression] = STATE(102), - [sym__expression_kind] = STATE(154), - [sym_value] = STATE(154), - [sym_boolean] = STATE(150), - [sym_list] = STATE(150), - [sym_function] = STATE(150), - [sym_table] = STATE(150), - [sym_map] = STATE(150), - [sym_math] = STATE(154), - [sym_logic] = STATE(154), - [sym_assignment] = STATE(154), - [sym_select] = STATE(154), - [sym_insert] = STATE(154), - [sym_control_flow] = STATE(154), - [sym_function_call] = STATE(154), - [sym_loop] = STATE(154), - [sym_while_loop] = STATE(135), - [sym_break_loop] = STATE(135), - [sym_match] = STATE(154), - [aux_sym_root_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(37), - [sym_identifier] = ACTIONS(39), - [anon_sym_POUND] = ACTIONS(42), - [anon_sym_LPAREN] = ACTIONS(45), - [sym_float] = ACTIONS(48), - [sym_integer] = ACTIONS(48), - [sym_string] = ACTIONS(51), - [anon_sym_true] = ACTIONS(54), - [anon_sym_false] = ACTIONS(54), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_function] = ACTIONS(60), - [anon_sym_table] = ACTIONS(63), - [anon_sym_map] = ACTIONS(66), - [anon_sym_select] = ACTIONS(69), - [anon_sym_insert] = ACTIONS(72), - [anon_sym_if] = ACTIONS(75), - [anon_sym_while] = ACTIONS(78), - [anon_sym_loop] = ACTIONS(81), - [anon_sym_match] = ACTIONS(84), - }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 23, + [0] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -2665,30 +2772,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(87), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -2700,379 +2806,436 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [87] = 23, + [85] = 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(89), 1, + anon_sym_RBRACE, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [170] = 22, + ACTIONS(3), 1, sym_identifier, - ACTIONS(92), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(98), 1, + 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(91), 1, + anon_sym_RBRACE, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [255] = 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(93), 1, + anon_sym_RBRACE, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [340] = 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(95), 1, + anon_sym_RBRACE, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [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, + anon_sym_RBRACE, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [510] = 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(99), 1, + anon_sym_RBRACE, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [595] = 22, + ACTIONS(101), 1, + sym_identifier, ACTIONS(104), 1, - anon_sym_LBRACK, - ACTIONS(107), 1, - anon_sym_function, + anon_sym_LPAREN, ACTIONS(110), 1, + sym_string, + ACTIONS(116), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_function, + ACTIONS(122), 1, anon_sym_RBRACE, - ACTIONS(112), 1, - anon_sym_table, - ACTIONS(115), 1, - anon_sym_map, - ACTIONS(118), 1, - anon_sym_select, - ACTIONS(121), 1, - anon_sym_insert, ACTIONS(124), 1, - anon_sym_if, + anon_sym_table, ACTIONS(127), 1, - anon_sym_while, + anon_sym_map, ACTIONS(130), 1, - anon_sym_loop, + anon_sym_select, ACTIONS(133), 1, - anon_sym_match, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(95), 2, - sym_float, - sym_integer, - ACTIONS(101), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [174] = 23, - 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(136), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [261] = 23, - 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, + ACTIONS(139), 1, anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(138), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [348] = 23, - 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(140), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [435] = 23, - 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(142), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [522] = 23, - 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, + ACTIONS(145), 1, anon_sym_match, - ACTIONS(144), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, + ACTIONS(107), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(113), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3084,71 +3247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [609] = 23, - 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(146), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [696] = 23, + [680] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3177,30 +3276,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(148), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3212,7 +3310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [783] = 23, + [765] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3241,30 +3339,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(150), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3276,7 +3373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [870] = 23, + [850] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3305,30 +3402,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(152), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3340,7 +3436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [957] = 23, + [935] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3369,30 +3465,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(154), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3404,7 +3499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [1044] = 23, + [1020] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3433,30 +3528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(156), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3468,7 +3562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [1131] = 23, + [1105] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3497,30 +3591,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(158), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3532,7 +3625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [1218] = 23, + [1190] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3561,30 +3654,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(160), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3596,7 +3688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [1305] = 23, + [1275] = 22, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3625,30 +3717,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(162), 1, anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, + STATE(149), 1, sym_expression, - STATE(157), 1, + STATE(208), 1, sym_yield, - STATE(166), 1, - sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -3660,7 +3751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [1392] = 23, + [1360] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -3687,3269 +3778,926 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1442] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(18), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1524] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(17), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1606] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1688] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1770] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(15), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1852] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(7), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [1934] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(13), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2016] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(19), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2098] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2180] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(10), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2262] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(9), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2344] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(16), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2426] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(6), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2508] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(5), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2590] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, ACTIONS(164), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1479] = 23, - 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(166), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1566] = 23, - 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, + anon_sym_GT, ACTIONS(168), 1, - anon_sym_RBRACE, - STATE(5), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1653] = 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, - STATE(18), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1737] = 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, - STATE(4), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1821] = 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, - STATE(6), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1905] = 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, - STATE(10), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [1989] = 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, - STATE(14), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2073] = 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, - STATE(19), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2157] = 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, - STATE(16), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2241] = 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, - STATE(20), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2325] = 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, - STATE(17), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2409] = 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, - STATE(15), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2493] = 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, - STATE(12), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2577] = 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, - STATE(21), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2661] = 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, - STATE(7), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2745] = 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, - STATE(22), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2829] = 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, - STATE(11), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2913] = 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, - STATE(13), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [2997] = 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, - STATE(8), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [3081] = 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, - STATE(9), 1, - aux_sym_function_repeat2, - STATE(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(166), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [3165] = 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(102), 1, - sym_expression, - STATE(156), 1, - sym_statement, - STATE(157), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [3246] = 21, ACTIONS(170), 1, - sym_identifier, + anon_sym_insert, ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(95), 1, - sym_expression, - STATE(122), 1, - sym_yield, - STATE(128), 1, - sym_statement, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [3327] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(214), 1, - anon_sym_RBRACE, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(52), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3408] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(156), 1, - sym_statement, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3489] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(164), 1, - sym_expression, - STATE(200), 1, - sym_statement, - STATE(208), 1, - sym_yield, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3570] = 21, - ACTIONS(170), 1, - sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(95), 1, - sym_expression, - STATE(122), 1, - sym_yield, - STATE(132), 1, - sym_statement, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [3651] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(164), 1, - sym_expression, - STATE(202), 1, - sym_statement, - STATE(208), 1, - sym_yield, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3732] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - STATE(311), 1, - sym_statement, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3813] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - STATE(315), 1, - sym_statement, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3894] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - ACTIONS(232), 1, - anon_sym_RBRACE, - STATE(52), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [3975] = 21, - ACTIONS(170), 1, - sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(95), 1, - sym_expression, - STATE(122), 1, - sym_yield, - STATE(123), 1, - sym_statement, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [4056] = 21, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(237), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - sym_string, - ACTIONS(249), 1, - anon_sym_LBRACK, - ACTIONS(252), 1, - anon_sym_function, - ACTIONS(255), 1, - anon_sym_RBRACE, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(260), 1, - anon_sym_map, - ACTIONS(263), 1, - anon_sym_select, - ACTIONS(266), 1, - anon_sym_insert, - ACTIONS(269), 1, - anon_sym_if, - ACTIONS(272), 1, - anon_sym_while, - ACTIONS(275), 1, - anon_sym_loop, - ACTIONS(278), 1, - anon_sym_match, - STATE(52), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(240), 2, - sym_float, - sym_integer, - ACTIONS(246), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4137] = 21, - ACTIONS(170), 1, - sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(95), 1, - sym_expression, - STATE(121), 1, - sym_statement, - STATE(122), 1, - sym_yield, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [4218] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - STATE(329), 1, - sym_statement, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4299] = 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(102), 1, - sym_expression, - STATE(157), 1, - sym_yield, - STATE(167), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [4380] = 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(102), 1, - sym_expression, - STATE(140), 1, - sym_yield, - STATE(143), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [4461] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(164), 1, - sym_expression, - STATE(186), 1, - sym_statement, - STATE(208), 1, - sym_yield, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4542] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - ACTIONS(281), 1, - anon_sym_RBRACE, - STATE(52), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4623] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(164), 1, - sym_expression, - STATE(184), 1, - sym_statement, - STATE(208), 1, - sym_yield, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4704] = 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(102), 1, - sym_expression, - STATE(140), 1, - sym_yield, - STATE(149), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [4785] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - STATE(307), 1, - sym_statement, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4866] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - STATE(308), 1, - sym_statement, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [4947] = 21, - ACTIONS(170), 1, - sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(95), 1, - sym_expression, - STATE(109), 1, - sym_statement, - STATE(122), 1, - sym_yield, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [5028] = 21, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(157), 1, - sym_yield, - STATE(164), 1, - sym_expression, - STATE(313), 1, - sym_statement, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5109] = 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(102), 1, - sym_expression, - STATE(140), 1, - sym_yield, - STATE(142), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 2, - sym_while_loop, - sym_break_loop, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(154), 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, - [5190] = 20, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(58), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5268] = 20, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(43), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5346] = 20, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(50), 1, - aux_sym_match_repeat1, - STATE(225), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5424] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(221), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5499] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(217), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5574] = 19, - ACTIONS(170), 1, - sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(99), 1, - sym_expression, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [5649] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(219), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5724] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(224), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [5799] = 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, + STATE(56), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -6957,16 +4705,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -6978,107 +4726,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [5874] = 19, - ACTIONS(170), 1, + [2671] = 21, + ACTIONS(174), 1, sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(97), 1, - sym_expression, - ACTIONS(174), 2, - sym_float, - sym_integer, - ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [5949] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(180), 1, sym_string, - ACTIONS(210), 1, + ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(212), 1, + ACTIONS(186), 1, anon_sym_function, - ACTIONS(216), 1, + ACTIONS(188), 1, anon_sym_table, - ACTIONS(218), 1, + ACTIONS(190), 1, anon_sym_map, - ACTIONS(220), 1, + ACTIONS(192), 1, anon_sym_select, - ACTIONS(222), 1, + ACTIONS(194), 1, anon_sym_insert, - ACTIONS(224), 1, + ACTIONS(196), 1, anon_sym_if, - ACTIONS(226), 1, + ACTIONS(198), 1, anon_sym_while, - ACTIONS(228), 1, + ACTIONS(200), 1, anon_sym_loop, - ACTIONS(230), 1, + ACTIONS(202), 1, anon_sym_match, STATE(220), 1, sym_expression, - ACTIONS(204), 2, + STATE(241), 1, + sym_yield, + STATE(253), 1, + sym_statement, + ACTIONS(178), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(197), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7090,7 +4786,247 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6024] = 19, + [2752] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(209), 1, + sym_expression, + STATE(239), 1, + sym_statement, + STATE(241), 1, + sym_yield, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2833] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(209), 1, + sym_expression, + STATE(240), 1, + sym_statement, + STATE(241), 1, + sym_yield, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2914] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(209), 1, + sym_expression, + STATE(241), 1, + sym_yield, + STATE(253), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + 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, + [2995] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + ACTIONS(204), 1, + anon_sym_GT, + STATE(53), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3076] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -7117,7 +5053,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(104), 1, + STATE(138), 1, + sym_expression, + STATE(178), 1, + sym_yield, + STATE(183), 1, + sym_statement, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3157] = 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(178), 1, + sym_yield, + STATE(191), 1, + sym_statement, + STATE(194), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -7125,16 +5125,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -7146,51 +5146,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6099] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, + [3238] = 21, ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, ACTIONS(212), 1, - anon_sym_function, + sym_string, ACTIONS(216), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(218), 1, - anon_sym_map, + anon_sym_function, ACTIONS(220), 1, - anon_sym_select, + anon_sym_table, ACTIONS(222), 1, - anon_sym_insert, + anon_sym_map, ACTIONS(224), 1, - anon_sym_if, + anon_sym_select, ACTIONS(226), 1, - anon_sym_while, + anon_sym_insert, ACTIONS(228), 1, - anon_sym_loop, + anon_sym_if, ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, anon_sym_match, - STATE(162), 1, + STATE(159), 1, + sym_yield, + STATE(175), 1, sym_expression, - ACTIONS(204), 2, + STATE(201), 1, + sym_statement, + ACTIONS(210), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(158), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(139), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(197), 11, + STATE(157), 11, sym__expression_kind, sym_value, sym_math, @@ -7202,51 +5206,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6174] = 19, - ACTIONS(200), 1, + [3319] = 21, + ACTIONS(3), 1, sym_identifier, - ACTIONS(202), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(210), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(212), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(216), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(218), 1, + ACTIONS(21), 1, anon_sym_map, - ACTIONS(220), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(222), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(224), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(226), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(228), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(230), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(226), 1, + STATE(178), 1, + sym_yield, + STATE(183), 1, + sym_statement, + STATE(194), 1, sym_expression, - ACTIONS(204), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(250), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -7258,51 +5266,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6249] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, + [3400] = 21, ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, ACTIONS(212), 1, - anon_sym_function, + sym_string, ACTIONS(216), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(218), 1, - anon_sym_map, + anon_sym_function, ACTIONS(220), 1, - anon_sym_select, + anon_sym_table, ACTIONS(222), 1, - anon_sym_insert, + anon_sym_map, ACTIONS(224), 1, - anon_sym_if, + anon_sym_select, ACTIONS(226), 1, - anon_sym_while, + anon_sym_insert, ACTIONS(228), 1, - anon_sym_loop, + anon_sym_if, ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, anon_sym_match, - STATE(226), 1, + STATE(124), 1, sym_expression, - ACTIONS(204), 2, + STATE(159), 1, + sym_yield, + STATE(165), 1, + sym_statement, + ACTIONS(210), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(214), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(158), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(139), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(246), 11, + STATE(157), 11, sym__expression_kind, sym_value, sym_math, @@ -7314,51 +5326,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6324] = 19, - ACTIONS(200), 1, + [3481] = 21, + ACTIONS(174), 1, sym_identifier, - ACTIONS(202), 1, + ACTIONS(176), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(180), 1, sym_string, - ACTIONS(210), 1, + ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(212), 1, + ACTIONS(186), 1, anon_sym_function, - ACTIONS(216), 1, + ACTIONS(188), 1, anon_sym_table, - ACTIONS(218), 1, + ACTIONS(190), 1, anon_sym_map, - ACTIONS(220), 1, + ACTIONS(192), 1, anon_sym_select, - ACTIONS(222), 1, + ACTIONS(194), 1, anon_sym_insert, - ACTIONS(224), 1, + ACTIONS(196), 1, anon_sym_if, - ACTIONS(226), 1, + ACTIONS(198), 1, anon_sym_while, - ACTIONS(228), 1, + ACTIONS(200), 1, anon_sym_loop, - ACTIONS(230), 1, + ACTIONS(202), 1, anon_sym_match, - STATE(222), 1, + STATE(208), 1, + sym_yield, + STATE(270), 1, sym_expression, - ACTIONS(204), 2, + STATE(401), 1, + sym_statement, + ACTIONS(178), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(197), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7370,28 +5386,1463 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6399] = 5, + [3562] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(138), 1, + sym_expression, + STATE(178), 1, + sym_yield, + STATE(191), 1, + sym_statement, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3643] = 21, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(124), 1, + sym_expression, + STATE(142), 1, + sym_statement, + STATE(159), 1, + sym_yield, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3724] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(220), 1, + sym_expression, + STATE(240), 1, + sym_statement, + STATE(241), 1, + sym_yield, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3805] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + ACTIONS(236), 1, + anon_sym_GT, + STATE(35), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3886] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(270), 1, + sym_expression, + STATE(414), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3967] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(270), 1, + sym_expression, + STATE(374), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4048] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + ACTIONS(238), 1, + anon_sym_GT, + STATE(56), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4129] = 21, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_RBRACE, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(63), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4210] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + ACTIONS(250), 1, + anon_sym_GT, + STATE(58), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4291] = 21, + ACTIONS(252), 1, + sym_identifier, + ACTIONS(255), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + sym_string, + ACTIONS(267), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_function, + ACTIONS(273), 1, + anon_sym_GT, + ACTIONS(275), 1, + anon_sym_table, + ACTIONS(278), 1, + anon_sym_map, + ACTIONS(281), 1, + anon_sym_select, + ACTIONS(284), 1, + anon_sym_insert, ACTIONS(287), 1, + anon_sym_if, + ACTIONS(290), 1, + anon_sym_while, + ACTIONS(293), 1, + anon_sym_loop, + ACTIONS(296), 1, + anon_sym_match, + STATE(56), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(258), 2, + sym_float, + sym_integer, + ACTIONS(264), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4372] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(270), 1, + sym_expression, + STATE(399), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4453] = 21, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + ACTIONS(299), 1, + anon_sym_GT, + STATE(56), 1, + aux_sym_function_call_repeat1, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4534] = 21, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(124), 1, + sym_expression, + STATE(147), 1, + sym_statement, + STATE(159), 1, + sym_yield, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4615] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(270), 1, + sym_expression, + STATE(397), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4696] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(220), 1, + sym_expression, + STATE(241), 1, + sym_yield, + STATE(266), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4777] = 21, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + ACTIONS(301), 1, + anon_sym_RBRACE, + STATE(63), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4858] = 21, + ACTIONS(303), 1, + sym_identifier, + ACTIONS(306), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + sym_string, + ACTIONS(318), 1, + anon_sym_LBRACK, + ACTIONS(321), 1, + anon_sym_function, + ACTIONS(324), 1, + anon_sym_RBRACE, + ACTIONS(326), 1, + anon_sym_table, + ACTIONS(329), 1, + anon_sym_map, + ACTIONS(332), 1, + anon_sym_select, + ACTIONS(335), 1, + anon_sym_insert, + ACTIONS(338), 1, + anon_sym_if, + ACTIONS(341), 1, + anon_sym_while, + ACTIONS(344), 1, + anon_sym_loop, + ACTIONS(347), 1, + anon_sym_match, + STATE(63), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(309), 2, + sym_float, + sym_integer, + ACTIONS(315), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4939] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(149), 1, + sym_expression, + STATE(208), 1, + sym_yield, + STATE(222), 1, + sym_statement, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5020] = 21, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + ACTIONS(350), 1, + anon_sym_RBRACE, + STATE(63), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5101] = 21, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(124), 1, + sym_expression, + STATE(152), 1, + sym_statement, + STATE(159), 1, + sym_yield, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5182] = 21, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(208), 1, + sym_yield, + STATE(270), 1, + sym_expression, + STATE(408), 1, + sym_statement, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5263] = 20, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(62), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5341] = 20, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(54), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5419] = 20, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(65), 1, + aux_sym_match_repeat1, + STATE(277), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5497] = 5, + ACTIONS(356), 1, anon_sym_LT, - ACTIONS(289), 1, + ACTIONS(358), 1, anon_sym_EQ, - ACTIONS(291), 2, + ACTIONS(360), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(283), 12, + ACTIONS(352), 13, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(285), 20, + ACTIONS(354), 20, sym_identifier, sym_float, sym_integer, @@ -7412,51 +6863,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [6446] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, + [5545] = 19, + ACTIONS(176), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(180), 1, sym_string, - ACTIONS(210), 1, + ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(212), 1, + ACTIONS(186), 1, anon_sym_function, - ACTIONS(216), 1, + ACTIONS(188), 1, anon_sym_table, - ACTIONS(218), 1, + ACTIONS(190), 1, anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, + ACTIONS(198), 1, anon_sym_while, - ACTIONS(228), 1, + ACTIONS(200), 1, anon_sym_loop, - ACTIONS(230), 1, + ACTIONS(202), 1, anon_sym_match, - STATE(165), 1, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(283), 1, sym_expression, - ACTIONS(204), 2, + ACTIONS(178), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(197), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7468,51 +6919,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6521] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, + [5620] = 19, + ACTIONS(176), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(180), 1, sym_string, - ACTIONS(210), 1, + ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(212), 1, + ACTIONS(186), 1, anon_sym_function, - ACTIONS(216), 1, + ACTIONS(188), 1, anon_sym_table, - ACTIONS(218), 1, + ACTIONS(190), 1, anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, + ACTIONS(198), 1, anon_sym_while, - ACTIONS(228), 1, + ACTIONS(200), 1, anon_sym_loop, - ACTIONS(230), 1, + ACTIONS(202), 1, anon_sym_match, - STATE(223), 1, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(261), 1, sym_expression, - ACTIONS(204), 2, + ACTIONS(178), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(197), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7524,51 +6975,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6596] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, + [5695] = 19, + ACTIONS(176), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(180), 1, sym_string, - ACTIONS(210), 1, + ACTIONS(184), 1, anon_sym_LBRACK, - ACTIONS(212), 1, + ACTIONS(186), 1, anon_sym_function, - ACTIONS(216), 1, + ACTIONS(188), 1, anon_sym_table, - ACTIONS(218), 1, + ACTIONS(190), 1, anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, + ACTIONS(198), 1, anon_sym_while, - ACTIONS(228), 1, + ACTIONS(200), 1, anon_sym_loop, - ACTIONS(230), 1, + ACTIONS(202), 1, anon_sym_match, - STATE(226), 1, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(279), 1, sym_expression, - ACTIONS(204), 2, + ACTIONS(178), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(243), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7580,275 +7031,1227 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6671] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, + [5770] = 19, ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, ACTIONS(212), 1, - anon_sym_function, + sym_string, ACTIONS(216), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(218), 1, - anon_sym_map, + anon_sym_function, ACTIONS(220), 1, - anon_sym_select, + anon_sym_table, ACTIONS(222), 1, - anon_sym_insert, + anon_sym_map, ACTIONS(224), 1, - anon_sym_if, + anon_sym_select, ACTIONS(226), 1, - anon_sym_while, + anon_sym_insert, ACTIONS(228), 1, - anon_sym_loop, + anon_sym_if, ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(122), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5845] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(123), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5920] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(119), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5995] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + STATE(197), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6070] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(276), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6145] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + STATE(200), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6220] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(274), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6295] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(207), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6370] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(278), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6445] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + STATE(199), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6520] = 19, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(168), 1, + anon_sym_select, + ACTIONS(170), 1, + anon_sym_insert, + ACTIONS(172), 1, + anon_sym_if, + STATE(198), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6595] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(214), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6670] = 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(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6745] = 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(134), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6820] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(126), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6895] = 19, + ACTIONS(206), 1, + sym_identifier, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(212), 1, + sym_string, + ACTIONS(216), 1, + anon_sym_LBRACK, + ACTIONS(218), 1, + anon_sym_function, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_map, + ACTIONS(224), 1, + anon_sym_select, + ACTIONS(226), 1, + anon_sym_insert, + ACTIONS(228), 1, + anon_sym_if, + ACTIONS(230), 1, + anon_sym_while, + ACTIONS(232), 1, + anon_sym_loop, + ACTIONS(234), 1, + anon_sym_match, + STATE(121), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6970] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(182), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7045] = 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(150), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7120] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(148), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7195] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(212), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7270] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(215), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7345] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, anon_sym_match, STATE(216), 1, sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [6746] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(159), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [6821] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(218), 1, - sym_expression, - ACTIONS(204), 2, - sym_float, - sym_integer, - ACTIONS(208), 2, - anon_sym_true, - anon_sym_false, - STATE(198), 2, - sym_while_loop, - sym_break_loop, - STATE(194), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(197), 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, - [6896] = 19, - ACTIONS(170), 1, - sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, - ACTIONS(176), 1, - sym_string, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, - ACTIONS(184), 1, - anon_sym_table, - ACTIONS(186), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_select, - ACTIONS(190), 1, - anon_sym_insert, - ACTIONS(192), 1, - anon_sym_if, - ACTIONS(194), 1, - anon_sym_while, - ACTIONS(196), 1, - anon_sym_loop, - ACTIONS(198), 1, - anon_sym_match, - STATE(98), 1, - sym_expression, - ACTIONS(174), 2, - sym_float, - sym_integer, ACTIONS(178), 2, - anon_sym_true, - anon_sym_false, - STATE(131), 2, - sym_while_loop, - sym_break_loop, - STATE(120), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(133), 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, - [6971] = 19, - ACTIONS(200), 1, - sym_identifier, - ACTIONS(202), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - sym_string, - ACTIONS(210), 1, - anon_sym_LBRACK, - ACTIONS(212), 1, - anon_sym_function, - ACTIONS(216), 1, - anon_sym_table, - ACTIONS(218), 1, - anon_sym_map, - ACTIONS(220), 1, - anon_sym_select, - ACTIONS(222), 1, - anon_sym_insert, - ACTIONS(224), 1, - anon_sym_if, - ACTIONS(226), 1, - anon_sym_while, - ACTIONS(228), 1, - anon_sym_loop, - ACTIONS(230), 1, - anon_sym_match, - STATE(163), 1, - sym_expression, - ACTIONS(204), 2, sym_float, sym_integer, - ACTIONS(208), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(198), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(194), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(197), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7860,51 +8263,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7046] = 19, - ACTIONS(170), 1, + [7420] = 19, + ACTIONS(174), 1, sym_identifier, - ACTIONS(172), 1, - anon_sym_LPAREN, ACTIONS(176), 1, - sym_string, + anon_sym_LPAREN, ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(182), 1, - anon_sym_function, + sym_string, ACTIONS(184), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(186), 1, - anon_sym_map, + anon_sym_function, ACTIONS(188), 1, - anon_sym_select, + anon_sym_table, ACTIONS(190), 1, - anon_sym_insert, + anon_sym_map, ACTIONS(192), 1, - anon_sym_if, + anon_sym_select, ACTIONS(194), 1, - anon_sym_while, + anon_sym_insert, ACTIONS(196), 1, - anon_sym_loop, + anon_sym_if, ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, anon_sym_match, - STATE(96), 1, + STATE(211), 1, sym_expression, - ACTIONS(174), 2, + ACTIONS(178), 2, sym_float, sym_integer, - ACTIONS(178), 2, + ACTIONS(182), 2, anon_sym_true, anon_sym_false, - STATE(131), 2, + STATE(247), 2, sym_while_loop, sym_break_loop, - STATE(120), 5, + STATE(236), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(133), 11, + STATE(227), 11, sym__expression_kind, sym_value, sym_math, @@ -7916,7 +8319,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7121] = 19, + [7495] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(213), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7570] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -7943,7 +8402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(100), 1, + STATE(128), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -7951,16 +8410,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -7972,7 +8431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7196] = 19, + [7645] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -7999,7 +8458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(101), 1, + STATE(129), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -8007,16 +8466,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(135), 2, + STATE(171), 2, sym_while_loop, sym_break_loop, - STATE(150), 5, + STATE(179), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(181), 11, sym__expression_kind, sym_value, sym_math, @@ -8028,28 +8487,421 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7271] = 5, - ACTIONS(293), 1, + [7720] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(281), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7795] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(272), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7870] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_map, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(137), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7945] = 19, + 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(125), 1, + sym_expression, + ACTIONS(210), 2, + sym_float, + sym_integer, + ACTIONS(214), 2, + anon_sym_true, + anon_sym_false, + STATE(158), 2, + sym_while_loop, + sym_break_loop, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(157), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8020] = 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(135), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8095] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(284), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(287), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8170] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(273), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8245] = 5, + ACTIONS(362), 1, anon_sym_LT, - ACTIONS(295), 1, + ACTIONS(364), 1, anon_sym_EQ, - ACTIONS(297), 2, + ACTIONS(366), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(283), 12, + ACTIONS(352), 13, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(285), 19, + ACTIONS(354), 19, sym_identifier, sym_float, sym_integer, @@ -8069,34 +8921,693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7317] = 8, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(71), 1, - sym_math_operator, + [8292] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(284), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(291), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8367] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(280), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8442] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(258), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8517] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(271), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8592] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(284), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(289), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8667] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(275), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8742] = 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(127), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(171), 2, + sym_while_loop, + sym_break_loop, + STATE(179), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(181), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8817] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(282), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8892] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(263), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8967] = 19, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + ACTIONS(240), 1, + sym_identifier, + ACTIONS(244), 1, + anon_sym_select, + ACTIONS(246), 1, + anon_sym_insert, + ACTIONS(248), 1, + anon_sym_if, + STATE(260), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9042] = 5, STATE(75), 1, sym_logic_operator, - ACTIONS(307), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(309), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(299), 7, + STATE(76), 1, + sym_math_operator, + STATE(132), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(301), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(370), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9089] = 19, + ACTIONS(174), 1, + sym_identifier, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(180), 1, + sym_string, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_function, + ACTIONS(188), 1, + anon_sym_table, + ACTIONS(190), 1, + anon_sym_map, + ACTIONS(192), 1, + anon_sym_select, + ACTIONS(194), 1, + anon_sym_insert, + ACTIONS(196), 1, + anon_sym_if, + ACTIONS(198), 1, + anon_sym_while, + ACTIONS(200), 1, + anon_sym_loop, + ACTIONS(202), 1, + anon_sym_match, + STATE(265), 1, + sym_expression, + ACTIONS(178), 2, + sym_float, + sym_integer, + ACTIONS(182), 2, + anon_sym_true, + anon_sym_false, + STATE(247), 2, + sym_while_loop, + sym_break_loop, + STATE(236), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(227), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9164] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(75), 1, + sym_logic_operator, + STATE(76), 1, + sym_math_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(372), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(374), 15, sym_identifier, sym_float, sym_integer, @@ -8112,34 +9623,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7368] = 8, - ACTIONS(305), 1, + [9216] = 8, + ACTIONS(378), 1, anon_sym_DASH, - STATE(71), 1, - sym_math_operator, STATE(75), 1, sym_logic_operator, - ACTIONS(307), 2, + STATE(76), 1, + sym_math_operator, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(309), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(303), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(311), 7, + ACTIONS(384), 8, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(313), 15, + ACTIONS(386), 15, sym_identifier, sym_float, sym_integer, @@ -8155,34 +9667,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7419] = 8, - ACTIONS(305), 1, + [9268] = 8, + ACTIONS(378), 1, anon_sym_DASH, - STATE(71), 1, - sym_math_operator, STATE(75), 1, sym_logic_operator, - ACTIONS(307), 2, + STATE(76), 1, + sym_math_operator, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(309), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(303), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(315), 7, + ACTIONS(388), 8, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(317), 15, + ACTIONS(390), 15, sym_identifier, sym_float, sym_integer, @@ -8198,34 +9711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7470] = 8, - ACTIONS(305), 1, + [9320] = 9, + ACTIONS(378), 1, anon_sym_DASH, - STATE(71), 1, - sym_math_operator, + ACTIONS(396), 1, + anon_sym_DASH_GT, STATE(75), 1, sym_logic_operator, - ACTIONS(307), 2, + STATE(76), 1, + sym_math_operator, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(309), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(303), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(319), 7, + ACTIONS(392), 7, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(321), 15, + ACTIONS(394), 15, sym_identifier, sym_float, sym_integer, @@ -8241,34 +9756,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7521] = 8, - ACTIONS(305), 1, + [9374] = 8, + ACTIONS(378), 1, anon_sym_DASH, - STATE(71), 1, - sym_math_operator, STATE(75), 1, sym_logic_operator, - ACTIONS(307), 2, + STATE(76), 1, + sym_math_operator, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(309), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(303), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(323), 7, + ACTIONS(398), 8, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(325), 15, + ACTIONS(400), 15, sym_identifier, sym_float, sym_integer, @@ -8284,34 +9800,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7572] = 8, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(74), 1, - sym_math_operator, - STATE(77), 1, + [9426] = 4, + STATE(75), 1, sym_logic_operator, - ACTIONS(307), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(309), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(319), 7, + STATE(76), 1, + sym_math_operator, + ACTIONS(402), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(321), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(404), 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, + [9470] = 5, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + STATE(145), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(370), 18, + 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, + [9516] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(372), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(374), 14, sym_identifier, sym_float, sym_integer, @@ -8326,34 +9924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7622] = 8, - ACTIONS(305), 1, + [9567] = 8, + ACTIONS(378), 1, anon_sym_DASH, - STATE(74), 1, + STATE(88), 1, sym_math_operator, - STATE(77), 1, + STATE(105), 1, sym_logic_operator, - ACTIONS(307), 2, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(309), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(303), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(311), 7, + ACTIONS(398), 8, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(313), 14, + ACTIONS(400), 14, sym_identifier, sym_float, sym_integer, @@ -8368,58 +9967,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7672] = 8, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(74), 1, - sym_math_operator, - STATE(77), 1, - sym_logic_operator, - ACTIONS(307), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(309), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(299), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(301), 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, - [7722] = 3, - ACTIONS(331), 1, + [9618] = 3, + ACTIONS(410), 1, anon_sym_where, - ACTIONS(327), 13, + ACTIONS(406), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -8427,7 +9985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(329), 19, + ACTIONS(408), 19, sym_identifier, sym_float, sym_integer, @@ -8447,100 +10005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7762] = 8, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(74), 1, - sym_math_operator, - STATE(77), 1, - sym_logic_operator, - ACTIONS(307), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(309), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(315), 7, + [9659] = 4, + ACTIONS(412), 1, + anon_sym_DASH_GT, + STATE(131), 1, + aux_sym_yield_repeat1, + ACTIONS(402), 13, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(317), 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, - [7812] = 8, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(74), 1, - sym_math_operator, - STATE(77), 1, - sym_logic_operator, - ACTIONS(307), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(309), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(323), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(325), 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, - [7862] = 3, - ACTIONS(337), 1, - anon_sym_where, - ACTIONS(333), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -8548,7 +10024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(335), 19, + ACTIONS(404), 19, sym_identifier, sym_float, sym_integer, @@ -8568,755 +10044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [7902] = 3, - ACTIONS(339), 1, - anon_sym_where, - ACTIONS(327), 13, + [9702] = 3, + STATE(131), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(329), 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, - [7941] = 2, - ACTIONS(341), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(343), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_into, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [7978] = 4, - ACTIONS(349), 1, - anon_sym_DASH_GT, - ACTIONS(351), 1, - anon_sym_else, - ACTIONS(345), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(347), 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, - [8019] = 2, - ACTIONS(353), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(355), 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, - [8056] = 2, - ACTIONS(357), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(359), 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, - [8093] = 2, - ACTIONS(361), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(363), 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, - [8130] = 2, - ACTIONS(365), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(367), 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, - [8167] = 2, - ACTIONS(369), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(371), 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, - [8204] = 2, - ACTIONS(373), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(375), 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, - [8241] = 2, - ACTIONS(377), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(379), 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, - [8278] = 2, - ACTIONS(341), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(343), 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, - [8315] = 2, - ACTIONS(381), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(383), 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, - [8352] = 3, - ACTIONS(385), 1, - anon_sym_where, - ACTIONS(333), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(335), 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, - [8391] = 2, - ACTIONS(387), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(389), 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, - [8428] = 2, - ACTIONS(391), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(393), 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, - [8465] = 2, - ACTIONS(299), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(301), 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, - [8502] = 3, - ACTIONS(349), 1, - anon_sym_DASH_GT, - ACTIONS(395), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(397), 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, - [8541] = 2, - ACTIONS(399), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(401), 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, - [8578] = 2, - ACTIONS(403), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(405), 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, - [8615] = 2, - ACTIONS(407), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(409), 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, - [8652] = 2, - ACTIONS(411), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(413), 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, - [8689] = 3, - ACTIONS(349), 1, - anon_sym_DASH_GT, - ACTIONS(415), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9344,14 +10082,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [8728] = 2, - ACTIONS(419), 13, + [9743] = 10, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(419), 1, + anon_sym_DASH_GT, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_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, + [9798] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(388), 8, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(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, + [9849] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(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, + [9900] = 3, + ACTIONS(425), 1, + anon_sym_where, + ACTIONS(421), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9359,7 +10231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(421), 19, + ACTIONS(423), 19, sym_identifier, sym_float, sym_integer, @@ -9379,14 +10251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [8765] = 2, - ACTIONS(423), 13, + [9941] = 4, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(402), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9394,7 +10271,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(425), 19, + ACTIONS(404), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9984] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(427), 1, + anon_sym_DASH_GT, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(392), 7, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(394), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10037] = 2, + ACTIONS(429), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(431), 19, sym_identifier, sym_float, sym_integer, @@ -9414,86 +10370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [8802] = 2, - ACTIONS(427), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(429), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [8839] = 4, - ACTIONS(349), 1, - anon_sym_DASH_GT, - ACTIONS(431), 1, - anon_sym_else, - ACTIONS(345), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(347), 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, - [8880] = 2, - ACTIONS(433), 13, + [10075] = 2, + ACTIONS(433), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9521,14 +10406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [8917] = 2, - ACTIONS(373), 13, + [10113] = 2, + ACTIONS(437), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9536,7 +10422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(375), 18, + ACTIONS(439), 19, sym_identifier, sym_float, sym_integer, @@ -9552,17 +10438,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, - [8953] = 2, - ACTIONS(427), 13, + [10151] = 2, + ACTIONS(441), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9570,7 +10458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(429), 18, + ACTIONS(443), 19, sym_identifier, sym_float, sym_integer, @@ -9586,17 +10474,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, - [8989] = 2, - ACTIONS(357), 13, + [10189] = 2, + ACTIONS(445), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9604,7 +10494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(359), 18, + ACTIONS(447), 19, sym_identifier, sym_float, sym_integer, @@ -9620,17 +10510,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, - [9025] = 2, - ACTIONS(353), 13, + [10227] = 2, + ACTIONS(449), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9638,7 +10530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(355), 18, + ACTIONS(451), 19, sym_identifier, sym_float, sym_integer, @@ -9654,154 +10546,21 @@ 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, - [9061] = 2, - ACTIONS(377), 13, + [10265] = 3, + STATE(151), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(379), 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, - [9097] = 2, - ACTIONS(399), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(401), 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, - [9133] = 2, - ACTIONS(299), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(301), 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, - [9169] = 2, - ACTIONS(365), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(367), 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, - [9205] = 3, - ACTIONS(437), 1, - anon_sym_DASH_GT, - ACTIONS(415), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9828,15 +10587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9243] = 3, - ACTIONS(437), 1, - anon_sym_DASH_GT, - ACTIONS(395), 12, + [10305] = 2, + ACTIONS(453), 14, ts_builtin_sym_end, anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9844,7 +10603,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(397), 18, + ACTIONS(455), 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, + [10343] = 3, + ACTIONS(461), 1, + anon_sym_else, + ACTIONS(457), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(459), 18, sym_identifier, sym_float, sym_integer, @@ -9863,8 +10660,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9281] = 2, - ACTIONS(407), 13, + [10383] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(402), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -9872,13 +10687,124 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACE, + ACTIONS(404), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10433] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(463), 1, + anon_sym_DASH_GT, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(392), 6, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(394), 14, + 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, + [10485] = 6, + ACTIONS(465), 1, + anon_sym_DASH_GT, + STATE(75), 1, + sym_logic_operator, + STATE(76), 1, + sym_math_operator, + STATE(193), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(409), 18, + 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, + [10531] = 4, + ACTIONS(467), 1, + anon_sym_DASH_GT, + STATE(151), 1, + aux_sym_yield_repeat1, + ACTIONS(402), 13, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(404), 18, sym_identifier, sym_float, sym_integer, @@ -9897,14 +10823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9317] = 2, - ACTIONS(419), 13, + [10573] = 3, + ACTIONS(470), 1, + anon_sym_else, + ACTIONS(457), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9912,7 +10841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(421), 18, + ACTIONS(459), 18, sym_identifier, sym_float, sym_integer, @@ -9931,14 +10860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9353] = 2, - ACTIONS(423), 13, + [10613] = 3, + ACTIONS(472), 1, + anon_sym_where, + ACTIONS(421), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9946,7 +10878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(425), 18, + ACTIONS(423), 18, sym_identifier, sym_float, sym_integer, @@ -9965,14 +10897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9389] = 2, - ACTIONS(361), 13, + [10653] = 2, + ACTIONS(474), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -9980,7 +10913,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(363), 18, + ACTIONS(476), 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, + [10691] = 3, + ACTIONS(478), 1, + anon_sym_where, + ACTIONS(406), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(408), 18, sym_identifier, sym_float, sym_integer, @@ -9999,14 +10970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9425] = 2, - ACTIONS(369), 13, + [10731] = 2, + ACTIONS(480), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10014,7 +10986,511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(371), 18, + ACTIONS(482), 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, + [10769] = 2, + ACTIONS(484), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(486), 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, + [10807] = 2, + ACTIONS(488), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(490), 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, + [10845] = 2, + ACTIONS(392), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(394), 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, + [10883] = 2, + ACTIONS(492), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(494), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10921] = 2, + ACTIONS(496), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(498), 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, + [10959] = 2, + ACTIONS(500), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(502), 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, + [10997] = 2, + ACTIONS(504), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(506), 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, + [11035] = 2, + ACTIONS(508), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(510), 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, + [11073] = 2, + ACTIONS(512), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(514), 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, + [11111] = 2, + ACTIONS(492), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(494), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_into, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11149] = 2, + ACTIONS(516), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(518), 19, + 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, + [11187] = 2, + ACTIONS(520), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(522), 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, + [11225] = 2, + ACTIONS(524), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(526), 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, + [11263] = 2, + ACTIONS(516), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(518), 18, sym_identifier, sym_float, sym_integer, @@ -10033,14 +11509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9461] = 2, - ACTIONS(391), 13, + [11300] = 2, + ACTIONS(488), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10048,7 +11525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(393), 18, + ACTIONS(490), 18, sym_identifier, sym_float, sym_integer, @@ -10067,14 +11544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9497] = 2, - ACTIONS(387), 13, + [11337] = 2, + ACTIONS(524), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10082,7 +11560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(389), 18, + ACTIONS(526), 18, sym_identifier, sym_float, sym_integer, @@ -10101,14 +11579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9533] = 2, - ACTIONS(381), 13, + [11374] = 2, + ACTIONS(500), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10116,7 +11595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(383), 18, + ACTIONS(502), 18, sym_identifier, sym_float, sym_integer, @@ -10135,14 +11614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9569] = 2, - ACTIONS(403), 13, + [11411] = 2, + ACTIONS(496), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10150,7 +11630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(405), 18, + ACTIONS(498), 18, sym_identifier, sym_float, sym_integer, @@ -10169,22 +11649,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9605] = 2, - ACTIONS(411), 13, - ts_builtin_sym_end, - anon_sym_POUND, + [11448] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(528), 1, anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, + STATE(75), 1, + sym_logic_operator, + STATE(76), 1, + sym_math_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(413), 18, + ACTIONS(392), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(394), 15, sym_identifier, sym_float, sym_integer, @@ -10193,24 +11684,22 @@ 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, - [9641] = 2, - ACTIONS(433), 13, + [11499] = 2, + ACTIONS(433), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10237,139 +11726,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9677] = 5, - ACTIONS(439), 1, - anon_sym_LT, - ACTIONS(441), 1, - anon_sym_EQ, - ACTIONS(285), 2, + [11536] = 2, + ACTIONS(520), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(522), 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, - ACTIONS(443), 2, + 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, + [11573] = 2, + ACTIONS(392), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(394), 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, + [11610] = 2, + ACTIONS(429), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(431), 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, + [11647] = 2, + ACTIONS(474), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(476), 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, + [11684] = 2, + ACTIONS(484), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(486), 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, + [11721] = 6, + ACTIONS(530), 1, + anon_sym_DASH_GT, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + STATE(196), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(370), 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, + [11766] = 2, + ACTIONS(512), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(514), 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, + [11803] = 5, + ACTIONS(362), 1, + anon_sym_LT, + ACTIONS(532), 1, + anon_sym_EQ, + ACTIONS(534), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(283), 15, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(352), 9, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, + ACTIONS(354), 19, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [9709] = 2, - ACTIONS(391), 7, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11846] = 2, + ACTIONS(508), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, anon_sym_RBRACE, - ACTIONS(393), 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, - [9735] = 2, - ACTIONS(299), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(301), 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, - [9761] = 3, - ACTIONS(449), 1, - anon_sym_DASH_GT, - ACTIONS(445), 5, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(447), 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, - [9788] = 6, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(307), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, + ACTIONS(510), 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, - ACTIONS(319), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [9820] = 2, - ACTIONS(451), 5, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11883] = 2, + ACTIONS(449), 14, ts_builtin_sym_end, anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(451), 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, + [11920] = 2, + ACTIONS(504), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(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, + [11957] = 2, + ACTIONS(445), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(447), 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, + [11994] = 2, + ACTIONS(437), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(439), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12031] = 2, + ACTIONS(480), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(482), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12068] = 2, + ACTIONS(441), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(443), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12105] = 2, ACTIONS(453), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(455), 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, + [12142] = 4, + ACTIONS(465), 1, + anon_sym_DASH_GT, + STATE(131), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(417), 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, + [12182] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(536), 1, + anon_sym_DASH_GT, + STATE(88), 1, + sym_math_operator, + STATE(105), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(392), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(394), 14, sym_identifier, sym_float, sym_integer, @@ -10384,14 +12370,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9844] = 2, - ACTIONS(445), 5, + [12232] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(78), 1, + sym_math_operator, + STATE(80), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(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, + [12279] = 4, + ACTIONS(530), 1, + anon_sym_DASH_GT, + STATE(151), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(417), 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, + [12318] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(78), 1, + sym_math_operator, + STATE(80), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(388), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + 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, + [12365] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(78), 1, + sym_math_operator, + STATE(80), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(398), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(400), 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, + [12412] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(78), 1, + sym_math_operator, + STATE(80), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(372), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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, + [12459] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(78), 1, + sym_math_operator, + STATE(80), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(386), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12506] = 3, + ACTIONS(542), 1, + anon_sym_else, + ACTIONS(457), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(459), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12542] = 3, + ACTIONS(544), 1, + anon_sym_where, + ACTIONS(406), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(408), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12578] = 3, + ACTIONS(546), 1, + anon_sym_where, + ACTIONS(421), 10, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(423), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12614] = 4, + ACTIONS(548), 1, + anon_sym_DASH_GT, + STATE(204), 1, + aux_sym_yield_repeat1, + ACTIONS(402), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - ACTIONS(447), 14, + anon_sym_RBRACE, + ACTIONS(404), 14, sym_identifier, sym_float, sym_integer, @@ -10406,119 +12726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9868] = 6, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(323), 7, + [12645] = 4, + ACTIONS(419), 1, anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [9900] = 6, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(311), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [9932] = 6, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(299), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [9964] = 6, - ACTIONS(305), 1, - anon_sym_DASH, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(315), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [9996] = 3, - ACTIONS(449), 1, - anon_sym_DASH_GT, - ACTIONS(457), 4, + STATE(204), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 6, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(455), 14, + ACTIONS(417), 14, sym_identifier, sym_float, sym_integer, @@ -10533,15 +12753,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10022] = 3, - ACTIONS(449), 1, + [12676] = 5, + ACTIONS(551), 1, + anon_sym_LT, + ACTIONS(553), 1, + anon_sym_EQ, + ACTIONS(354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(555), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(352), 15, anon_sym_DASH_GT, - ACTIONS(461), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [12708] = 5, + ACTIONS(370), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + STATE(223), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 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, + [12739] = 2, + ACTIONS(392), 6, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(459), 14, + ACTIONS(394), 14, sym_identifier, sym_float, sym_integer, @@ -10556,222 +12829,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10048] = 11, - ACTIONS(463), 1, - sym_identifier, - ACTIONS(467), 1, - sym_string, - ACTIONS(471), 1, - anon_sym_LBRACK, - ACTIONS(473), 1, - anon_sym_function, - ACTIONS(475), 1, - anon_sym_GT, - ACTIONS(477), 1, - anon_sym_table, - ACTIONS(479), 1, - anon_sym_map, - ACTIONS(465), 2, - sym_float, - sym_integer, - ACTIONS(469), 2, - anon_sym_true, - anon_sym_false, - STATE(172), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10089] = 11, - ACTIONS(467), 1, - sym_string, - ACTIONS(471), 1, - anon_sym_LBRACK, - ACTIONS(473), 1, - anon_sym_function, - ACTIONS(477), 1, - anon_sym_table, - ACTIONS(479), 1, - anon_sym_map, - ACTIONS(481), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_GT, - ACTIONS(465), 2, - sym_float, - sym_integer, - ACTIONS(469), 2, - anon_sym_true, - anon_sym_false, - STATE(174), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10130] = 11, - ACTIONS(467), 1, - sym_string, - ACTIONS(471), 1, - anon_sym_LBRACK, - ACTIONS(473), 1, - anon_sym_function, - ACTIONS(477), 1, - anon_sym_table, - ACTIONS(479), 1, - anon_sym_map, - ACTIONS(481), 1, - sym_identifier, - ACTIONS(485), 1, - anon_sym_GT, - ACTIONS(465), 2, - sym_float, - sym_integer, - ACTIONS(469), 2, - anon_sym_true, - anon_sym_false, - STATE(174), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10171] = 11, - ACTIONS(467), 1, - sym_string, - ACTIONS(471), 1, - anon_sym_LBRACK, - ACTIONS(473), 1, - anon_sym_function, - ACTIONS(477), 1, - anon_sym_table, - ACTIONS(479), 1, - anon_sym_map, - ACTIONS(487), 1, - sym_identifier, - ACTIONS(489), 1, - anon_sym_GT, - ACTIONS(465), 2, - sym_float, - sym_integer, - ACTIONS(469), 2, - anon_sym_true, - anon_sym_false, - STATE(170), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10212] = 11, - ACTIONS(467), 1, - sym_string, - ACTIONS(471), 1, - anon_sym_LBRACK, - ACTIONS(473), 1, - anon_sym_function, - ACTIONS(477), 1, - anon_sym_table, - ACTIONS(479), 1, - anon_sym_map, - ACTIONS(481), 1, - sym_identifier, - ACTIONS(491), 1, - anon_sym_GT, - ACTIONS(465), 2, - sym_float, - sym_integer, - ACTIONS(469), 2, - anon_sym_true, - anon_sym_false, - STATE(174), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10253] = 11, - ACTIONS(467), 1, - sym_string, - ACTIONS(471), 1, - anon_sym_LBRACK, - ACTIONS(473), 1, - anon_sym_function, - ACTIONS(477), 1, - anon_sym_table, - ACTIONS(479), 1, - anon_sym_map, - ACTIONS(493), 1, - sym_identifier, - ACTIONS(495), 1, - anon_sym_GT, - ACTIONS(465), 2, - sym_float, - sym_integer, - ACTIONS(469), 2, - anon_sym_true, - anon_sym_false, - STATE(169), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10294] = 11, - ACTIONS(497), 1, - sym_identifier, - ACTIONS(503), 1, - sym_string, - ACTIONS(509), 1, - anon_sym_LBRACK, - ACTIONS(512), 1, - anon_sym_function, - ACTIONS(515), 1, - anon_sym_GT, - ACTIONS(517), 1, - anon_sym_table, - ACTIONS(520), 1, - anon_sym_map, - ACTIONS(500), 2, - sym_float, - sym_integer, - ACTIONS(506), 2, - anon_sym_true, - anon_sym_false, - STATE(174), 2, - sym_value, - aux_sym_function_call_repeat1, - STATE(236), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10335] = 3, - ACTIONS(329), 1, + [12764] = 7, + ACTIONS(378), 1, anon_sym_DASH, - ACTIONS(523), 1, + ACTIONS(557), 1, + anon_sym_DASH_GT, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(392), 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12798] = 2, + ACTIONS(559), 5, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + ACTIONS(561), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12822] = 6, + ACTIONS(370), 1, + anon_sym_DASH, + ACTIONS(563), 1, + anon_sym_DASH_GT, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + STATE(254), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12854] = 4, + ACTIONS(404), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(402), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12882] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + 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, + [12914] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(388), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12946] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(384), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12978] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(372), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13010] = 2, + ACTIONS(565), 5, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + ACTIONS(567), 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, + [13034] = 3, + ACTIONS(423), 1, + anon_sym_DASH, + ACTIONS(569), 1, anon_sym_where, - ACTIONS(327), 16, + ACTIONS(421), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -10788,12 +13076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [10360] = 3, - ACTIONS(335), 1, + [13059] = 3, + ACTIONS(408), 1, anon_sym_DASH, - ACTIONS(525), 1, + ACTIONS(571), 1, anon_sym_where, - ACTIONS(333), 16, + ACTIONS(406), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -10810,60 +13098,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [10385] = 2, - ACTIONS(421), 1, + [13084] = 7, + ACTIONS(378), 1, anon_sym_DASH, - ACTIONS(419), 16, + ACTIONS(573), 1, anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, + ACTIONS(392), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [10407] = 11, - ACTIONS(530), 1, - sym_integer, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(539), 1, - anon_sym_RBRACK, - ACTIONS(541), 1, - anon_sym_function, - ACTIONS(544), 1, - anon_sym_table, - ACTIONS(547), 1, - anon_sym_map, - STATE(178), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(527), 2, - sym_float, - sym_string, - ACTIONS(533), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10447] = 2, - ACTIONS(401), 1, + [13117] = 4, + ACTIONS(404), 1, anon_sym_DASH, - ACTIONS(399), 16, + ACTIONS(575), 1, anon_sym_DASH_GT, + STATE(221), 1, + aux_sym_yield_repeat1, + ACTIONS(402), 15, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -10879,231 +13147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [10469] = 2, - ACTIONS(367), 1, - anon_sym_DASH, - ACTIONS(365), 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, - [10491] = 2, - ACTIONS(363), 1, - anon_sym_DASH, - ACTIONS(361), 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, - [10513] = 11, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(558), 1, - anon_sym_RBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(178), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10553] = 11, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - ACTIONS(566), 1, - anon_sym_RBRACK, - STATE(178), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10593] = 4, - ACTIONS(347), 1, - anon_sym_DASH, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_else, - ACTIONS(345), 14, - 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, - [10619] = 2, - ACTIONS(409), 1, - anon_sym_DASH, - ACTIONS(407), 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, - [10641] = 3, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(395), 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, - [10665] = 11, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - ACTIONS(572), 1, - anon_sym_RBRACK, - STATE(178), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10705] = 11, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - ACTIONS(574), 1, - anon_sym_RBRACK, - STATE(178), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [10745] = 2, - ACTIONS(578), 3, + [13144] = 2, + ACTIONS(580), 4, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - ACTIONS(576), 14, + anon_sym_RBRACE, + ACTIONS(578), 14, sym_identifier, sym_float, sym_integer, @@ -11118,12 +13168,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10767] = 2, - ACTIONS(582), 3, + [13167] = 3, + ACTIONS(417), 1, + anon_sym_DASH, + STATE(221), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 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, + [13192] = 5, + ACTIONS(551), 1, + anon_sym_LT, + ACTIONS(582), 1, + anon_sym_EQ, + ACTIONS(354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(584), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(352), 12, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_EQ_GT, + [13221] = 11, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(594), 1, + anon_sym_RBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13261] = 2, + ACTIONS(510), 1, + anon_sym_DASH, + ACTIONS(508), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13283] = 2, + ACTIONS(486), 1, + anon_sym_DASH, + ACTIONS(484), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13305] = 2, + ACTIONS(498), 1, + anon_sym_DASH, + ACTIONS(496), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13327] = 2, + ACTIONS(439), 1, + anon_sym_DASH, + ACTIONS(437), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13349] = 2, + ACTIONS(522), 1, + anon_sym_DASH, + ACTIONS(520), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13371] = 2, + ACTIONS(476), 1, + anon_sym_DASH, + ACTIONS(474), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13393] = 2, + ACTIONS(502), 1, + anon_sym_DASH, + ACTIONS(500), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13415] = 2, + ACTIONS(526), 1, + anon_sym_DASH, + ACTIONS(524), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13437] = 2, + ACTIONS(494), 1, + anon_sym_DASH, + ACTIONS(492), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13459] = 11, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + ACTIONS(602), 1, + anon_sym_RBRACK, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13499] = 2, + ACTIONS(431), 1, + anon_sym_DASH, + ACTIONS(429), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13521] = 2, + ACTIONS(455), 1, + anon_sym_DASH, + ACTIONS(453), 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, + [13543] = 11, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + ACTIONS(604), 1, + anon_sym_RBRACK, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13583] = 3, + ACTIONS(459), 1, + anon_sym_DASH, + ACTIONS(606), 1, + anon_sym_else, + ACTIONS(457), 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, + [13607] = 2, + ACTIONS(443), 1, + anon_sym_DASH, + ACTIONS(441), 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, + [13629] = 2, + ACTIONS(394), 1, + anon_sym_DASH, + ACTIONS(392), 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, + [13651] = 2, + ACTIONS(610), 3, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - ACTIONS(580), 14, + ACTIONS(608), 14, sym_identifier, sym_float, sym_integer, @@ -11138,128 +13602,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10789] = 2, - ACTIONS(359), 1, - anon_sym_DASH, - ACTIONS(357), 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, - [10811] = 2, - ACTIONS(405), 1, - anon_sym_DASH, - ACTIONS(403), 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, - [10833] = 11, - ACTIONS(552), 1, + [13673] = 11, + ACTIONS(615), 1, sym_integer, - ACTIONS(556), 1, + ACTIONS(621), 1, anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - ACTIONS(584), 1, + ACTIONS(624), 1, anon_sym_RBRACK, - STATE(178), 1, + ACTIONS(626), 1, + anon_sym_function, + ACTIONS(629), 1, + anon_sym_table, + ACTIONS(632), 1, + anon_sym_map, + STATE(243), 1, aux_sym_list_repeat1, - STATE(245), 1, + STATE(290), 1, sym_value, - ACTIONS(550), 2, + ACTIONS(612), 2, sym_float, sym_string, - ACTIONS(554), 2, + ACTIONS(618), 2, anon_sym_true, anon_sym_false, - STATE(231), 5, + STATE(298), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [10873] = 2, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(387), 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, - [10895] = 11, - ACTIONS(552), 1, + [13713] = 11, + ACTIONS(588), 1, sym_integer, - ACTIONS(556), 1, + ACTIONS(592), 1, anon_sym_LBRACK, - ACTIONS(560), 1, + ACTIONS(596), 1, anon_sym_function, - ACTIONS(562), 1, + ACTIONS(598), 1, anon_sym_table, - ACTIONS(564), 1, + ACTIONS(600), 1, anon_sym_map, - ACTIONS(586), 1, + ACTIONS(635), 1, anon_sym_RBRACK, - STATE(178), 1, + STATE(243), 1, aux_sym_list_repeat1, - STATE(245), 1, + STATE(290), 1, sym_value, - ACTIONS(550), 2, + ACTIONS(586), 2, sym_float, sym_string, - ACTIONS(554), 2, + ACTIONS(590), 2, anon_sym_true, anon_sym_false, - STATE(231), 5, + STATE(298), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [10935] = 2, - ACTIONS(383), 1, + [13753] = 11, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + ACTIONS(637), 1, + anon_sym_RBRACK, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13793] = 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, + [13815] = 2, + ACTIONS(490), 1, anon_sym_DASH, - ACTIONS(381), 16, + ACTIONS(488), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -11276,7 +13729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [10957] = 2, + [13837] = 2, ACTIONS(435), 1, anon_sym_DASH, ACTIONS(433), 16, @@ -11296,10 +13749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [10979] = 2, - ACTIONS(429), 1, + [13859] = 2, + ACTIONS(451), 1, anon_sym_DASH, - ACTIONS(427), 16, + ACTIONS(449), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -11316,10 +13769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [11001] = 2, - ACTIONS(425), 1, + [13881] = 2, + ACTIONS(447), 1, anon_sym_DASH, - ACTIONS(423), 16, + ACTIONS(445), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -11336,15 +13789,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [11023] = 3, + [13903] = 2, + ACTIONS(518), 1, + anon_sym_DASH, + ACTIONS(516), 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, + [13925] = 2, + ACTIONS(482), 1, + anon_sym_DASH, + ACTIONS(480), 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, + [13947] = 2, + ACTIONS(514), 1, + anon_sym_DASH, + ACTIONS(512), 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, + [13969] = 4, ACTIONS(417), 1, anon_sym_DASH, - ACTIONS(568), 1, + ACTIONS(563), 1, anon_sym_DASH_GT, - ACTIONS(415), 15, + STATE(221), 1, + aux_sym_yield_repeat1, + ACTIONS(415), 14, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -11357,10 +13871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [11047] = 2, - ACTIONS(343), 1, + [13995] = 2, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(341), 16, + ACTIONS(504), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -11377,312 +13891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [11069] = 2, - ACTIONS(393), 1, - anon_sym_DASH, - ACTIONS(391), 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, - [11091] = 2, - ACTIONS(355), 1, - anon_sym_DASH, - ACTIONS(353), 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, - [11113] = 2, - ACTIONS(371), 1, - anon_sym_DASH, - ACTIONS(369), 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, - [11135] = 2, - ACTIONS(379), 1, - anon_sym_DASH, - ACTIONS(377), 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, - [11157] = 2, - ACTIONS(375), 1, - anon_sym_DASH, - ACTIONS(373), 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, - [11179] = 2, - ACTIONS(413), 1, - anon_sym_DASH, - ACTIONS(411), 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, - [11201] = 2, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(299), 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, - [11223] = 10, - ACTIONS(552), 1, + [14017] = 10, + ACTIONS(588), 1, sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(193), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [11260] = 10, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(195), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [11297] = 10, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(182), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [11334] = 10, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(187), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [11371] = 10, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(183), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [11408] = 10, - ACTIONS(552), 1, - sym_integer, - ACTIONS(556), 1, - anon_sym_LBRACK, - ACTIONS(560), 1, - anon_sym_function, - ACTIONS(562), 1, - anon_sym_table, - ACTIONS(564), 1, - anon_sym_map, - STATE(188), 1, - aux_sym_list_repeat1, - STATE(245), 1, - sym_value, - ACTIONS(550), 2, - sym_float, - sym_string, - ACTIONS(554), 2, - anon_sym_true, - anon_sym_false, - STATE(231), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [11445] = 9, - ACTIONS(590), 1, - sym_integer, - ACTIONS(594), 1, + ACTIONS(592), 1, anon_sym_LBRACK, ACTIONS(596), 1, anon_sym_function, @@ -11690,455 +13902,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, ACTIONS(600), 1, anon_sym_map, - STATE(319), 1, + STATE(244), 1, + aux_sym_list_repeat1, + STATE(290), 1, sym_value, - ACTIONS(588), 2, + ACTIONS(586), 2, sym_float, sym_string, - ACTIONS(592), 2, + ACTIONS(590), 2, anon_sym_true, anon_sym_false, - STATE(312), 5, + STATE(298), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [11479] = 5, - ACTIONS(602), 1, - anon_sym_then, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, + [14054] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + STATE(225), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14091] = 5, + STATE(117), 1, sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11503] = 5, - ACTIONS(604), 1, - anon_sym_LBRACE, - STATE(78), 1, + STATE(118), 1, sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11527] = 5, - ACTIONS(606), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11551] = 5, - ACTIONS(608), 1, - anon_sym_then, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11575] = 5, - ACTIONS(610), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11599] = 5, - ACTIONS(612), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11623] = 5, - ACTIONS(614), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11647] = 5, - ACTIONS(616), 1, - anon_sym_then, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11671] = 5, - ACTIONS(618), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11695] = 5, - ACTIONS(620), 1, - anon_sym_EQ_GT, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11719] = 4, - STATE(78), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(303), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(307), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [11740] = 2, - ACTIONS(381), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(383), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11756] = 2, - ACTIONS(341), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(343), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11772] = 2, - ACTIONS(383), 1, - sym_integer, - ACTIONS(381), 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, - [11788] = 2, - ACTIONS(371), 1, - sym_integer, - ACTIONS(369), 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, - [11804] = 2, - ACTIONS(389), 1, - sym_integer, - ACTIONS(387), 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, - [11820] = 2, - ACTIONS(377), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(379), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11836] = 2, - ACTIONS(353), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(355), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11852] = 2, - ACTIONS(379), 1, - sym_integer, - ACTIONS(377), 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, - [11868] = 2, - ACTIONS(357), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(359), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11884] = 2, - ACTIONS(387), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(389), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11900] = 2, - ACTIONS(367), 1, - sym_integer, - ACTIONS(365), 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, - [11916] = 2, - ACTIONS(361), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(363), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11932] = 2, - ACTIONS(343), 1, - sym_integer, - ACTIONS(341), 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, - [11948] = 2, - ACTIONS(365), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(367), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [11964] = 2, - ACTIONS(355), 1, - sym_integer, - ACTIONS(353), 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, - [11980] = 2, - ACTIONS(375), 1, - sym_integer, - ACTIONS(373), 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, - [11996] = 2, - ACTIONS(622), 1, + ACTIONS(372), 4, anon_sym_RPAREN, - ACTIONS(433), 10, + 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, + [14118] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + STATE(245), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14155] = 5, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(388), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14182] = 5, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(398), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14209] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + STATE(235), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14246] = 5, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(384), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14273] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_table, + ACTIONS(600), 1, + anon_sym_map, + STATE(238), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(298), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14310] = 8, + ACTIONS(368), 1, + anon_sym_RBRACE, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(643), 1, + anon_sym_DASH_GT, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + STATE(343), 1, + aux_sym_yield_repeat1, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14342] = 2, + ACTIONS(645), 1, + anon_sym_else, + ACTIONS(457), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -12149,10 +14154,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [12012] = 2, - ACTIONS(359), 1, + anon_sym_then, + anon_sym_EQ_GT, + [14362] = 2, + ACTIONS(647), 1, + anon_sym_where, + ACTIONS(421), 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, + [14382] = 2, + ACTIONS(649), 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, + [14402] = 9, + ACTIONS(653), 1, sym_integer, - ACTIONS(357), 10, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(659), 1, + anon_sym_function, + ACTIONS(661), 1, + anon_sym_table, + ACTIONS(663), 1, + anon_sym_map, + STATE(356), 1, + sym_value, + ACTIONS(651), 2, + sym_float, + sym_string, + ACTIONS(655), 2, + anon_sym_true, + anon_sym_false, + STATE(360), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14436] = 7, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(392), 1, + anon_sym_RBRACE, + ACTIONS(665), 1, + anon_sym_DASH_GT, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14465] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(86), 1, + sym_math_operator, + STATE(95), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_DASH_GT, + anon_sym_RBRACE, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14492] = 5, + ACTIONS(667), 1, + anon_sym_then, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14516] = 5, + ACTIONS(669), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14540] = 5, + ACTIONS(671), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14564] = 5, + ACTIONS(673), 1, + anon_sym_then, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14588] = 5, + ACTIONS(675), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14612] = 5, + ACTIONS(677), 1, + anon_sym_EQ_GT, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14636] = 5, + ACTIONS(679), 1, + anon_sym_then, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14660] = 5, + ACTIONS(681), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14684] = 5, + ACTIONS(683), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14708] = 5, + ACTIONS(685), 1, + anon_sym_then, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14732] = 5, + ACTIONS(687), 1, + anon_sym_then, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14756] = 5, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14780] = 4, + STATE(117), 1, + sym_logic_operator, + STATE(118), 1, + sym_math_operator, + ACTIONS(376), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14801] = 2, + ACTIONS(518), 1, + sym_integer, + ACTIONS(516), 10, sym_float, sym_string, anon_sym_true, @@ -12163,11 +14519,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [12028] = 3, - ACTIONS(626), 1, + [14817] = 2, + ACTIONS(498), 1, sym_integer, - ACTIONS(628), 1, + ACTIONS(496), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [14833] = 2, + ACTIONS(691), 1, + anon_sym_RPAREN, + ACTIONS(484), 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, + [14849] = 2, + ACTIONS(439), 1, + sym_integer, + ACTIONS(437), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [14865] = 2, + ACTIONS(693), 1, + anon_sym_RPAREN, + ACTIONS(484), 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, + [14881] = 3, + ACTIONS(697), 1, + sym_integer, + ACTIONS(699), 1, + anon_sym_COMMA, + ACTIONS(695), 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, + [14899] = 2, + ACTIONS(701), 1, + anon_sym_RPAREN, + ACTIONS(484), 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, + [14915] = 2, + ACTIONS(455), 1, + sym_integer, + ACTIONS(453), 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, + [14931] = 2, + ACTIONS(482), 1, + sym_integer, + ACTIONS(480), 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, + [14947] = 2, + ACTIONS(494), 1, + sym_integer, + ACTIONS(492), 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, + [14963] = 2, + ACTIONS(526), 1, + sym_integer, + ACTIONS(524), 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, + [14979] = 2, + ACTIONS(502), 1, + sym_integer, + ACTIONS(500), 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, + [14995] = 2, + ACTIONS(476), 1, + sym_integer, + ACTIONS(474), 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, + [15011] = 2, + ACTIONS(431), 1, + sym_integer, + ACTIONS(429), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [15027] = 2, + ACTIONS(703), 1, + sym_integer, ACTIONS(624), 9, sym_float, sym_string, @@ -12178,1543 +14715,1511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_table, anon_sym_map, - [12046] = 2, - ACTIONS(630), 1, - anon_sym_RPAREN, - ACTIONS(433), 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, - [12062] = 2, - ACTIONS(363), 1, - sym_integer, - ACTIONS(361), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, + [15042] = 3, + ACTIONS(705), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [12078] = 2, - ACTIONS(373), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(375), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [12094] = 2, - ACTIONS(369), 3, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(371), 8, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [12110] = 2, - ACTIONS(632), 1, - anon_sym_RPAREN, - ACTIONS(433), 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, - [12126] = 2, - ACTIONS(634), 1, - sym_integer, - ACTIONS(539), 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, - [12141] = 3, - ACTIONS(636), 1, - anon_sym_LBRACK, - ACTIONS(639), 2, + ACTIONS(708), 2, anon_sym_RBRACE, anon_sym_into, - STATE(252), 2, + STATE(300), 2, sym_list, aux_sym_table_repeat1, - [12153] = 3, + [15054] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(641), 1, - anon_sym_RBRACE, - STATE(258), 2, - sym_list, - aux_sym_table_repeat1, - [12164] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(643), 1, - anon_sym_RBRACE, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12175] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_RBRACE, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12186] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(647), 1, - anon_sym_RBRACE, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12197] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(649), 1, - anon_sym_into, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12208] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_RBRACE, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12219] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(653), 1, - anon_sym_into, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12230] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_RBRACE, - STATE(256), 2, - sym_list, - aux_sym_table_repeat1, - [12241] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_into, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12252] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(659), 1, - anon_sym_RBRACE, - STATE(264), 2, - sym_list, - aux_sym_table_repeat1, - [12263] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_RBRACE, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12274] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(663), 1, - anon_sym_RBRACE, - STATE(252), 2, - sym_list, - aux_sym_table_repeat1, - [12285] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_RBRACE, - STATE(255), 2, - sym_list, - aux_sym_table_repeat1, - [12296] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(667), 1, - anon_sym_RBRACE, - STATE(254), 2, - sym_list, - aux_sym_table_repeat1, - [12307] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_RBRACE, - STATE(263), 2, - sym_list, - aux_sym_table_repeat1, - [12318] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(673), 1, - anon_sym_GT, - STATE(276), 1, - aux_sym_function_repeat1, - [12328] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(675), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12338] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(679), 1, - anon_sym_RBRACE, - STATE(272), 1, - aux_sym_map_repeat1, - [12348] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(681), 1, - anon_sym_RBRACE, - STATE(280), 1, - aux_sym_map_repeat1, - [12358] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(683), 1, - anon_sym_RBRACE, - STATE(303), 1, - aux_sym_map_repeat1, - [12368] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(685), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12378] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(687), 1, - anon_sym_GT, - STATE(273), 1, - aux_sym_function_repeat1, - [12388] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(689), 1, - anon_sym_RBRACE, - STATE(277), 1, - aux_sym_map_repeat1, - [12398] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(691), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12408] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_RBRACE, - STATE(303), 1, - aux_sym_map_repeat1, - [12418] = 3, - ACTIONS(695), 1, - sym_identifier, - ACTIONS(698), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12428] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(700), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12438] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(702), 1, - anon_sym_RBRACE, - STATE(303), 1, - aux_sym_map_repeat1, - [12448] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(704), 1, - anon_sym_RBRACE, - STATE(303), 1, - aux_sym_map_repeat1, - [12458] = 3, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(706), 1, - anon_sym_RBRACE, - STATE(281), 1, - aux_sym_map_repeat1, - [12468] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(708), 1, - anon_sym_GT, - STATE(279), 1, - aux_sym_function_repeat1, - [12478] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(259), 2, - sym_list, - aux_sym_table_repeat1, - [12486] = 3, - ACTIONS(671), 1, - sym_identifier, ACTIONS(710), 1, - anon_sym_GT, - STATE(286), 1, - aux_sym_function_repeat1, - [12496] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(712), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12506] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(714), 1, - anon_sym_GT, - STATE(298), 1, - aux_sym_function_repeat1, - [12516] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(716), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12526] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(718), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12536] = 3, - ACTIONS(671), 1, - sym_identifier, - ACTIONS(720), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12546] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(257), 2, + anon_sym_RBRACE, + STATE(300), 2, sym_list, aux_sym_table_repeat1, - [12554] = 3, - ACTIONS(671), 1, - sym_identifier, + [15065] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(712), 1, + anon_sym_into, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15076] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_into, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15087] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_RBRACE, + STATE(305), 2, + sym_list, + aux_sym_table_repeat1, + [15098] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_RBRACE, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15109] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(720), 1, + anon_sym_into, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15120] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(722), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12564] = 3, - ACTIONS(671), 1, - sym_identifier, + anon_sym_into, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15131] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(724), 1, - anon_sym_GT, - STATE(299), 1, - aux_sym_function_repeat1, - [12574] = 3, - ACTIONS(677), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(309), 2, + sym_list, + aux_sym_table_repeat1, + [15142] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(726), 1, anon_sym_RBRACE, - STATE(302), 1, - aux_sym_map_repeat1, - [12584] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(261), 2, + STATE(300), 2, sym_list, aux_sym_table_repeat1, - [12592] = 3, - ACTIONS(677), 1, - sym_identifier, + [15153] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(728), 1, + anon_sym_into, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15164] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(730), 1, anon_sym_RBRACE, - STATE(303), 1, - aux_sym_map_repeat1, - [12602] = 2, + STATE(301), 2, + sym_list, + aux_sym_table_repeat1, + [15175] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(732), 1, - anon_sym_COMMA, - ACTIONS(730), 2, - sym_identifier, - anon_sym_GT, - [12610] = 3, - ACTIONS(671), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15186] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(734), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12620] = 3, - ACTIONS(671), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(315), 2, + sym_list, + aux_sym_table_repeat1, + [15197] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(736), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12630] = 3, - ACTIONS(677), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(312), 2, + sym_list, + aux_sym_table_repeat1, + [15208] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(738), 1, anon_sym_RBRACE, - STATE(296), 1, - aux_sym_map_repeat1, - [12640] = 3, - ACTIONS(671), 1, - sym_identifier, + STATE(300), 2, + sym_list, + aux_sym_table_repeat1, + [15219] = 3, ACTIONS(740), 1, - anon_sym_GT, - STATE(278), 1, - aux_sym_function_repeat1, - [12650] = 3, - ACTIONS(677), 1, sym_identifier, ACTIONS(742), 1, anon_sym_RBRACE, - STATE(303), 1, + STATE(342), 1, aux_sym_map_repeat1, - [12660] = 3, + [15229] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(310), 2, + sym_list, + aux_sym_table_repeat1, + [15237] = 3, + ACTIONS(740), 1, + sym_identifier, ACTIONS(744), 1, - sym_identifier, - ACTIONS(747), 1, anon_sym_RBRACE, - STATE(303), 1, + STATE(319), 1, aux_sym_map_repeat1, - [12670] = 1, - ACTIONS(357), 2, + [15247] = 3, + ACTIONS(746), 1, sym_identifier, - anon_sym_RBRACE, - [12675] = 2, ACTIONS(749), 1, - anon_sym_LT, + anon_sym_RBRACE, + STATE(319), 1, + aux_sym_map_repeat1, + [15257] = 3, ACTIONS(751), 1, - anon_sym_LBRACE, - [12682] = 2, - ACTIONS(671), 1, sym_identifier, - STATE(269), 1, - aux_sym_function_repeat1, - [12689] = 2, ACTIONS(753), 1, - anon_sym_DASH_GT, + anon_sym_GT, + STATE(329), 1, + aux_sym_function_repeat1, + [15267] = 3, + ACTIONS(740), 1, + sym_identifier, ACTIONS(755), 1, anon_sym_RBRACE, - [12696] = 2, - ACTIONS(753), 1, - anon_sym_DASH_GT, - ACTIONS(757), 1, - anon_sym_RBRACE, - [12703] = 2, - ACTIONS(671), 1, + STATE(318), 1, + aux_sym_map_repeat1, + [15277] = 3, + ACTIONS(751), 1, sym_identifier, - STATE(288), 1, + ACTIONS(757), 1, + anon_sym_GT, + STATE(330), 1, aux_sym_function_repeat1, - [12710] = 1, - ACTIONS(698), 2, + [15287] = 3, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(759), 1, + anon_sym_GT, + STATE(322), 1, + aux_sym_function_repeat1, + [15297] = 3, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(761), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15307] = 3, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(763), 1, + anon_sym_GT, + STATE(324), 1, + aux_sym_function_repeat1, + [15317] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(303), 2, + sym_list, + aux_sym_table_repeat1, + [15325] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(306), 2, + sym_list, + aux_sym_table_repeat1, + [15333] = 3, + ACTIONS(402), 1, + anon_sym_RBRACE, + ACTIONS(765), 1, + anon_sym_DASH_GT, + STATE(328), 1, + aux_sym_yield_repeat1, + [15343] = 3, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(768), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15353] = 3, + ACTIONS(770), 1, + sym_identifier, + ACTIONS(773), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15363] = 3, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_RBRACE, + STATE(319), 1, + aux_sym_map_repeat1, + [15373] = 3, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(777), 1, + anon_sym_RBRACE, + STATE(331), 1, + aux_sym_map_repeat1, + [15383] = 2, + ACTIONS(781), 1, + anon_sym_COMMA, + ACTIONS(779), 2, sym_identifier, anon_sym_GT, - [12715] = 2, - ACTIONS(753), 1, - anon_sym_DASH_GT, - ACTIONS(759), 1, - anon_sym_RBRACE, - [12722] = 1, - ACTIONS(387), 2, + [15391] = 3, + ACTIONS(751), 1, sym_identifier, - anon_sym_RBRACE, - [12727] = 2, - ACTIONS(753), 1, - anon_sym_DASH_GT, - ACTIONS(761), 1, - anon_sym_RBRACE, - [12734] = 2, - ACTIONS(671), 1, - sym_identifier, - STATE(289), 1, - aux_sym_function_repeat1, - [12741] = 2, - ACTIONS(753), 1, - anon_sym_DASH_GT, - ACTIONS(763), 1, - anon_sym_RBRACE, - [12748] = 2, - ACTIONS(671), 1, - sym_identifier, - STATE(290), 1, - aux_sym_function_repeat1, - [12755] = 2, - ACTIONS(765), 1, - anon_sym_LT, - ACTIONS(767), 1, - anon_sym_LBRACE, - [12762] = 2, - ACTIONS(671), 1, - sym_identifier, - STATE(292), 1, - aux_sym_function_repeat1, - [12769] = 1, - ACTIONS(769), 2, - sym_identifier, - anon_sym_RBRACE, - [12774] = 1, - ACTIONS(353), 2, - sym_identifier, - anon_sym_RBRACE, - [12779] = 1, - ACTIONS(361), 2, - sym_identifier, - anon_sym_RBRACE, - [12784] = 2, - ACTIONS(771), 1, - anon_sym_LT, - ACTIONS(773), 1, - anon_sym_LBRACE, - [12791] = 1, - ACTIONS(365), 2, - sym_identifier, - anon_sym_RBRACE, - [12796] = 2, - ACTIONS(775), 1, - anon_sym_LT, - ACTIONS(777), 1, - anon_sym_LBRACE, - [12803] = 2, - ACTIONS(779), 1, - anon_sym_LT, - ACTIONS(781), 1, - anon_sym_LBRACE, - [12810] = 1, - ACTIONS(369), 2, - sym_identifier, - anon_sym_RBRACE, - [12815] = 2, ACTIONS(783), 1, - anon_sym_LT, - ACTIONS(785), 1, - anon_sym_LBRACE, - [12822] = 1, - ACTIONS(373), 2, - sym_identifier, - anon_sym_RBRACE, - [12827] = 2, - ACTIONS(753), 1, - anon_sym_DASH_GT, - ACTIONS(787), 1, - anon_sym_RBRACE, - [12834] = 1, - ACTIONS(381), 2, - sym_identifier, - anon_sym_RBRACE, - [12839] = 2, - ACTIONS(671), 1, - sym_identifier, - STATE(301), 1, + anon_sym_GT, + STATE(330), 1, aux_sym_function_repeat1, - [12846] = 1, - ACTIONS(341), 2, + [15401] = 3, + ACTIONS(751), 1, sym_identifier, - anon_sym_RBRACE, - [12851] = 1, - ACTIONS(377), 2, + ACTIONS(785), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15411] = 3, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(787), 1, + anon_sym_GT, + STATE(334), 1, + aux_sym_function_repeat1, + [15421] = 3, + ACTIONS(751), 1, sym_identifier, - anon_sym_RBRACE, - [12856] = 1, ACTIONS(789), 1, - anon_sym_LBRACE, - [12860] = 1, - ACTIONS(791), 1, - anon_sym_from, - [12864] = 1, - ACTIONS(793), 1, - anon_sym_LBRACE, - [12868] = 1, - ACTIONS(795), 1, - anon_sym_LBRACE, - [12872] = 1, - ACTIONS(797), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15431] = 3, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(791), 1, + anon_sym_RBRACE, + STATE(348), 1, + aux_sym_map_repeat1, + [15441] = 3, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(793), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15451] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(307), 2, + sym_list, + aux_sym_table_repeat1, + [15459] = 3, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_RBRACE, + STATE(350), 1, + aux_sym_map_repeat1, + [15469] = 3, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_RBRACE, + STATE(319), 1, + aux_sym_map_repeat1, + [15479] = 3, + ACTIONS(415), 1, + anon_sym_RBRACE, + ACTIONS(643), 1, + anon_sym_DASH_GT, + STATE(328), 1, + aux_sym_yield_repeat1, + [15489] = 3, + ACTIONS(751), 1, sym_identifier, - [12876] = 1, ACTIONS(799), 1, - anon_sym_LBRACE, - [12880] = 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15499] = 3, + ACTIONS(751), 1, + sym_identifier, ACTIONS(801), 1, - ts_builtin_sym_end, - [12884] = 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15509] = 3, + ACTIONS(751), 1, + sym_identifier, ACTIONS(803), 1, - anon_sym_LBRACE, - [12888] = 1, + anon_sym_GT, + STATE(335), 1, + aux_sym_function_repeat1, + [15519] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(302), 2, + sym_list, + aux_sym_table_repeat1, + [15527] = 3, + ACTIONS(740), 1, + sym_identifier, ACTIONS(805), 1, - anon_sym_LBRACE, - [12892] = 1, + anon_sym_RBRACE, + STATE(319), 1, + aux_sym_map_repeat1, + [15537] = 3, + ACTIONS(751), 1, + sym_identifier, ACTIONS(807), 1, - anon_sym_LBRACE, - [12896] = 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15547] = 3, + ACTIONS(740), 1, + sym_identifier, ACTIONS(809), 1, - anon_sym_LBRACE, - [12900] = 1, + anon_sym_RBRACE, + STATE(319), 1, + aux_sym_map_repeat1, + [15557] = 2, ACTIONS(811), 1, - anon_sym_from, - [12904] = 1, + anon_sym_LT, ACTIONS(813), 1, anon_sym_LBRACE, - [12908] = 1, - ACTIONS(815), 1, - aux_sym_comment_token1, - [12912] = 1, - ACTIONS(817), 1, - anon_sym_LBRACE, - [12916] = 1, - ACTIONS(819), 1, + [15564] = 1, + ACTIONS(437), 2, sym_identifier, - [12920] = 1, - ACTIONS(821), 1, + anon_sym_RBRACE, + [15569] = 2, + ACTIONS(751), 1, + sym_identifier, + STATE(344), 1, + aux_sym_function_repeat1, + [15576] = 2, + ACTIONS(751), 1, + sym_identifier, + STATE(339), 1, + aux_sym_function_repeat1, + [15583] = 2, + ACTIONS(751), 1, + sym_identifier, + STATE(337), 1, + aux_sym_function_repeat1, + [15590] = 1, + ACTIONS(815), 2, + sym_identifier, + anon_sym_RBRACE, + [15595] = 2, + ACTIONS(751), 1, + sym_identifier, + STATE(349), 1, + aux_sym_function_repeat1, + [15602] = 2, + ACTIONS(817), 1, + anon_sym_LT, + ACTIONS(819), 1, anon_sym_LBRACE, - [12924] = 1, + [15609] = 2, + ACTIONS(821), 1, + anon_sym_LT, ACTIONS(823), 1, anon_sym_LBRACE, - [12928] = 1, + [15616] = 1, + ACTIONS(429), 2, + sym_identifier, + anon_sym_RBRACE, + [15621] = 1, + ACTIONS(474), 2, + sym_identifier, + anon_sym_RBRACE, + [15626] = 1, + ACTIONS(492), 2, + sym_identifier, + anon_sym_RBRACE, + [15631] = 1, + ACTIONS(496), 2, + sym_identifier, + anon_sym_RBRACE, + [15636] = 1, + ACTIONS(500), 2, + sym_identifier, + anon_sym_RBRACE, + [15641] = 1, + ACTIONS(524), 2, + sym_identifier, + anon_sym_RBRACE, + [15646] = 1, + ACTIONS(516), 2, + sym_identifier, + anon_sym_RBRACE, + [15651] = 2, ACTIONS(825), 1, - anon_sym_LBRACE, - [12932] = 1, + anon_sym_LT, ACTIONS(827), 1, anon_sym_LBRACE, - [12936] = 1, + [15658] = 1, + ACTIONS(453), 2, + sym_identifier, + anon_sym_RBRACE, + [15663] = 1, + ACTIONS(480), 2, + sym_identifier, + anon_sym_RBRACE, + [15668] = 2, + ACTIONS(751), 1, + sym_identifier, + STATE(345), 1, + aux_sym_function_repeat1, + [15675] = 1, + ACTIONS(773), 2, + sym_identifier, + anon_sym_GT, + [15680] = 2, ACTIONS(829), 1, - anon_sym_LBRACE, - [12940] = 1, + anon_sym_LT, ACTIONS(831), 1, - anon_sym_from, - [12944] = 1, + anon_sym_LBRACE, + [15687] = 1, ACTIONS(833), 1, - anon_sym_LBRACE, - [12948] = 1, + sym_identifier, + [15691] = 1, ACTIONS(835), 1, - anon_sym_LBRACE, - [12952] = 1, + anon_sym_RBRACE, + [15695] = 1, ACTIONS(837), 1, sym_identifier, - [12956] = 1, + [15699] = 1, ACTIONS(839), 1, anon_sym_LBRACE, - [12960] = 1, + [15703] = 1, ACTIONS(841), 1, - anon_sym_LBRACE, - [12964] = 1, + sym_identifier, + [15707] = 1, ACTIONS(843), 1, - anon_sym_LBRACE, - [12968] = 1, + anon_sym_from, + [15711] = 1, ACTIONS(845), 1, - anon_sym_LBRACE, - [12972] = 1, + ts_builtin_sym_end, + [15715] = 1, ACTIONS(847), 1, - anon_sym_LT, - [12976] = 1, + anon_sym_LBRACE, + [15719] = 1, ACTIONS(849), 1, - sym_identifier, - [12980] = 1, + anon_sym_LBRACE, + [15723] = 1, ACTIONS(851), 1, - sym_identifier, - [12984] = 1, + anon_sym_LBRACE, + [15727] = 1, ACTIONS(853), 1, anon_sym_LBRACE, - [12988] = 1, + [15731] = 1, ACTIONS(855), 1, - sym_identifier, - [12992] = 1, + anon_sym_LBRACE, + [15735] = 1, ACTIONS(857), 1, - anon_sym_EQ, - [12996] = 1, + anon_sym_LBRACE, + [15739] = 1, ACTIONS(859), 1, anon_sym_LBRACE, - [13000] = 1, + [15743] = 1, ACTIONS(861), 1, - sym_identifier, - [13004] = 1, + anon_sym_LBRACE, + [15747] = 1, ACTIONS(863), 1, - sym_identifier, - [13008] = 1, + aux_sym_comment_token1, + [15751] = 1, ACTIONS(865), 1, anon_sym_LBRACE, - [13012] = 1, + [15755] = 1, ACTIONS(867), 1, anon_sym_LBRACE, - [13016] = 1, + [15759] = 1, ACTIONS(869), 1, anon_sym_LBRACE, - [13020] = 1, + [15763] = 1, ACTIONS(871), 1, - anon_sym_LBRACE, - [13024] = 1, - ACTIONS(873), 1, sym_identifier, - [13028] = 1, + [15767] = 1, + ACTIONS(873), 1, + anon_sym_LBRACE, + [15771] = 1, ACTIONS(875), 1, anon_sym_LT, - [13032] = 1, + [15775] = 1, ACTIONS(877), 1, - anon_sym_LT, - [13036] = 1, + sym_identifier, + [15779] = 1, ACTIONS(879), 1, - anon_sym_LT, - [13040] = 1, + anon_sym_LBRACE, + [15783] = 1, ACTIONS(881), 1, - anon_sym_LT, - [13044] = 1, + anon_sym_RBRACE, + [15787] = 1, ACTIONS(883), 1, + anon_sym_LBRACE, + [15791] = 1, + ACTIONS(885), 1, + anon_sym_RBRACE, + [15795] = 1, + ACTIONS(887), 1, + anon_sym_LBRACE, + [15799] = 1, + ACTIONS(889), 1, + anon_sym_RBRACE, + [15803] = 1, + ACTIONS(891), 1, + anon_sym_LBRACE, + [15807] = 1, + ACTIONS(893), 1, + anon_sym_from, + [15811] = 1, + ACTIONS(895), 1, + sym_identifier, + [15815] = 1, + ACTIONS(897), 1, + sym_identifier, + [15819] = 1, + ACTIONS(899), 1, + anon_sym_LBRACE, + [15823] = 1, + ACTIONS(901), 1, + anon_sym_LBRACE, + [15827] = 1, + ACTIONS(903), 1, + anon_sym_RBRACE, + [15831] = 1, + ACTIONS(905), 1, anon_sym_LT, + [15835] = 1, + ACTIONS(907), 1, + anon_sym_LBRACE, + [15839] = 1, + ACTIONS(909), 1, + anon_sym_LBRACE, + [15843] = 1, + ACTIONS(911), 1, + anon_sym_LBRACE, + [15847] = 1, + ACTIONS(913), 1, + anon_sym_EQ, + [15851] = 1, + ACTIONS(915), 1, + anon_sym_RBRACE, + [15855] = 1, + ACTIONS(917), 1, + sym_identifier, + [15859] = 1, + ACTIONS(919), 1, + sym_identifier, + [15863] = 1, + ACTIONS(921), 1, + anon_sym_from, + [15867] = 1, + ACTIONS(923), 1, + sym_identifier, + [15871] = 1, + ACTIONS(925), 1, + sym_identifier, + [15875] = 1, + ACTIONS(927), 1, + anon_sym_from, + [15879] = 1, + ACTIONS(929), 1, + anon_sym_LT, + [15883] = 1, + ACTIONS(931), 1, + anon_sym_LT, + [15887] = 1, + ACTIONS(933), 1, + anon_sym_LT, + [15891] = 1, + ACTIONS(935), 1, + sym_identifier, + [15895] = 1, + ACTIONS(937), 1, + sym_identifier, + [15899] = 1, + ACTIONS(939), 1, + anon_sym_from, + [15903] = 1, + ACTIONS(941), 1, + sym_identifier, + [15907] = 1, + ACTIONS(943), 1, + sym_identifier, + [15911] = 1, + ACTIONS(945), 1, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4)] = 0, - [SMALL_STATE(5)] = 87, - [SMALL_STATE(6)] = 174, - [SMALL_STATE(7)] = 261, - [SMALL_STATE(8)] = 348, - [SMALL_STATE(9)] = 435, - [SMALL_STATE(10)] = 522, - [SMALL_STATE(11)] = 609, - [SMALL_STATE(12)] = 696, - [SMALL_STATE(13)] = 783, - [SMALL_STATE(14)] = 870, - [SMALL_STATE(15)] = 957, - [SMALL_STATE(16)] = 1044, - [SMALL_STATE(17)] = 1131, - [SMALL_STATE(18)] = 1218, - [SMALL_STATE(19)] = 1305, - [SMALL_STATE(20)] = 1392, - [SMALL_STATE(21)] = 1479, - [SMALL_STATE(22)] = 1566, - [SMALL_STATE(23)] = 1653, - [SMALL_STATE(24)] = 1737, - [SMALL_STATE(25)] = 1821, - [SMALL_STATE(26)] = 1905, - [SMALL_STATE(27)] = 1989, - [SMALL_STATE(28)] = 2073, - [SMALL_STATE(29)] = 2157, - [SMALL_STATE(30)] = 2241, - [SMALL_STATE(31)] = 2325, - [SMALL_STATE(32)] = 2409, - [SMALL_STATE(33)] = 2493, - [SMALL_STATE(34)] = 2577, - [SMALL_STATE(35)] = 2661, - [SMALL_STATE(36)] = 2745, - [SMALL_STATE(37)] = 2829, - [SMALL_STATE(38)] = 2913, - [SMALL_STATE(39)] = 2997, - [SMALL_STATE(40)] = 3081, - [SMALL_STATE(41)] = 3165, - [SMALL_STATE(42)] = 3246, - [SMALL_STATE(43)] = 3327, - [SMALL_STATE(44)] = 3408, - [SMALL_STATE(45)] = 3489, - [SMALL_STATE(46)] = 3570, - [SMALL_STATE(47)] = 3651, - [SMALL_STATE(48)] = 3732, - [SMALL_STATE(49)] = 3813, - [SMALL_STATE(50)] = 3894, - [SMALL_STATE(51)] = 3975, - [SMALL_STATE(52)] = 4056, - [SMALL_STATE(53)] = 4137, - [SMALL_STATE(54)] = 4218, - [SMALL_STATE(55)] = 4299, - [SMALL_STATE(56)] = 4380, - [SMALL_STATE(57)] = 4461, - [SMALL_STATE(58)] = 4542, - [SMALL_STATE(59)] = 4623, - [SMALL_STATE(60)] = 4704, - [SMALL_STATE(61)] = 4785, - [SMALL_STATE(62)] = 4866, - [SMALL_STATE(63)] = 4947, - [SMALL_STATE(64)] = 5028, - [SMALL_STATE(65)] = 5109, - [SMALL_STATE(66)] = 5190, - [SMALL_STATE(67)] = 5268, - [SMALL_STATE(68)] = 5346, - [SMALL_STATE(69)] = 5424, - [SMALL_STATE(70)] = 5499, - [SMALL_STATE(71)] = 5574, - [SMALL_STATE(72)] = 5649, - [SMALL_STATE(73)] = 5724, - [SMALL_STATE(74)] = 5799, - [SMALL_STATE(75)] = 5874, - [SMALL_STATE(76)] = 5949, - [SMALL_STATE(77)] = 6024, - [SMALL_STATE(78)] = 6099, - [SMALL_STATE(79)] = 6174, - [SMALL_STATE(80)] = 6249, - [SMALL_STATE(81)] = 6324, - [SMALL_STATE(82)] = 6399, - [SMALL_STATE(83)] = 6446, - [SMALL_STATE(84)] = 6521, - [SMALL_STATE(85)] = 6596, - [SMALL_STATE(86)] = 6671, - [SMALL_STATE(87)] = 6746, - [SMALL_STATE(88)] = 6821, - [SMALL_STATE(89)] = 6896, - [SMALL_STATE(90)] = 6971, - [SMALL_STATE(91)] = 7046, - [SMALL_STATE(92)] = 7121, - [SMALL_STATE(93)] = 7196, - [SMALL_STATE(94)] = 7271, - [SMALL_STATE(95)] = 7317, - [SMALL_STATE(96)] = 7368, - [SMALL_STATE(97)] = 7419, - [SMALL_STATE(98)] = 7470, - [SMALL_STATE(99)] = 7521, - [SMALL_STATE(100)] = 7572, - [SMALL_STATE(101)] = 7622, - [SMALL_STATE(102)] = 7672, - [SMALL_STATE(103)] = 7722, - [SMALL_STATE(104)] = 7762, - [SMALL_STATE(105)] = 7812, - [SMALL_STATE(106)] = 7862, - [SMALL_STATE(107)] = 7902, - [SMALL_STATE(108)] = 7941, - [SMALL_STATE(109)] = 7978, - [SMALL_STATE(110)] = 8019, - [SMALL_STATE(111)] = 8056, - [SMALL_STATE(112)] = 8093, - [SMALL_STATE(113)] = 8130, - [SMALL_STATE(114)] = 8167, - [SMALL_STATE(115)] = 8204, - [SMALL_STATE(116)] = 8241, - [SMALL_STATE(117)] = 8278, - [SMALL_STATE(118)] = 8315, - [SMALL_STATE(119)] = 8352, - [SMALL_STATE(120)] = 8391, - [SMALL_STATE(121)] = 8428, - [SMALL_STATE(122)] = 8465, - [SMALL_STATE(123)] = 8502, - [SMALL_STATE(124)] = 8541, - [SMALL_STATE(125)] = 8578, - [SMALL_STATE(126)] = 8615, - [SMALL_STATE(127)] = 8652, - [SMALL_STATE(128)] = 8689, - [SMALL_STATE(129)] = 8728, - [SMALL_STATE(130)] = 8765, - [SMALL_STATE(131)] = 8802, - [SMALL_STATE(132)] = 8839, - [SMALL_STATE(133)] = 8880, - [SMALL_STATE(134)] = 8917, - [SMALL_STATE(135)] = 8953, - [SMALL_STATE(136)] = 8989, - [SMALL_STATE(137)] = 9025, - [SMALL_STATE(138)] = 9061, - [SMALL_STATE(139)] = 9097, - [SMALL_STATE(140)] = 9133, - [SMALL_STATE(141)] = 9169, - [SMALL_STATE(142)] = 9205, - [SMALL_STATE(143)] = 9243, - [SMALL_STATE(144)] = 9281, - [SMALL_STATE(145)] = 9317, - [SMALL_STATE(146)] = 9353, - [SMALL_STATE(147)] = 9389, - [SMALL_STATE(148)] = 9425, - [SMALL_STATE(149)] = 9461, - [SMALL_STATE(150)] = 9497, - [SMALL_STATE(151)] = 9533, - [SMALL_STATE(152)] = 9569, - [SMALL_STATE(153)] = 9605, - [SMALL_STATE(154)] = 9641, - [SMALL_STATE(155)] = 9677, - [SMALL_STATE(156)] = 9709, - [SMALL_STATE(157)] = 9735, - [SMALL_STATE(158)] = 9761, - [SMALL_STATE(159)] = 9788, - [SMALL_STATE(160)] = 9820, - [SMALL_STATE(161)] = 9844, - [SMALL_STATE(162)] = 9868, - [SMALL_STATE(163)] = 9900, - [SMALL_STATE(164)] = 9932, - [SMALL_STATE(165)] = 9964, - [SMALL_STATE(166)] = 9996, - [SMALL_STATE(167)] = 10022, - [SMALL_STATE(168)] = 10048, - [SMALL_STATE(169)] = 10089, - [SMALL_STATE(170)] = 10130, - [SMALL_STATE(171)] = 10171, - [SMALL_STATE(172)] = 10212, - [SMALL_STATE(173)] = 10253, - [SMALL_STATE(174)] = 10294, - [SMALL_STATE(175)] = 10335, - [SMALL_STATE(176)] = 10360, - [SMALL_STATE(177)] = 10385, - [SMALL_STATE(178)] = 10407, - [SMALL_STATE(179)] = 10447, - [SMALL_STATE(180)] = 10469, - [SMALL_STATE(181)] = 10491, - [SMALL_STATE(182)] = 10513, - [SMALL_STATE(183)] = 10553, - [SMALL_STATE(184)] = 10593, - [SMALL_STATE(185)] = 10619, - [SMALL_STATE(186)] = 10641, - [SMALL_STATE(187)] = 10665, - [SMALL_STATE(188)] = 10705, - [SMALL_STATE(189)] = 10745, - [SMALL_STATE(190)] = 10767, - [SMALL_STATE(191)] = 10789, - [SMALL_STATE(192)] = 10811, - [SMALL_STATE(193)] = 10833, - [SMALL_STATE(194)] = 10873, - [SMALL_STATE(195)] = 10895, - [SMALL_STATE(196)] = 10935, - [SMALL_STATE(197)] = 10957, - [SMALL_STATE(198)] = 10979, - [SMALL_STATE(199)] = 11001, - [SMALL_STATE(200)] = 11023, - [SMALL_STATE(201)] = 11047, - [SMALL_STATE(202)] = 11069, - [SMALL_STATE(203)] = 11091, - [SMALL_STATE(204)] = 11113, - [SMALL_STATE(205)] = 11135, - [SMALL_STATE(206)] = 11157, - [SMALL_STATE(207)] = 11179, - [SMALL_STATE(208)] = 11201, - [SMALL_STATE(209)] = 11223, - [SMALL_STATE(210)] = 11260, - [SMALL_STATE(211)] = 11297, - [SMALL_STATE(212)] = 11334, - [SMALL_STATE(213)] = 11371, - [SMALL_STATE(214)] = 11408, - [SMALL_STATE(215)] = 11445, - [SMALL_STATE(216)] = 11479, - [SMALL_STATE(217)] = 11503, - [SMALL_STATE(218)] = 11527, - [SMALL_STATE(219)] = 11551, - [SMALL_STATE(220)] = 11575, - [SMALL_STATE(221)] = 11599, - [SMALL_STATE(222)] = 11623, - [SMALL_STATE(223)] = 11647, - [SMALL_STATE(224)] = 11671, - [SMALL_STATE(225)] = 11695, - [SMALL_STATE(226)] = 11719, - [SMALL_STATE(227)] = 11740, - [SMALL_STATE(228)] = 11756, - [SMALL_STATE(229)] = 11772, - [SMALL_STATE(230)] = 11788, - [SMALL_STATE(231)] = 11804, - [SMALL_STATE(232)] = 11820, - [SMALL_STATE(233)] = 11836, - [SMALL_STATE(234)] = 11852, - [SMALL_STATE(235)] = 11868, - [SMALL_STATE(236)] = 11884, - [SMALL_STATE(237)] = 11900, - [SMALL_STATE(238)] = 11916, - [SMALL_STATE(239)] = 11932, - [SMALL_STATE(240)] = 11948, - [SMALL_STATE(241)] = 11964, - [SMALL_STATE(242)] = 11980, - [SMALL_STATE(243)] = 11996, - [SMALL_STATE(244)] = 12012, - [SMALL_STATE(245)] = 12028, - [SMALL_STATE(246)] = 12046, - [SMALL_STATE(247)] = 12062, - [SMALL_STATE(248)] = 12078, - [SMALL_STATE(249)] = 12094, - [SMALL_STATE(250)] = 12110, - [SMALL_STATE(251)] = 12126, - [SMALL_STATE(252)] = 12141, - [SMALL_STATE(253)] = 12153, - [SMALL_STATE(254)] = 12164, - [SMALL_STATE(255)] = 12175, - [SMALL_STATE(256)] = 12186, - [SMALL_STATE(257)] = 12197, - [SMALL_STATE(258)] = 12208, - [SMALL_STATE(259)] = 12219, - [SMALL_STATE(260)] = 12230, - [SMALL_STATE(261)] = 12241, - [SMALL_STATE(262)] = 12252, - [SMALL_STATE(263)] = 12263, - [SMALL_STATE(264)] = 12274, - [SMALL_STATE(265)] = 12285, - [SMALL_STATE(266)] = 12296, - [SMALL_STATE(267)] = 12307, - [SMALL_STATE(268)] = 12318, - [SMALL_STATE(269)] = 12328, - [SMALL_STATE(270)] = 12338, - [SMALL_STATE(271)] = 12348, - [SMALL_STATE(272)] = 12358, - [SMALL_STATE(273)] = 12368, - [SMALL_STATE(274)] = 12378, - [SMALL_STATE(275)] = 12388, - [SMALL_STATE(276)] = 12398, - [SMALL_STATE(277)] = 12408, - [SMALL_STATE(278)] = 12418, - [SMALL_STATE(279)] = 12428, - [SMALL_STATE(280)] = 12438, - [SMALL_STATE(281)] = 12448, - [SMALL_STATE(282)] = 12458, - [SMALL_STATE(283)] = 12468, - [SMALL_STATE(284)] = 12478, - [SMALL_STATE(285)] = 12486, - [SMALL_STATE(286)] = 12496, - [SMALL_STATE(287)] = 12506, - [SMALL_STATE(288)] = 12516, - [SMALL_STATE(289)] = 12526, - [SMALL_STATE(290)] = 12536, - [SMALL_STATE(291)] = 12546, - [SMALL_STATE(292)] = 12554, - [SMALL_STATE(293)] = 12564, - [SMALL_STATE(294)] = 12574, - [SMALL_STATE(295)] = 12584, - [SMALL_STATE(296)] = 12592, - [SMALL_STATE(297)] = 12602, - [SMALL_STATE(298)] = 12610, - [SMALL_STATE(299)] = 12620, - [SMALL_STATE(300)] = 12630, - [SMALL_STATE(301)] = 12640, - [SMALL_STATE(302)] = 12650, - [SMALL_STATE(303)] = 12660, - [SMALL_STATE(304)] = 12670, - [SMALL_STATE(305)] = 12675, - [SMALL_STATE(306)] = 12682, - [SMALL_STATE(307)] = 12689, - [SMALL_STATE(308)] = 12696, - [SMALL_STATE(309)] = 12703, - [SMALL_STATE(310)] = 12710, - [SMALL_STATE(311)] = 12715, - [SMALL_STATE(312)] = 12722, - [SMALL_STATE(313)] = 12727, - [SMALL_STATE(314)] = 12734, - [SMALL_STATE(315)] = 12741, - [SMALL_STATE(316)] = 12748, - [SMALL_STATE(317)] = 12755, - [SMALL_STATE(318)] = 12762, - [SMALL_STATE(319)] = 12769, - [SMALL_STATE(320)] = 12774, - [SMALL_STATE(321)] = 12779, - [SMALL_STATE(322)] = 12784, - [SMALL_STATE(323)] = 12791, - [SMALL_STATE(324)] = 12796, - [SMALL_STATE(325)] = 12803, - [SMALL_STATE(326)] = 12810, - [SMALL_STATE(327)] = 12815, - [SMALL_STATE(328)] = 12822, - [SMALL_STATE(329)] = 12827, - [SMALL_STATE(330)] = 12834, - [SMALL_STATE(331)] = 12839, - [SMALL_STATE(332)] = 12846, - [SMALL_STATE(333)] = 12851, - [SMALL_STATE(334)] = 12856, - [SMALL_STATE(335)] = 12860, - [SMALL_STATE(336)] = 12864, - [SMALL_STATE(337)] = 12868, - [SMALL_STATE(338)] = 12872, - [SMALL_STATE(339)] = 12876, - [SMALL_STATE(340)] = 12880, - [SMALL_STATE(341)] = 12884, - [SMALL_STATE(342)] = 12888, - [SMALL_STATE(343)] = 12892, - [SMALL_STATE(344)] = 12896, - [SMALL_STATE(345)] = 12900, - [SMALL_STATE(346)] = 12904, - [SMALL_STATE(347)] = 12908, - [SMALL_STATE(348)] = 12912, - [SMALL_STATE(349)] = 12916, - [SMALL_STATE(350)] = 12920, - [SMALL_STATE(351)] = 12924, - [SMALL_STATE(352)] = 12928, - [SMALL_STATE(353)] = 12932, - [SMALL_STATE(354)] = 12936, - [SMALL_STATE(355)] = 12940, - [SMALL_STATE(356)] = 12944, - [SMALL_STATE(357)] = 12948, - [SMALL_STATE(358)] = 12952, - [SMALL_STATE(359)] = 12956, - [SMALL_STATE(360)] = 12960, - [SMALL_STATE(361)] = 12964, - [SMALL_STATE(362)] = 12968, - [SMALL_STATE(363)] = 12972, - [SMALL_STATE(364)] = 12976, - [SMALL_STATE(365)] = 12980, - [SMALL_STATE(366)] = 12984, - [SMALL_STATE(367)] = 12988, - [SMALL_STATE(368)] = 12992, - [SMALL_STATE(369)] = 12996, - [SMALL_STATE(370)] = 13000, - [SMALL_STATE(371)] = 13004, - [SMALL_STATE(372)] = 13008, - [SMALL_STATE(373)] = 13012, - [SMALL_STATE(374)] = 13016, - [SMALL_STATE(375)] = 13020, - [SMALL_STATE(376)] = 13024, - [SMALL_STATE(377)] = 13028, - [SMALL_STATE(378)] = 13032, - [SMALL_STATE(379)] = 13036, - [SMALL_STATE(380)] = 13040, - [SMALL_STATE(381)] = 13044, + [SMALL_STATE(5)] = 85, + [SMALL_STATE(6)] = 170, + [SMALL_STATE(7)] = 255, + [SMALL_STATE(8)] = 340, + [SMALL_STATE(9)] = 425, + [SMALL_STATE(10)] = 510, + [SMALL_STATE(11)] = 595, + [SMALL_STATE(12)] = 680, + [SMALL_STATE(13)] = 765, + [SMALL_STATE(14)] = 850, + [SMALL_STATE(15)] = 935, + [SMALL_STATE(16)] = 1020, + [SMALL_STATE(17)] = 1105, + [SMALL_STATE(18)] = 1190, + [SMALL_STATE(19)] = 1275, + [SMALL_STATE(20)] = 1360, + [SMALL_STATE(21)] = 1442, + [SMALL_STATE(22)] = 1524, + [SMALL_STATE(23)] = 1606, + [SMALL_STATE(24)] = 1688, + [SMALL_STATE(25)] = 1770, + [SMALL_STATE(26)] = 1852, + [SMALL_STATE(27)] = 1934, + [SMALL_STATE(28)] = 2016, + [SMALL_STATE(29)] = 2098, + [SMALL_STATE(30)] = 2180, + [SMALL_STATE(31)] = 2262, + [SMALL_STATE(32)] = 2344, + [SMALL_STATE(33)] = 2426, + [SMALL_STATE(34)] = 2508, + [SMALL_STATE(35)] = 2590, + [SMALL_STATE(36)] = 2671, + [SMALL_STATE(37)] = 2752, + [SMALL_STATE(38)] = 2833, + [SMALL_STATE(39)] = 2914, + [SMALL_STATE(40)] = 2995, + [SMALL_STATE(41)] = 3076, + [SMALL_STATE(42)] = 3157, + [SMALL_STATE(43)] = 3238, + [SMALL_STATE(44)] = 3319, + [SMALL_STATE(45)] = 3400, + [SMALL_STATE(46)] = 3481, + [SMALL_STATE(47)] = 3562, + [SMALL_STATE(48)] = 3643, + [SMALL_STATE(49)] = 3724, + [SMALL_STATE(50)] = 3805, + [SMALL_STATE(51)] = 3886, + [SMALL_STATE(52)] = 3967, + [SMALL_STATE(53)] = 4048, + [SMALL_STATE(54)] = 4129, + [SMALL_STATE(55)] = 4210, + [SMALL_STATE(56)] = 4291, + [SMALL_STATE(57)] = 4372, + [SMALL_STATE(58)] = 4453, + [SMALL_STATE(59)] = 4534, + [SMALL_STATE(60)] = 4615, + [SMALL_STATE(61)] = 4696, + [SMALL_STATE(62)] = 4777, + [SMALL_STATE(63)] = 4858, + [SMALL_STATE(64)] = 4939, + [SMALL_STATE(65)] = 5020, + [SMALL_STATE(66)] = 5101, + [SMALL_STATE(67)] = 5182, + [SMALL_STATE(68)] = 5263, + [SMALL_STATE(69)] = 5341, + [SMALL_STATE(70)] = 5419, + [SMALL_STATE(71)] = 5497, + [SMALL_STATE(72)] = 5545, + [SMALL_STATE(73)] = 5620, + [SMALL_STATE(74)] = 5695, + [SMALL_STATE(75)] = 5770, + [SMALL_STATE(76)] = 5845, + [SMALL_STATE(77)] = 5920, + [SMALL_STATE(78)] = 5995, + [SMALL_STATE(79)] = 6070, + [SMALL_STATE(80)] = 6145, + [SMALL_STATE(81)] = 6220, + [SMALL_STATE(82)] = 6295, + [SMALL_STATE(83)] = 6370, + [SMALL_STATE(84)] = 6445, + [SMALL_STATE(85)] = 6520, + [SMALL_STATE(86)] = 6595, + [SMALL_STATE(87)] = 6670, + [SMALL_STATE(88)] = 6745, + [SMALL_STATE(89)] = 6820, + [SMALL_STATE(90)] = 6895, + [SMALL_STATE(91)] = 6970, + [SMALL_STATE(92)] = 7045, + [SMALL_STATE(93)] = 7120, + [SMALL_STATE(94)] = 7195, + [SMALL_STATE(95)] = 7270, + [SMALL_STATE(96)] = 7345, + [SMALL_STATE(97)] = 7420, + [SMALL_STATE(98)] = 7495, + [SMALL_STATE(99)] = 7570, + [SMALL_STATE(100)] = 7645, + [SMALL_STATE(101)] = 7720, + [SMALL_STATE(102)] = 7795, + [SMALL_STATE(103)] = 7870, + [SMALL_STATE(104)] = 7945, + [SMALL_STATE(105)] = 8020, + [SMALL_STATE(106)] = 8095, + [SMALL_STATE(107)] = 8170, + [SMALL_STATE(108)] = 8245, + [SMALL_STATE(109)] = 8292, + [SMALL_STATE(110)] = 8367, + [SMALL_STATE(111)] = 8442, + [SMALL_STATE(112)] = 8517, + [SMALL_STATE(113)] = 8592, + [SMALL_STATE(114)] = 8667, + [SMALL_STATE(115)] = 8742, + [SMALL_STATE(116)] = 8817, + [SMALL_STATE(117)] = 8892, + [SMALL_STATE(118)] = 8967, + [SMALL_STATE(119)] = 9042, + [SMALL_STATE(120)] = 9089, + [SMALL_STATE(121)] = 9164, + [SMALL_STATE(122)] = 9216, + [SMALL_STATE(123)] = 9268, + [SMALL_STATE(124)] = 9320, + [SMALL_STATE(125)] = 9374, + [SMALL_STATE(126)] = 9426, + [SMALL_STATE(127)] = 9470, + [SMALL_STATE(128)] = 9516, + [SMALL_STATE(129)] = 9567, + [SMALL_STATE(130)] = 9618, + [SMALL_STATE(131)] = 9659, + [SMALL_STATE(132)] = 9702, + [SMALL_STATE(133)] = 9743, + [SMALL_STATE(134)] = 9798, + [SMALL_STATE(135)] = 9849, + [SMALL_STATE(136)] = 9900, + [SMALL_STATE(137)] = 9941, + [SMALL_STATE(138)] = 9984, + [SMALL_STATE(139)] = 10037, + [SMALL_STATE(140)] = 10075, + [SMALL_STATE(141)] = 10113, + [SMALL_STATE(142)] = 10151, + [SMALL_STATE(143)] = 10189, + [SMALL_STATE(144)] = 10227, + [SMALL_STATE(145)] = 10265, + [SMALL_STATE(146)] = 10305, + [SMALL_STATE(147)] = 10343, + [SMALL_STATE(148)] = 10383, + [SMALL_STATE(149)] = 10433, + [SMALL_STATE(150)] = 10485, + [SMALL_STATE(151)] = 10531, + [SMALL_STATE(152)] = 10573, + [SMALL_STATE(153)] = 10613, + [SMALL_STATE(154)] = 10653, + [SMALL_STATE(155)] = 10691, + [SMALL_STATE(156)] = 10731, + [SMALL_STATE(157)] = 10769, + [SMALL_STATE(158)] = 10807, + [SMALL_STATE(159)] = 10845, + [SMALL_STATE(160)] = 10883, + [SMALL_STATE(161)] = 10921, + [SMALL_STATE(162)] = 10959, + [SMALL_STATE(163)] = 10997, + [SMALL_STATE(164)] = 11035, + [SMALL_STATE(165)] = 11073, + [SMALL_STATE(166)] = 11111, + [SMALL_STATE(167)] = 11149, + [SMALL_STATE(168)] = 11187, + [SMALL_STATE(169)] = 11225, + [SMALL_STATE(170)] = 11263, + [SMALL_STATE(171)] = 11300, + [SMALL_STATE(172)] = 11337, + [SMALL_STATE(173)] = 11374, + [SMALL_STATE(174)] = 11411, + [SMALL_STATE(175)] = 11448, + [SMALL_STATE(176)] = 11499, + [SMALL_STATE(177)] = 11536, + [SMALL_STATE(178)] = 11573, + [SMALL_STATE(179)] = 11610, + [SMALL_STATE(180)] = 11647, + [SMALL_STATE(181)] = 11684, + [SMALL_STATE(182)] = 11721, + [SMALL_STATE(183)] = 11766, + [SMALL_STATE(184)] = 11803, + [SMALL_STATE(185)] = 11846, + [SMALL_STATE(186)] = 11883, + [SMALL_STATE(187)] = 11920, + [SMALL_STATE(188)] = 11957, + [SMALL_STATE(189)] = 11994, + [SMALL_STATE(190)] = 12031, + [SMALL_STATE(191)] = 12068, + [SMALL_STATE(192)] = 12105, + [SMALL_STATE(193)] = 12142, + [SMALL_STATE(194)] = 12182, + [SMALL_STATE(195)] = 12232, + [SMALL_STATE(196)] = 12279, + [SMALL_STATE(197)] = 12318, + [SMALL_STATE(198)] = 12365, + [SMALL_STATE(199)] = 12412, + [SMALL_STATE(200)] = 12459, + [SMALL_STATE(201)] = 12506, + [SMALL_STATE(202)] = 12542, + [SMALL_STATE(203)] = 12578, + [SMALL_STATE(204)] = 12614, + [SMALL_STATE(205)] = 12645, + [SMALL_STATE(206)] = 12676, + [SMALL_STATE(207)] = 12708, + [SMALL_STATE(208)] = 12739, + [SMALL_STATE(209)] = 12764, + [SMALL_STATE(210)] = 12798, + [SMALL_STATE(211)] = 12822, + [SMALL_STATE(212)] = 12854, + [SMALL_STATE(213)] = 12882, + [SMALL_STATE(214)] = 12914, + [SMALL_STATE(215)] = 12946, + [SMALL_STATE(216)] = 12978, + [SMALL_STATE(217)] = 13010, + [SMALL_STATE(218)] = 13034, + [SMALL_STATE(219)] = 13059, + [SMALL_STATE(220)] = 13084, + [SMALL_STATE(221)] = 13117, + [SMALL_STATE(222)] = 13144, + [SMALL_STATE(223)] = 13167, + [SMALL_STATE(224)] = 13192, + [SMALL_STATE(225)] = 13221, + [SMALL_STATE(226)] = 13261, + [SMALL_STATE(227)] = 13283, + [SMALL_STATE(228)] = 13305, + [SMALL_STATE(229)] = 13327, + [SMALL_STATE(230)] = 13349, + [SMALL_STATE(231)] = 13371, + [SMALL_STATE(232)] = 13393, + [SMALL_STATE(233)] = 13415, + [SMALL_STATE(234)] = 13437, + [SMALL_STATE(235)] = 13459, + [SMALL_STATE(236)] = 13499, + [SMALL_STATE(237)] = 13521, + [SMALL_STATE(238)] = 13543, + [SMALL_STATE(239)] = 13583, + [SMALL_STATE(240)] = 13607, + [SMALL_STATE(241)] = 13629, + [SMALL_STATE(242)] = 13651, + [SMALL_STATE(243)] = 13673, + [SMALL_STATE(244)] = 13713, + [SMALL_STATE(245)] = 13753, + [SMALL_STATE(246)] = 13793, + [SMALL_STATE(247)] = 13815, + [SMALL_STATE(248)] = 13837, + [SMALL_STATE(249)] = 13859, + [SMALL_STATE(250)] = 13881, + [SMALL_STATE(251)] = 13903, + [SMALL_STATE(252)] = 13925, + [SMALL_STATE(253)] = 13947, + [SMALL_STATE(254)] = 13969, + [SMALL_STATE(255)] = 13995, + [SMALL_STATE(256)] = 14017, + [SMALL_STATE(257)] = 14054, + [SMALL_STATE(258)] = 14091, + [SMALL_STATE(259)] = 14118, + [SMALL_STATE(260)] = 14155, + [SMALL_STATE(261)] = 14182, + [SMALL_STATE(262)] = 14209, + [SMALL_STATE(263)] = 14246, + [SMALL_STATE(264)] = 14273, + [SMALL_STATE(265)] = 14310, + [SMALL_STATE(266)] = 14342, + [SMALL_STATE(267)] = 14362, + [SMALL_STATE(268)] = 14382, + [SMALL_STATE(269)] = 14402, + [SMALL_STATE(270)] = 14436, + [SMALL_STATE(271)] = 14465, + [SMALL_STATE(272)] = 14492, + [SMALL_STATE(273)] = 14516, + [SMALL_STATE(274)] = 14540, + [SMALL_STATE(275)] = 14564, + [SMALL_STATE(276)] = 14588, + [SMALL_STATE(277)] = 14612, + [SMALL_STATE(278)] = 14636, + [SMALL_STATE(279)] = 14660, + [SMALL_STATE(280)] = 14684, + [SMALL_STATE(281)] = 14708, + [SMALL_STATE(282)] = 14732, + [SMALL_STATE(283)] = 14756, + [SMALL_STATE(284)] = 14780, + [SMALL_STATE(285)] = 14801, + [SMALL_STATE(286)] = 14817, + [SMALL_STATE(287)] = 14833, + [SMALL_STATE(288)] = 14849, + [SMALL_STATE(289)] = 14865, + [SMALL_STATE(290)] = 14881, + [SMALL_STATE(291)] = 14899, + [SMALL_STATE(292)] = 14915, + [SMALL_STATE(293)] = 14931, + [SMALL_STATE(294)] = 14947, + [SMALL_STATE(295)] = 14963, + [SMALL_STATE(296)] = 14979, + [SMALL_STATE(297)] = 14995, + [SMALL_STATE(298)] = 15011, + [SMALL_STATE(299)] = 15027, + [SMALL_STATE(300)] = 15042, + [SMALL_STATE(301)] = 15054, + [SMALL_STATE(302)] = 15065, + [SMALL_STATE(303)] = 15076, + [SMALL_STATE(304)] = 15087, + [SMALL_STATE(305)] = 15098, + [SMALL_STATE(306)] = 15109, + [SMALL_STATE(307)] = 15120, + [SMALL_STATE(308)] = 15131, + [SMALL_STATE(309)] = 15142, + [SMALL_STATE(310)] = 15153, + [SMALL_STATE(311)] = 15164, + [SMALL_STATE(312)] = 15175, + [SMALL_STATE(313)] = 15186, + [SMALL_STATE(314)] = 15197, + [SMALL_STATE(315)] = 15208, + [SMALL_STATE(316)] = 15219, + [SMALL_STATE(317)] = 15229, + [SMALL_STATE(318)] = 15237, + [SMALL_STATE(319)] = 15247, + [SMALL_STATE(320)] = 15257, + [SMALL_STATE(321)] = 15267, + [SMALL_STATE(322)] = 15277, + [SMALL_STATE(323)] = 15287, + [SMALL_STATE(324)] = 15297, + [SMALL_STATE(325)] = 15307, + [SMALL_STATE(326)] = 15317, + [SMALL_STATE(327)] = 15325, + [SMALL_STATE(328)] = 15333, + [SMALL_STATE(329)] = 15343, + [SMALL_STATE(330)] = 15353, + [SMALL_STATE(331)] = 15363, + [SMALL_STATE(332)] = 15373, + [SMALL_STATE(333)] = 15383, + [SMALL_STATE(334)] = 15391, + [SMALL_STATE(335)] = 15401, + [SMALL_STATE(336)] = 15411, + [SMALL_STATE(337)] = 15421, + [SMALL_STATE(338)] = 15431, + [SMALL_STATE(339)] = 15441, + [SMALL_STATE(340)] = 15451, + [SMALL_STATE(341)] = 15459, + [SMALL_STATE(342)] = 15469, + [SMALL_STATE(343)] = 15479, + [SMALL_STATE(344)] = 15489, + [SMALL_STATE(345)] = 15499, + [SMALL_STATE(346)] = 15509, + [SMALL_STATE(347)] = 15519, + [SMALL_STATE(348)] = 15527, + [SMALL_STATE(349)] = 15537, + [SMALL_STATE(350)] = 15547, + [SMALL_STATE(351)] = 15557, + [SMALL_STATE(352)] = 15564, + [SMALL_STATE(353)] = 15569, + [SMALL_STATE(354)] = 15576, + [SMALL_STATE(355)] = 15583, + [SMALL_STATE(356)] = 15590, + [SMALL_STATE(357)] = 15595, + [SMALL_STATE(358)] = 15602, + [SMALL_STATE(359)] = 15609, + [SMALL_STATE(360)] = 15616, + [SMALL_STATE(361)] = 15621, + [SMALL_STATE(362)] = 15626, + [SMALL_STATE(363)] = 15631, + [SMALL_STATE(364)] = 15636, + [SMALL_STATE(365)] = 15641, + [SMALL_STATE(366)] = 15646, + [SMALL_STATE(367)] = 15651, + [SMALL_STATE(368)] = 15658, + [SMALL_STATE(369)] = 15663, + [SMALL_STATE(370)] = 15668, + [SMALL_STATE(371)] = 15675, + [SMALL_STATE(372)] = 15680, + [SMALL_STATE(373)] = 15687, + [SMALL_STATE(374)] = 15691, + [SMALL_STATE(375)] = 15695, + [SMALL_STATE(376)] = 15699, + [SMALL_STATE(377)] = 15703, + [SMALL_STATE(378)] = 15707, + [SMALL_STATE(379)] = 15711, + [SMALL_STATE(380)] = 15715, + [SMALL_STATE(381)] = 15719, + [SMALL_STATE(382)] = 15723, + [SMALL_STATE(383)] = 15727, + [SMALL_STATE(384)] = 15731, + [SMALL_STATE(385)] = 15735, + [SMALL_STATE(386)] = 15739, + [SMALL_STATE(387)] = 15743, + [SMALL_STATE(388)] = 15747, + [SMALL_STATE(389)] = 15751, + [SMALL_STATE(390)] = 15755, + [SMALL_STATE(391)] = 15759, + [SMALL_STATE(392)] = 15763, + [SMALL_STATE(393)] = 15767, + [SMALL_STATE(394)] = 15771, + [SMALL_STATE(395)] = 15775, + [SMALL_STATE(396)] = 15779, + [SMALL_STATE(397)] = 15783, + [SMALL_STATE(398)] = 15787, + [SMALL_STATE(399)] = 15791, + [SMALL_STATE(400)] = 15795, + [SMALL_STATE(401)] = 15799, + [SMALL_STATE(402)] = 15803, + [SMALL_STATE(403)] = 15807, + [SMALL_STATE(404)] = 15811, + [SMALL_STATE(405)] = 15815, + [SMALL_STATE(406)] = 15819, + [SMALL_STATE(407)] = 15823, + [SMALL_STATE(408)] = 15827, + [SMALL_STATE(409)] = 15831, + [SMALL_STATE(410)] = 15835, + [SMALL_STATE(411)] = 15839, + [SMALL_STATE(412)] = 15843, + [SMALL_STATE(413)] = 15847, + [SMALL_STATE(414)] = 15851, + [SMALL_STATE(415)] = 15855, + [SMALL_STATE(416)] = 15859, + [SMALL_STATE(417)] = 15863, + [SMALL_STATE(418)] = 15867, + [SMALL_STATE(419)] = 15871, + [SMALL_STATE(420)] = 15875, + [SMALL_STATE(421)] = 15879, + [SMALL_STATE(422)] = 15883, + [SMALL_STATE(423)] = 15887, + [SMALL_STATE(424)] = 15891, + [SMALL_STATE(425)] = 15895, + [SMALL_STATE(426)] = 15899, + [SMALL_STATE(427)] = 15903, + [SMALL_STATE(428)] = 15907, + [SMALL_STATE(429)] = 15911, }; 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(94), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [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(94), - [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(347), - [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(150), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(150), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(151), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(212), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(317), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(363), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(359), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(358), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(284), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(86), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(73), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(341), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(94), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(80), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(150), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(150), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(151), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(212), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(317), - [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(363), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(359), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(358), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(284), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(86), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(73), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(341), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(70), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(155), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(79), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(194), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(194), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(196), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(210), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(325), - [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(377), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(362), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(349), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(295), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(72), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(81), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(343), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(69), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 1), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 1), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(174), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(236), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(236), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(227), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(213), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(327), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(379), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(373), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(231), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(231), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(229), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(214), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(305), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(378), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(351), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(212), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(297), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(368), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [801] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(108), + [40] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(388), + [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(113), + [46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(179), + [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(179), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(180), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(257), + [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(358), + [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(394), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(390), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(373), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(317), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(83), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(81), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(384), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(79), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(108), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(113), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(179), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(179), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(180), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(257), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(358), + [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(394), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(390), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(373), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(317), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(83), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(81), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(384), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(79), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(184), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(113), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(179), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(179), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(180), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(257), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(358), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(394), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(390), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(428), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(326), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(116), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(81), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(384), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(79), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(224), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(106), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(236), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(236), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(231), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(264), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(372), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(409), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(429), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(377), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(340), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(102), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(110), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(389), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(74), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(89), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(103), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 1), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 1), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(93), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(94), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(298), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(298), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(297), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(256), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(359), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(421), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(406), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(257), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(413), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(112), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(333), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [845] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), }; #ifdef __cplusplus