From e6d83563ec0f31c8afe69ca4c7f2004ae8a69d5d Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 5 Oct 2023 08:42:52 -0400 Subject: [PATCH] Fix errors; Remove map keyword --- bindings/dust | 2 +- corpus/maps.txt | 18 +- examples/variables.ds | 23 +- grammar.js | 1 - src/grammar.json | 4 - src/node-types.json | 4 - src/parser.c | 19454 ++++++++++++++++++++-------------------- 7 files changed, 9705 insertions(+), 9801 deletions(-) diff --git a/bindings/dust b/bindings/dust index 7fa5dd0..f30dfe6 160000 --- a/bindings/dust +++ b/bindings/dust @@ -1 +1 @@ -Subproject commit 7fa5dd0f54e389052274affd8237040af545b938 +Subproject commit f30dfe64313e6d056241a18860f76653a8dd11e3 diff --git a/corpus/maps.txt b/corpus/maps.txt index 1cddf87..398b14f 100644 --- a/corpus/maps.txt +++ b/corpus/maps.txt @@ -2,7 +2,7 @@ Simple Map ================== -map { +{ answer = 42 } @@ -22,7 +22,7 @@ map { Map Assignment ================== -x = map { +{ answer = 42 } @@ -32,15 +32,11 @@ x = map { (item (statement (expression - (assignment - (identifier) - (statement - (expression - (value - (map - (identifier) - (value - (integer))))))))))) + (value + (map + (identifier) + (value + (integer)))))))) ================== Map Access diff --git a/examples/variables.ds b/examples/variables.ds index 79e306c..94be0d8 100644 --- a/examples/variables.ds +++ b/examples/variables.ds @@ -1,13 +1,10 @@ -# Dust is data-oriented, so variables are declared with minimal syntax. A -# single character, the assignment operator (`=`), sets a variable. - -x = 1; -y = "hello dust!"; -z = 42.0; -list = (3, 2, x); -big_list = (x, y, z, list); -map.x = "foobar"; -function = ' - message = "I am a function!"; - output message; -'; \ No newline at end of file +x = 1 +y = "hello dust!" +z = 42.0 +list = (3, 2, x) +big_list = (x, y, z, list) +foo = { + x = "bar" + y = 42 + z = 0 +} diff --git a/grammar.js b/grammar.js index df10cb2..908ef52 100644 --- a/grammar.js +++ b/grammar.js @@ -93,7 +93,6 @@ module.exports = grammar({ ), map: $ => seq( - 'map', '{', repeat(seq($.identifier, "=", $.value)), '}', diff --git a/src/grammar.json b/src/grammar.json index 588e4a2..f84f738 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -411,10 +411,6 @@ "map": { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "map" - }, { "type": "STRING", "value": "{" diff --git a/src/node-types.json b/src/node-types.json index b7c6e69..bb3a2eb 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -611,10 +611,6 @@ "type": "loop", "named": false }, - { - "type": "map", - "named": false - }, { "type": "match", "named": false diff --git a/src/parser.c b/src/parser.c index 888d0b8..dc773d9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 431 +#define STATE_COUNT 426 #define LARGE_STATE_COUNT 4 -#define SYMBOL_COUNT 82 +#define SYMBOL_COUNT 81 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 47 +#define TOKEN_COUNT 46 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -37,67 +37,66 @@ enum { anon_sym_LBRACE = 18, anon_sym_RBRACE = 19, anon_sym_table = 20, - anon_sym_map = 21, - anon_sym_EQ = 22, - anon_sym_PLUS = 23, - anon_sym_DASH = 24, - anon_sym_STAR = 25, - anon_sym_SLASH = 26, - anon_sym_PERCENT = 27, - anon_sym_EQ_EQ = 28, - anon_sym_AMP_AMP = 29, - anon_sym_PIPE_PIPE = 30, - anon_sym_and = 31, - anon_sym_or = 32, - anon_sym_PLUS_EQ = 33, - anon_sym_DASH_EQ = 34, - anon_sym_select = 35, - anon_sym_from = 36, - anon_sym_where = 37, - anon_sym_insert = 38, - anon_sym_into = 39, - anon_sym_if = 40, - anon_sym_then = 41, - anon_sym_else = 42, - anon_sym_while = 43, - anon_sym_loop = 44, - anon_sym_match = 45, - anon_sym_EQ_GT = 46, - sym_root = 47, - sym_item = 48, - sym_comment = 49, - sym_statement = 50, - sym_yield = 51, - sym_expression = 52, - sym__expression_kind = 53, - sym_value = 54, - sym_boolean = 55, - sym_list = 56, - sym_function = 57, - sym_table = 58, - sym_map = 59, - sym_math = 60, - sym_math_operator = 61, - sym_logic = 62, - sym_logic_operator = 63, - sym_assignment = 64, - sym_select = 65, - sym_insert = 66, - sym_control_flow = 67, - sym_function_call = 68, - sym_loop = 69, - sym_while_loop = 70, - sym_break_loop = 71, - sym_match = 72, - aux_sym_root_repeat1 = 73, - 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, + anon_sym_EQ = 21, + anon_sym_PLUS = 22, + anon_sym_DASH = 23, + anon_sym_STAR = 24, + anon_sym_SLASH = 25, + anon_sym_PERCENT = 26, + anon_sym_EQ_EQ = 27, + anon_sym_AMP_AMP = 28, + anon_sym_PIPE_PIPE = 29, + anon_sym_and = 30, + anon_sym_or = 31, + anon_sym_PLUS_EQ = 32, + anon_sym_DASH_EQ = 33, + anon_sym_select = 34, + anon_sym_from = 35, + anon_sym_where = 36, + anon_sym_insert = 37, + anon_sym_into = 38, + anon_sym_if = 39, + anon_sym_then = 40, + anon_sym_else = 41, + anon_sym_while = 42, + anon_sym_loop = 43, + anon_sym_match = 44, + anon_sym_EQ_GT = 45, + sym_root = 46, + sym_item = 47, + sym_comment = 48, + sym_statement = 49, + sym_yield = 50, + sym_expression = 51, + sym__expression_kind = 52, + sym_value = 53, + sym_boolean = 54, + sym_list = 55, + sym_function = 56, + sym_table = 57, + sym_map = 58, + sym_math = 59, + sym_math_operator = 60, + sym_logic = 61, + sym_logic_operator = 62, + sym_assignment = 63, + sym_select = 64, + sym_insert = 65, + sym_control_flow = 66, + sym_function_call = 67, + sym_loop = 68, + sym_while_loop = 69, + sym_break_loop = 70, + sym_match = 71, + aux_sym_root_repeat1 = 72, + aux_sym_yield_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, }; static const char * const ts_symbol_names[] = { @@ -122,7 +121,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_table] = "table", - [anon_sym_map] = "map", [anon_sym_EQ] = "=", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", @@ -207,7 +205,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_table] = anon_sym_table, - [anon_sym_map] = anon_sym_map, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, @@ -355,10 +352,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_map] = { - .visible = true, - .named = false, - }, [anon_sym_EQ] = { .visible = true, .named = false, @@ -643,432 +636,427 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 4, - [6] = 6, + [5] = 5, + [6] = 4, [7] = 7, - [8] = 4, - [9] = 9, - [10] = 6, - [11] = 4, + [8] = 5, + [9] = 4, + [10] = 4, + [11] = 5, [12] = 7, [13] = 4, - [14] = 6, + [14] = 7, [15] = 7, - [16] = 6, - [17] = 6, - [18] = 7, - [19] = 7, + [16] = 7, + [17] = 17, + [18] = 5, + [19] = 5, [20] = 20, - [21] = 20, - [22] = 22, - [23] = 23, - [24] = 23, + [21] = 21, + [22] = 21, + [23] = 20, + [24] = 24, [25] = 20, - [26] = 20, - [27] = 22, - [28] = 22, - [29] = 23, - [30] = 22, - [31] = 23, - [32] = 20, - [33] = 22, - [34] = 23, + [26] = 21, + [27] = 24, + [28] = 24, + [29] = 20, + [30] = 21, + [31] = 24, + [32] = 21, + [33] = 24, + [34] = 20, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 37, + [39] = 39, [40] = 40, - [41] = 38, - [42] = 42, - [43] = 38, - [44] = 44, + [41] = 35, + [42] = 38, + [43] = 36, + [44] = 40, [45] = 45, - [46] = 38, - [47] = 47, - [48] = 38, - [49] = 37, - [50] = 35, - [51] = 45, - [52] = 36, - [53] = 40, - [54] = 36, - [55] = 35, - [56] = 42, - [57] = 45, - [58] = 58, - [59] = 59, + [46] = 46, + [47] = 45, + [48] = 48, + [49] = 39, + [50] = 46, + [51] = 38, + [52] = 38, + [53] = 46, + [54] = 45, + [55] = 55, + [56] = 40, + [57] = 37, + [58] = 35, + [59] = 37, [60] = 60, - [61] = 40, - [62] = 37, - [63] = 42, - [64] = 47, - [65] = 42, - [66] = 42, - [67] = 37, - [68] = 47, + [61] = 37, + [62] = 36, + [63] = 39, + [64] = 38, + [65] = 46, + [66] = 46, + [67] = 67, + [68] = 37, [69] = 69, - [70] = 70, - [71] = 69, - [72] = 44, - [73] = 69, + [70] = 69, + [71] = 67, + [72] = 69, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, [77] = 77, - [78] = 74, + [78] = 75, [79] = 79, - [80] = 75, - [81] = 77, - [82] = 76, - [83] = 83, - [84] = 74, - [85] = 74, - [86] = 86, - [87] = 87, - [88] = 77, - [89] = 86, - [90] = 75, - [91] = 91, - [92] = 83, - [93] = 86, - [94] = 76, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 75, + [84] = 75, + [85] = 81, + [86] = 82, + [87] = 75, + [88] = 80, + [89] = 75, + [90] = 90, + [91] = 75, + [92] = 79, + [93] = 90, + [94] = 79, [95] = 79, - [96] = 91, - [97] = 91, - [98] = 74, - [99] = 77, - [100] = 76, - [101] = 79, - [102] = 75, - [103] = 103, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 74, + [100] = 82, + [101] = 90, + [102] = 97, + [103] = 81, [104] = 104, - [105] = 70, - [106] = 87, - [107] = 75, - [108] = 86, - [109] = 103, - [110] = 74, - [111] = 111, - [112] = 112, - [113] = 83, - [114] = 114, - [115] = 103, - [116] = 76, - [117] = 77, - [118] = 86, - [119] = 74, - [120] = 87, + [105] = 90, + [106] = 79, + [107] = 98, + [108] = 74, + [109] = 82, + [110] = 81, + [111] = 98, + [112] = 97, + [113] = 75, + [114] = 98, + [115] = 74, + [116] = 98, + [117] = 90, + [118] = 80, + [119] = 119, + [120] = 119, [121] = 121, - [122] = 122, - [123] = 87, - [124] = 83, - [125] = 87, - [126] = 74, - [127] = 83, - [128] = 128, + [122] = 119, + [123] = 123, + [124] = 74, + [125] = 73, + [126] = 81, + [127] = 82, + [128] = 121, [129] = 129, - [130] = 111, - [131] = 114, + [130] = 130, + [131] = 77, [132] = 132, [133] = 133, - [134] = 112, - [135] = 104, - [136] = 121, - [137] = 122, - [138] = 138, + [134] = 76, + [135] = 96, + [136] = 104, + [137] = 123, + [138] = 73, [139] = 139, [140] = 140, - [141] = 128, - [142] = 129, + [141] = 141, + [142] = 142, [143] = 143, - [144] = 143, - [145] = 70, - [146] = 146, + [144] = 133, + [145] = 145, + [146] = 73, [147] = 147, [148] = 148, - [149] = 132, + [149] = 149, [150] = 150, - [151] = 151, - [152] = 133, - [153] = 70, - [154] = 140, + [151] = 132, + [152] = 152, + [153] = 153, + [154] = 154, [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, + [156] = 149, + [157] = 129, + [158] = 130, [159] = 159, [160] = 160, [161] = 161, [162] = 162, [163] = 163, - [164] = 164, + [164] = 139, [165] = 165, [166] = 166, [167] = 167, - [168] = 104, - [169] = 138, - [170] = 139, - [171] = 151, + [168] = 141, + [169] = 147, + [170] = 162, + [171] = 96, [172] = 150, - [173] = 112, - [174] = 148, - [175] = 157, - [176] = 147, - [177] = 163, - [178] = 158, - [179] = 161, - [180] = 156, - [181] = 164, + [173] = 163, + [174] = 104, + [175] = 161, + [176] = 160, + [177] = 145, + [178] = 148, + [179] = 165, + [180] = 153, + [181] = 143, [182] = 155, - [183] = 167, - [184] = 112, - [185] = 160, - [186] = 159, - [187] = 166, - [188] = 162, - [189] = 165, - [190] = 146, - [191] = 44, - [192] = 70, - [193] = 132, - [194] = 112, - [195] = 195, - [196] = 111, - [197] = 132, - [198] = 114, - [199] = 121, - [200] = 122, + [183] = 67, + [184] = 154, + [185] = 73, + [186] = 152, + [187] = 159, + [188] = 167, + [189] = 96, + [190] = 166, + [191] = 140, + [192] = 142, + [193] = 133, + [194] = 96, + [195] = 77, + [196] = 123, + [197] = 133, + [198] = 76, + [199] = 199, + [200] = 121, [201] = 129, - [202] = 143, - [203] = 128, + [202] = 130, + [203] = 149, [204] = 132, [205] = 133, - [206] = 44, - [207] = 70, - [208] = 155, - [209] = 121, - [210] = 70, - [211] = 112, + [206] = 67, + [207] = 163, + [208] = 73, + [209] = 73, + [210] = 123, + [211] = 121, [212] = 104, - [213] = 111, - [214] = 214, - [215] = 215, - [216] = 114, - [217] = 122, + [213] = 76, + [214] = 77, + [215] = 96, + [216] = 216, + [217] = 217, [218] = 218, [219] = 133, - [220] = 128, + [220] = 132, [221] = 129, - [222] = 44, + [222] = 130, [223] = 223, - [224] = 112, - [225] = 132, - [226] = 146, + [224] = 67, + [225] = 96, + [226] = 226, [227] = 140, - [228] = 228, - [229] = 158, - [230] = 138, - [231] = 143, - [232] = 139, - [233] = 163, - [234] = 164, - [235] = 147, - [236] = 228, - [237] = 166, - [238] = 228, - [239] = 228, - [240] = 240, - [241] = 167, - [242] = 161, + [228] = 160, + [229] = 148, + [230] = 155, + [231] = 154, + [232] = 232, + [233] = 167, + [234] = 166, + [235] = 145, + [236] = 141, + [237] = 139, + [238] = 149, + [239] = 150, + [240] = 163, + [241] = 142, + [242] = 242, [243] = 243, - [244] = 157, - [245] = 245, - [246] = 150, - [247] = 160, - [248] = 156, - [249] = 159, - [250] = 151, - [251] = 165, - [252] = 162, - [253] = 132, - [254] = 148, - [255] = 155, - [256] = 228, - [257] = 257, - [258] = 257, - [259] = 121, - [260] = 257, - [261] = 122, - [262] = 257, - [263] = 114, - [264] = 257, - [265] = 111, - [266] = 70, - [267] = 267, - [268] = 143, - [269] = 128, - [270] = 129, - [271] = 112, + [244] = 226, + [245] = 165, + [246] = 147, + [247] = 162, + [248] = 226, + [249] = 226, + [250] = 152, + [251] = 153, + [252] = 143, + [253] = 161, + [254] = 226, + [255] = 159, + [256] = 133, + [257] = 121, + [258] = 258, + [259] = 77, + [260] = 258, + [261] = 258, + [262] = 76, + [263] = 258, + [264] = 258, + [265] = 123, + [266] = 130, + [267] = 129, + [268] = 268, + [269] = 149, + [270] = 73, + [271] = 96, [272] = 104, [273] = 273, [274] = 274, [275] = 274, - [276] = 276, - [277] = 273, - [278] = 276, - [279] = 273, - [280] = 274, - [281] = 281, - [282] = 274, - [283] = 274, - [284] = 276, + [276] = 274, + [277] = 274, + [278] = 278, + [279] = 274, + [280] = 280, + [281] = 280, + [282] = 278, + [283] = 278, + [284] = 280, [285] = 285, - [286] = 157, - [287] = 287, + [286] = 286, + [287] = 145, [288] = 147, - [289] = 138, - [290] = 156, - [291] = 146, - [292] = 287, - [293] = 148, - [294] = 150, - [295] = 287, - [296] = 140, - [297] = 139, - [298] = 151, - [299] = 299, + [289] = 143, + [290] = 150, + [291] = 139, + [292] = 142, + [293] = 141, + [294] = 294, + [295] = 167, + [296] = 286, + [297] = 148, + [298] = 286, + [299] = 166, [300] = 300, [301] = 301, [302] = 302, - [303] = 302, + [303] = 303, [304] = 304, - [305] = 302, - [306] = 302, - [307] = 304, - [308] = 308, - [309] = 308, - [310] = 304, - [311] = 308, - [312] = 302, - [313] = 308, - [314] = 308, - [315] = 304, - [316] = 304, + [305] = 304, + [306] = 303, + [307] = 303, + [308] = 302, + [309] = 304, + [310] = 303, + [311] = 303, + [312] = 304, + [313] = 302, + [314] = 304, + [315] = 302, + [316] = 302, [317] = 317, - [318] = 318, - [319] = 319, + [318] = 317, + [319] = 132, [320] = 320, [321] = 321, [322] = 322, - [323] = 320, - [324] = 324, - [325] = 318, - [326] = 318, - [327] = 324, - [328] = 318, - [329] = 319, - [330] = 330, - [331] = 319, - [332] = 330, - [333] = 319, - [334] = 330, - [335] = 132, - [336] = 133, - [337] = 324, - [338] = 324, - [339] = 324, - [340] = 320, - [341] = 319, - [342] = 318, - [343] = 330, - [344] = 344, - [345] = 320, - [346] = 344, - [347] = 344, - [348] = 330, - [349] = 344, - [350] = 344, - [351] = 320, + [323] = 323, + [324] = 321, + [325] = 317, + [326] = 321, + [327] = 133, + [328] = 320, + [329] = 322, + [330] = 320, + [331] = 320, + [332] = 317, + [333] = 333, + [334] = 321, + [335] = 335, + [336] = 333, + [337] = 322, + [338] = 333, + [339] = 339, + [340] = 317, + [341] = 335, + [342] = 335, + [343] = 321, + [344] = 320, + [345] = 345, + [346] = 333, + [347] = 335, + [348] = 322, + [349] = 335, + [350] = 322, + [351] = 333, [352] = 352, - [353] = 147, + [353] = 353, [354] = 354, - [355] = 352, - [356] = 352, - [357] = 357, - [358] = 352, - [359] = 359, - [360] = 359, - [361] = 157, - [362] = 156, - [363] = 148, - [364] = 151, + [355] = 141, + [356] = 143, + [357] = 353, + [358] = 145, + [359] = 353, + [360] = 147, + [361] = 361, + [362] = 353, + [363] = 142, + [364] = 150, [365] = 352, - [366] = 359, - [367] = 139, - [368] = 150, - [369] = 359, - [370] = 140, - [371] = 359, - [372] = 146, - [373] = 138, + [366] = 353, + [367] = 352, + [368] = 352, + [369] = 139, + [370] = 352, + [371] = 148, + [372] = 167, + [373] = 166, [374] = 374, [375] = 375, [376] = 376, [377] = 377, - [378] = 376, - [379] = 377, - [380] = 376, + [378] = 378, + [379] = 379, + [380] = 380, [381] = 377, - [382] = 376, - [383] = 375, + [382] = 382, + [383] = 383, [384] = 384, - [385] = 385, + [385] = 374, [386] = 386, - [387] = 385, - [388] = 388, - [389] = 374, - [390] = 390, - [391] = 390, - [392] = 388, - [393] = 393, - [394] = 375, - [395] = 395, - [396] = 385, - [397] = 374, - [398] = 386, - [399] = 374, - [400] = 400, - [401] = 393, - [402] = 390, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 386, - [407] = 405, - [408] = 377, - [409] = 405, - [410] = 395, - [411] = 388, - [412] = 404, - [413] = 404, - [414] = 374, - [415] = 376, - [416] = 393, - [417] = 375, - [418] = 388, - [419] = 377, - [420] = 390, - [421] = 386, - [422] = 395, - [423] = 395, - [424] = 395, - [425] = 393, - [426] = 375, - [427] = 388, - [428] = 386, - [429] = 390, - [430] = 393, + [387] = 376, + [388] = 384, + [389] = 376, + [390] = 384, + [391] = 383, + [392] = 380, + [393] = 382, + [394] = 374, + [395] = 379, + [396] = 378, + [397] = 377, + [398] = 376, + [399] = 376, + [400] = 384, + [401] = 380, + [402] = 402, + [403] = 384, + [404] = 383, + [405] = 386, + [406] = 406, + [407] = 407, + [408] = 383, + [409] = 378, + [410] = 383, + [411] = 382, + [412] = 379, + [413] = 407, + [414] = 379, + [415] = 374, + [416] = 382, + [417] = 386, + [418] = 386, + [419] = 386, + [420] = 382, + [421] = 379, + [422] = 407, + [423] = 407, + [424] = 374, + [425] = 407, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1076,102 +1064,101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(49); + if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '%') ADVANCE(123); + if (lookahead == '#') ADVANCE(48); + if (lookahead == '%') ADVANCE(117); if (lookahead == '&') ADVANCE(4); if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(115); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); - if (lookahead == ']') ADVANCE(103); + if (lookahead == '(') ADVANCE(52); + if (lookahead == ')') ADVANCE(53); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(111); + if (lookahead == ',') ADVANCE(98); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(109); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); + if (lookahead == ']') ADVANCE(99); if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'e') ADVANCE(73); - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(57); - if (lookahead == 'o') ADVANCE(82); - if (lookahead == 't') ADVANCE(58); - if (lookahead == 'w') ADVANCE(71); - if (lookahead == '{') ADVANCE(108); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(109); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'f') ADVANCE(57); + if (lookahead == 'o') ADVANCE(78); + if (lookahead == 't') ADVANCE(55); + if (lookahead == 'w') ADVANCE(68); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 1: if (lookahead == '"') ADVANCE(2); if (lookahead == '\'') ADVANCE(5); - if (lookahead == ',') ADVANCE(102); + if (lookahead == ',') ADVANCE(98); if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '[') ADVANCE(101); - if (lookahead == ']') ADVANCE(103); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '[') ADVANCE(97); + if (lookahead == ']') ADVANCE(99); if (lookahead == '`') ADVANCE(10); - if (lookahead == 'f') ADVANCE(13); - if (lookahead == 'm') ADVANCE(11); - if (lookahead == 't') ADVANCE(12); + if (lookahead == 'f') ADVANCE(12); + if (lookahead == 't') ADVANCE(11); + if (lookahead == '{') ADVANCE(104); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(94); + if (lookahead == '"') ADVANCE(90); if (lookahead != 0 && lookahead != '\n') ADVANCE(2); END_STATE(); case 3: - if (lookahead == '%') ADVANCE(123); + if (lookahead == '%') ADVANCE(117); if (lookahead == '&') ADVANCE(4); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(117); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(115); - if (lookahead == 'a') ADVANCE(30); - if (lookahead == 'e') ADVANCE(27); - if (lookahead == 'o') ADVANCE(36); - if (lookahead == 't') ADVANCE(24); - if (lookahead == 'w') ADVANCE(25); - if (lookahead == '{') ADVANCE(108); - if (lookahead == '|') ADVANCE(42); - if (lookahead == '}') ADVANCE(109); + if (lookahead == ')') ADVANCE(53); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(111); + if (lookahead == '-') ADVANCE(114); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(109); + if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'o') ADVANCE(34); + if (lookahead == 't') ADVANCE(23); + if (lookahead == 'w') ADVANCE(24); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(40); + if (lookahead == '}') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) END_STATE(); case 4: - if (lookahead == '&') ADVANCE(125); + if (lookahead == '&') ADVANCE(119); END_STATE(); case 5: - if (lookahead == '\'') ADVANCE(95); + if (lookahead == '\'') ADVANCE(91); if (lookahead != 0 && lookahead != '\n') ADVANCE(5); END_STATE(); case 6: - if (lookahead == ',') ADVANCE(102); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); - if (lookahead == '}') ADVANCE(109); + if (lookahead == ',') ADVANCE(98); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); + if (lookahead == '}') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1179,854 +1166,818 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 7: if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '>') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '>') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 8: if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); + if (lookahead == '.') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 10: - if (lookahead == '`') ADVANCE(96); + if (lookahead == '`') ADVANCE(92); if (lookahead != 0 && lookahead != '\n') ADVANCE(10); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'a') ADVANCE(13); + if (lookahead == 'r') ADVANCE(39); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(14); - if (lookahead == 'r') ADVANCE(41); + if (lookahead == 'a') ADVANCE(28); + if (lookahead == 'u') ADVANCE(31); END_STATE(); case 13: - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'b') ADVANCE(27); END_STATE(); case 14: - if (lookahead == 'b') ADVANCE(28); + if (lookahead == 'c') ADVANCE(38); END_STATE(); case 15: - if (lookahead == 'c') ADVANCE(40); + if (lookahead == 'd') ADVANCE(122); END_STATE(); case 16: - if (lookahead == 'd') ADVANCE(128); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 18: - if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 20: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(106); END_STATE(); case 21: - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 'e') ADVANCE(30); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(31); + if (lookahead == 'e') ADVANCE(35); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(37); + if (lookahead == 'h') ADVANCE(21); END_STATE(); case 24: if (lookahead == 'h') ADVANCE(22); END_STATE(); case 25: - if (lookahead == 'h') ADVANCE(23); + if (lookahead == 'i') ADVANCE(33); END_STATE(); case 26: - if (lookahead == 'i') ADVANCE(34); + if (lookahead == 'l') ADVANCE(36); END_STATE(); case 27: - if (lookahead == 'l') ADVANCE(38); + if (lookahead == 'l') ADVANCE(20); END_STATE(); case 28: - if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'l') ADVANCE(37); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(39); - END_STATE(); - case 30: - if (lookahead == 'n') ADVANCE(16); - END_STATE(); - case 31: - if (lookahead == 'n') ADVANCE(136); - END_STATE(); - case 32: if (lookahead == 'n') ADVANCE(15); END_STATE(); + case 30: + if (lookahead == 'n') ADVANCE(130); + END_STATE(); + case 31: + if (lookahead == 'n') ADVANCE(14); + END_STATE(); + case 32: + if (lookahead == 'n') ADVANCE(100); + END_STATE(); case 33: - if (lookahead == 'n') ADVANCE(104); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 34: - if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'r') ADVANCE(124); END_STATE(); case 35: - if (lookahead == 'p') ADVANCE(112); + if (lookahead == 'r') ADVANCE(17); END_STATE(); case 36: - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 's') ADVANCE(16); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(18); + if (lookahead == 's') ADVANCE(19); END_STATE(); case 38: - if (lookahead == 's') ADVANCE(17); + if (lookahead == 't') ADVANCE(25); END_STATE(); case 39: - if (lookahead == 's') ADVANCE(20); + if (lookahead == 'u') ADVANCE(18); END_STATE(); case 40: - if (lookahead == 't') ADVANCE(26); + if (lookahead == '|') ADVANCE(120); END_STATE(); case 41: - if (lookahead == 'u') ADVANCE(19); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); END_STATE(); case 42: - if (lookahead == '|') ADVANCE(126); - END_STATE(); - case 43: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); - END_STATE(); - case 44: - if (eof) ADVANCE(49); + if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '%') ADVANCE(123); + if (lookahead == '#') ADVANCE(48); + if (lookahead == '%') ADVANCE(117); if (lookahead == '&') ADVANCE(4); if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(54); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(114); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); + if (lookahead == '(') ADVANCE(52); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(111); + if (lookahead == ',') ADVANCE(98); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'e') ADVANCE(73); - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(57); - if (lookahead == 'o') ADVANCE(82); - if (lookahead == 't') ADVANCE(59); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(109); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'f') ADVANCE(57); + if (lookahead == 'o') ADVANCE(78); + if (lookahead == 't') ADVANCE(56); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(105); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + END_STATE(); + case 43: + if (eof) ADVANCE(47); + if (lookahead == '"') ADVANCE(2); + if (lookahead == '#') ADVANCE(48); + if (lookahead == '%') ADVANCE(117); + if (lookahead == '&') ADVANCE(4); + if (lookahead == '\'') ADVANCE(5); + if (lookahead == '(') ADVANCE(52); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(111); + if (lookahead == ',') ADVANCE(98); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); + if (lookahead == '`') ADVANCE(10); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'f') ADVANCE(57); + if (lookahead == 'o') ADVANCE(78); + if (lookahead == 't') ADVANCE(56); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(105); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + END_STATE(); + case 44: + if (eof) ADVANCE(47); + if (lookahead == '"') ADVANCE(2); + if (lookahead == '#') ADVANCE(48); + if (lookahead == '%') ADVANCE(117); + if (lookahead == '&') ADVANCE(4); + if (lookahead == '\'') ADVANCE(5); + if (lookahead == '(') ADVANCE(52); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(110); + if (lookahead == ',') ADVANCE(98); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '=') ADVANCE(9); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); + if (lookahead == '`') ADVANCE(10); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'f') ADVANCE(57); + if (lookahead == 'o') ADVANCE(78); + if (lookahead == 't') ADVANCE(56); + if (lookahead == 'w') ADVANCE(68); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 45: - if (eof) ADVANCE(49); + if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '%') ADVANCE(123); + if (lookahead == '#') ADVANCE(48); + if (lookahead == '%') ADVANCE(117); if (lookahead == '&') ADVANCE(4); if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(54); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(114); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); + if (lookahead == '(') ADVANCE(52); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(110); + if (lookahead == ',') ADVANCE(98); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '=') ADVANCE(9); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(57); - if (lookahead == 'o') ADVANCE(82); - if (lookahead == 't') ADVANCE(59); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(109); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'f') ADVANCE(57); + if (lookahead == 'o') ADVANCE(78); + if (lookahead == 't') ADVANCE(56); + if (lookahead == 'w') ADVANCE(68); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 46: - if (eof) ADVANCE(49); + if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '%') ADVANCE(123); - if (lookahead == '&') ADVANCE(4); + if (lookahead == '#') ADVANCE(48); if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(54); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '=') ADVANCE(9); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); + if (lookahead == '(') ADVANCE(52); + if (lookahead == '-') ADVANCE(7); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '>') ADVANCE(103); + if (lookahead == '[') ADVANCE(97); if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'e') ADVANCE(73); - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(57); - if (lookahead == 'o') ADVANCE(82); - if (lookahead == 't') ADVANCE(59); - if (lookahead == 'w') ADVANCE(71); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(109); + if (lookahead == 'f') ADVANCE(57); + if (lookahead == 't') ADVANCE(56); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '}') ADVANCE(105); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('_' <= lookahead && lookahead <= '|')) ADVANCE(86); END_STATE(); case 47: - if (eof) ADVANCE(49); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '%') ADVANCE(123); - if (lookahead == '&') ADVANCE(4); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(54); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '=') ADVANCE(9); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(57); - if (lookahead == 'o') ADVANCE(82); - if (lookahead == 't') ADVANCE(59); - if (lookahead == 'w') ADVANCE(71); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(109); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(90); - END_STATE(); - case 48: - if (eof) ADVANCE(49); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(54); - if (lookahead == '-') ADVANCE(7); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '[') ADVANCE(101); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(57); - if (lookahead == 't') ADVANCE(59); - if (lookahead == '}') ADVANCE(109); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - if (('_' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 49: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 50: + case 48: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 51: + case 49: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(51); + lookahead == ' ') ADVANCE(49); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(50); END_STATE(); - case 52: + case 50: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(50); END_STATE(); - case 53: + case 51: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 54: + case 52: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 55: + case 53: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); + case 54: + ACCEPT_TOKEN(sym_identifier); + END_STATE(); + case 55: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'h') ADVANCE(67); + if (lookahead == 'r') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); case 56: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'r') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); END_STATE(); case 57: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'u') ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 58: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(61); - if (lookahead == 'h') ADVANCE(70); - if (lookahead == 'r') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'b') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); END_STATE(); case 59: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(61); - if (lookahead == 'r') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'c') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); END_STATE(); case 60: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(75); - if (lookahead == 'u') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'd') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); END_STATE(); case 61: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 62: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 63: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 64: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 65: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 66: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 67: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'e') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 68: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'h') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 69: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'i') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 70: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'l') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 71: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'l') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 72: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'l') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 73: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'n') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 74: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'n') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 75: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(85); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'n') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 76: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'n') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 77: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'o') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 78: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'r') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 79: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'r') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 80: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 's') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 81: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 's') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 82: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 't') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 83: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == 'u') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 84: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (lookahead == '|') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 85: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 86: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); case 87: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); END_STATE(); case 88: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '|') ADVANCE(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(90); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); END_STATE(); case 89: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 90: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 91: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); - END_STATE(); - case 92: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); - END_STATE(); - case 93: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - END_STATE(); - case 94: ACCEPT_TOKEN(sym_string); - if (lookahead == '"') ADVANCE(94); + if (lookahead == '"') ADVANCE(90); if (lookahead != 0 && lookahead != '\n') ADVANCE(2); END_STATE(); - case 95: + case 91: ACCEPT_TOKEN(sym_string); - if (lookahead == '\'') ADVANCE(95); + if (lookahead == '\'') ADVANCE(91); if (lookahead != 0 && lookahead != '\n') ADVANCE(5); END_STATE(); - case 96: + case 92: ACCEPT_TOKEN(sym_string); - if (lookahead == '`') ADVANCE(96); + if (lookahead == '`') ADVANCE(92); if (lookahead != 0 && lookahead != '\n') ADVANCE(10); END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_true); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_false); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_true); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_false); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 101: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 102: + case 98: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 103: + case 99: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 104: + case 100: ACCEPT_TOKEN(anon_sym_function); END_STATE(); - case 105: + case 101: ACCEPT_TOKEN(anon_sym_function); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + lookahead == '|') ADVANCE(86); END_STATE(); - case 106: + case 102: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 107: + case 103: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 108: + case 104: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 109: + case 105: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 110: + case 106: ACCEPT_TOKEN(anon_sym_table); END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_table); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(134); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_table); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_map); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(8); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '>') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_map); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(8); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '>') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '>') ADVANCE(51); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); - if (lookahead == '>') ADVANCE(140); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(132); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '=') ADVANCE(133); - if (lookahead == '>') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '>') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(133); - if (lookahead == '>') ADVANCE(53); - END_STATE(); - case 121: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 122: + case 116: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 123: + case 117: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 124: + case 118: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 125: + case 119: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_and); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_or); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_and); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_and); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_or); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_or); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 132: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 133: + case 127: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_where); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_then); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_where); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_then); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_else); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(90); - END_STATE(); - case 140: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); default: @@ -2158,274 +2109,274 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 48}, - [2] = {.lex_state = 48}, - [3] = {.lex_state = 48}, - [4] = {.lex_state = 48}, - [5] = {.lex_state = 48}, - [6] = {.lex_state = 48}, - [7] = {.lex_state = 48}, - [8] = {.lex_state = 48}, - [9] = {.lex_state = 48}, - [10] = {.lex_state = 48}, - [11] = {.lex_state = 48}, - [12] = {.lex_state = 48}, - [13] = {.lex_state = 48}, - [14] = {.lex_state = 48}, - [15] = {.lex_state = 48}, - [16] = {.lex_state = 48}, - [17] = {.lex_state = 48}, - [18] = {.lex_state = 48}, - [19] = {.lex_state = 48}, - [20] = {.lex_state = 48}, - [21] = {.lex_state = 48}, - [22] = {.lex_state = 48}, - [23] = {.lex_state = 48}, - [24] = {.lex_state = 48}, - [25] = {.lex_state = 48}, - [26] = {.lex_state = 48}, - [27] = {.lex_state = 48}, - [28] = {.lex_state = 48}, - [29] = {.lex_state = 48}, - [30] = {.lex_state = 48}, - [31] = {.lex_state = 48}, - [32] = {.lex_state = 48}, - [33] = {.lex_state = 48}, - [34] = {.lex_state = 48}, - [35] = {.lex_state = 48}, - [36] = {.lex_state = 48}, - [37] = {.lex_state = 48}, - [38] = {.lex_state = 48}, - [39] = {.lex_state = 48}, - [40] = {.lex_state = 48}, - [41] = {.lex_state = 48}, - [42] = {.lex_state = 48}, - [43] = {.lex_state = 48}, - [44] = {.lex_state = 44}, - [45] = {.lex_state = 48}, - [46] = {.lex_state = 48}, - [47] = {.lex_state = 48}, - [48] = {.lex_state = 48}, - [49] = {.lex_state = 48}, - [50] = {.lex_state = 48}, - [51] = {.lex_state = 48}, - [52] = {.lex_state = 48}, - [53] = {.lex_state = 48}, - [54] = {.lex_state = 48}, - [55] = {.lex_state = 48}, - [56] = {.lex_state = 48}, - [57] = {.lex_state = 48}, - [58] = {.lex_state = 48}, - [59] = {.lex_state = 48}, - [60] = {.lex_state = 48}, - [61] = {.lex_state = 48}, - [62] = {.lex_state = 48}, - [63] = {.lex_state = 48}, - [64] = {.lex_state = 48}, - [65] = {.lex_state = 48}, - [66] = {.lex_state = 48}, - [67] = {.lex_state = 48}, - [68] = {.lex_state = 48}, - [69] = {.lex_state = 48}, - [70] = {.lex_state = 44}, - [71] = {.lex_state = 48}, - [72] = {.lex_state = 45}, - [73] = {.lex_state = 48}, - [74] = {.lex_state = 48}, - [75] = {.lex_state = 48}, - [76] = {.lex_state = 48}, - [77] = {.lex_state = 48}, - [78] = {.lex_state = 48}, - [79] = {.lex_state = 48}, - [80] = {.lex_state = 48}, - [81] = {.lex_state = 48}, - [82] = {.lex_state = 48}, - [83] = {.lex_state = 48}, - [84] = {.lex_state = 48}, - [85] = {.lex_state = 48}, - [86] = {.lex_state = 48}, - [87] = {.lex_state = 48}, - [88] = {.lex_state = 48}, - [89] = {.lex_state = 48}, - [90] = {.lex_state = 48}, - [91] = {.lex_state = 48}, - [92] = {.lex_state = 48}, - [93] = {.lex_state = 48}, - [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 = 44}, - [105] = {.lex_state = 45}, - [106] = {.lex_state = 48}, - [107] = {.lex_state = 48}, - [108] = {.lex_state = 48}, - [109] = {.lex_state = 48}, - [110] = {.lex_state = 48}, - [111] = {.lex_state = 44}, - [112] = {.lex_state = 44}, - [113] = {.lex_state = 48}, - [114] = {.lex_state = 44}, - [115] = {.lex_state = 48}, - [116] = {.lex_state = 48}, - [117] = {.lex_state = 48}, - [118] = {.lex_state = 48}, - [119] = {.lex_state = 48}, - [120] = {.lex_state = 48}, - [121] = {.lex_state = 44}, - [122] = {.lex_state = 44}, - [123] = {.lex_state = 48}, - [124] = {.lex_state = 48}, - [125] = {.lex_state = 48}, - [126] = {.lex_state = 48}, - [127] = {.lex_state = 48}, - [128] = {.lex_state = 46}, - [129] = {.lex_state = 46}, - [130] = {.lex_state = 45}, - [131] = {.lex_state = 45}, - [132] = {.lex_state = 44}, - [133] = {.lex_state = 44}, - [134] = {.lex_state = 45}, - [135] = {.lex_state = 45}, - [136] = {.lex_state = 45}, - [137] = {.lex_state = 45}, - [138] = {.lex_state = 44}, - [139] = {.lex_state = 44}, - [140] = {.lex_state = 45}, - [141] = {.lex_state = 47}, - [142] = {.lex_state = 47}, - [143] = {.lex_state = 44}, - [144] = {.lex_state = 44}, - [145] = {.lex_state = 44}, - [146] = {.lex_state = 44}, - [147] = {.lex_state = 44}, - [148] = {.lex_state = 44}, - [149] = {.lex_state = 45}, - [150] = {.lex_state = 44}, - [151] = {.lex_state = 44}, - [152] = {.lex_state = 45}, - [153] = {.lex_state = 45}, - [154] = {.lex_state = 44}, - [155] = {.lex_state = 44}, - [156] = {.lex_state = 44}, - [157] = {.lex_state = 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 = 44}, - [167] = {.lex_state = 44}, - [168] = {.lex_state = 45}, - [169] = {.lex_state = 45}, - [170] = {.lex_state = 45}, - [171] = {.lex_state = 45}, - [172] = {.lex_state = 45}, - [173] = {.lex_state = 44}, - [174] = {.lex_state = 45}, - [175] = {.lex_state = 45}, - [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 = 47}, - [202] = {.lex_state = 44}, - [203] = {.lex_state = 47}, - [204] = {.lex_state = 48}, - [205] = {.lex_state = 48}, + [1] = {.lex_state = 46}, + [2] = {.lex_state = 46}, + [3] = {.lex_state = 46}, + [4] = {.lex_state = 46}, + [5] = {.lex_state = 46}, + [6] = {.lex_state = 46}, + [7] = {.lex_state = 46}, + [8] = {.lex_state = 46}, + [9] = {.lex_state = 46}, + [10] = {.lex_state = 46}, + [11] = {.lex_state = 46}, + [12] = {.lex_state = 46}, + [13] = {.lex_state = 46}, + [14] = {.lex_state = 46}, + [15] = {.lex_state = 46}, + [16] = {.lex_state = 46}, + [17] = {.lex_state = 46}, + [18] = {.lex_state = 46}, + [19] = {.lex_state = 46}, + [20] = {.lex_state = 46}, + [21] = {.lex_state = 46}, + [22] = {.lex_state = 46}, + [23] = {.lex_state = 46}, + [24] = {.lex_state = 46}, + [25] = {.lex_state = 46}, + [26] = {.lex_state = 46}, + [27] = {.lex_state = 46}, + [28] = {.lex_state = 46}, + [29] = {.lex_state = 46}, + [30] = {.lex_state = 46}, + [31] = {.lex_state = 46}, + [32] = {.lex_state = 46}, + [33] = {.lex_state = 46}, + [34] = {.lex_state = 46}, + [35] = {.lex_state = 46}, + [36] = {.lex_state = 46}, + [37] = {.lex_state = 46}, + [38] = {.lex_state = 46}, + [39] = {.lex_state = 46}, + [40] = {.lex_state = 46}, + [41] = {.lex_state = 46}, + [42] = {.lex_state = 46}, + [43] = {.lex_state = 46}, + [44] = {.lex_state = 46}, + [45] = {.lex_state = 46}, + [46] = {.lex_state = 46}, + [47] = {.lex_state = 46}, + [48] = {.lex_state = 46}, + [49] = {.lex_state = 46}, + [50] = {.lex_state = 46}, + [51] = {.lex_state = 46}, + [52] = {.lex_state = 46}, + [53] = {.lex_state = 46}, + [54] = {.lex_state = 46}, + [55] = {.lex_state = 46}, + [56] = {.lex_state = 46}, + [57] = {.lex_state = 46}, + [58] = {.lex_state = 46}, + [59] = {.lex_state = 46}, + [60] = {.lex_state = 46}, + [61] = {.lex_state = 46}, + [62] = {.lex_state = 46}, + [63] = {.lex_state = 46}, + [64] = {.lex_state = 46}, + [65] = {.lex_state = 46}, + [66] = {.lex_state = 46}, + [67] = {.lex_state = 42}, + [68] = {.lex_state = 46}, + [69] = {.lex_state = 46}, + [70] = {.lex_state = 46}, + [71] = {.lex_state = 43}, + [72] = {.lex_state = 46}, + [73] = {.lex_state = 42}, + [74] = {.lex_state = 46}, + [75] = {.lex_state = 46}, + [76] = {.lex_state = 42}, + [77] = {.lex_state = 42}, + [78] = {.lex_state = 46}, + [79] = {.lex_state = 46}, + [80] = {.lex_state = 46}, + [81] = {.lex_state = 46}, + [82] = {.lex_state = 46}, + [83] = {.lex_state = 46}, + [84] = {.lex_state = 46}, + [85] = {.lex_state = 46}, + [86] = {.lex_state = 46}, + [87] = {.lex_state = 46}, + [88] = {.lex_state = 46}, + [89] = {.lex_state = 46}, + [90] = {.lex_state = 46}, + [91] = {.lex_state = 46}, + [92] = {.lex_state = 46}, + [93] = {.lex_state = 46}, + [94] = {.lex_state = 46}, + [95] = {.lex_state = 46}, + [96] = {.lex_state = 42}, + [97] = {.lex_state = 46}, + [98] = {.lex_state = 46}, + [99] = {.lex_state = 46}, + [100] = {.lex_state = 46}, + [101] = {.lex_state = 46}, + [102] = {.lex_state = 46}, + [103] = {.lex_state = 46}, + [104] = {.lex_state = 42}, + [105] = {.lex_state = 46}, + [106] = {.lex_state = 46}, + [107] = {.lex_state = 46}, + [108] = {.lex_state = 46}, + [109] = {.lex_state = 46}, + [110] = {.lex_state = 46}, + [111] = {.lex_state = 46}, + [112] = {.lex_state = 46}, + [113] = {.lex_state = 46}, + [114] = {.lex_state = 46}, + [115] = {.lex_state = 46}, + [116] = {.lex_state = 46}, + [117] = {.lex_state = 46}, + [118] = {.lex_state = 46}, + [119] = {.lex_state = 46}, + [120] = {.lex_state = 46}, + [121] = {.lex_state = 42}, + [122] = {.lex_state = 46}, + [123] = {.lex_state = 42}, + [124] = {.lex_state = 46}, + [125] = {.lex_state = 43}, + [126] = {.lex_state = 46}, + [127] = {.lex_state = 46}, + [128] = {.lex_state = 43}, + [129] = {.lex_state = 44}, + [130] = {.lex_state = 44}, + [131] = {.lex_state = 43}, + [132] = {.lex_state = 42}, + [133] = {.lex_state = 42}, + [134] = {.lex_state = 43}, + [135] = {.lex_state = 43}, + [136] = {.lex_state = 43}, + [137] = {.lex_state = 43}, + [138] = {.lex_state = 43}, + [139] = {.lex_state = 43}, + [140] = {.lex_state = 42}, + [141] = {.lex_state = 42}, + [142] = {.lex_state = 42}, + [143] = {.lex_state = 42}, + [144] = {.lex_state = 43}, + [145] = {.lex_state = 42}, + [146] = {.lex_state = 42}, + [147] = {.lex_state = 42}, + [148] = {.lex_state = 42}, + [149] = {.lex_state = 42}, + [150] = {.lex_state = 42}, + [151] = {.lex_state = 43}, + [152] = {.lex_state = 42}, + [153] = {.lex_state = 42}, + [154] = {.lex_state = 42}, + [155] = {.lex_state = 42}, + [156] = {.lex_state = 42}, + [157] = {.lex_state = 45}, + [158] = {.lex_state = 45}, + [159] = {.lex_state = 42}, + [160] = {.lex_state = 42}, + [161] = {.lex_state = 42}, + [162] = {.lex_state = 42}, + [163] = {.lex_state = 42}, + [164] = {.lex_state = 42}, + [165] = {.lex_state = 42}, + [166] = {.lex_state = 42}, + [167] = {.lex_state = 42}, + [168] = {.lex_state = 43}, + [169] = {.lex_state = 43}, + [170] = {.lex_state = 43}, + [171] = {.lex_state = 42}, + [172] = {.lex_state = 43}, + [173] = {.lex_state = 43}, + [174] = {.lex_state = 43}, + [175] = {.lex_state = 43}, + [176] = {.lex_state = 43}, + [177] = {.lex_state = 43}, + [178] = {.lex_state = 43}, + [179] = {.lex_state = 43}, + [180] = {.lex_state = 43}, + [181] = {.lex_state = 43}, + [182] = {.lex_state = 43}, + [183] = {.lex_state = 43}, + [184] = {.lex_state = 43}, + [185] = {.lex_state = 43}, + [186] = {.lex_state = 43}, + [187] = {.lex_state = 43}, + [188] = {.lex_state = 43}, + [189] = {.lex_state = 43}, + [190] = {.lex_state = 43}, + [191] = {.lex_state = 43}, + [192] = {.lex_state = 43}, + [193] = {.lex_state = 42}, + [194] = {.lex_state = 43}, + [195] = {.lex_state = 43}, + [196] = {.lex_state = 43}, + [197] = {.lex_state = 43}, + [198] = {.lex_state = 43}, + [199] = {.lex_state = 43}, + [200] = {.lex_state = 43}, + [201] = {.lex_state = 45}, + [202] = {.lex_state = 45}, + [203] = {.lex_state = 42}, + [204] = {.lex_state = 46}, + [205] = {.lex_state = 46}, [206] = {.lex_state = 3}, - [207] = {.lex_state = 3}, - [208] = {.lex_state = 48}, + [207] = {.lex_state = 46}, + [208] = {.lex_state = 3}, [209] = {.lex_state = 3}, [210] = {.lex_state = 3}, [211] = {.lex_state = 3}, [212] = {.lex_state = 3}, [213] = {.lex_state = 3}, - [214] = {.lex_state = 48}, - [215] = {.lex_state = 48}, - [216] = {.lex_state = 3}, - [217] = {.lex_state = 3}, - [218] = {.lex_state = 48}, + [214] = {.lex_state = 3}, + [215] = {.lex_state = 3}, + [216] = {.lex_state = 46}, + [217] = {.lex_state = 46}, + [218] = {.lex_state = 46}, [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, [222] = {.lex_state = 3}, - [223] = {.lex_state = 48}, + [223] = {.lex_state = 46}, [224] = {.lex_state = 3}, [225] = {.lex_state = 3}, - [226] = {.lex_state = 3}, + [226] = {.lex_state = 1}, [227] = {.lex_state = 3}, - [228] = {.lex_state = 1}, + [228] = {.lex_state = 3}, [229] = {.lex_state = 3}, [230] = {.lex_state = 3}, [231] = {.lex_state = 3}, - [232] = {.lex_state = 3}, + [232] = {.lex_state = 1}, [233] = {.lex_state = 3}, [234] = {.lex_state = 3}, [235] = {.lex_state = 3}, - [236] = {.lex_state = 1}, + [236] = {.lex_state = 3}, [237] = {.lex_state = 3}, - [238] = {.lex_state = 1}, - [239] = {.lex_state = 1}, - [240] = {.lex_state = 1}, + [238] = {.lex_state = 3}, + [239] = {.lex_state = 3}, + [240] = {.lex_state = 3}, [241] = {.lex_state = 3}, - [242] = {.lex_state = 3}, - [243] = {.lex_state = 48}, - [244] = {.lex_state = 3}, - [245] = {.lex_state = 48}, + [242] = {.lex_state = 46}, + [243] = {.lex_state = 46}, + [244] = {.lex_state = 1}, + [245] = {.lex_state = 3}, [246] = {.lex_state = 3}, [247] = {.lex_state = 3}, - [248] = {.lex_state = 3}, - [249] = {.lex_state = 3}, + [248] = {.lex_state = 1}, + [249] = {.lex_state = 1}, [250] = {.lex_state = 3}, [251] = {.lex_state = 3}, [252] = {.lex_state = 3}, [253] = {.lex_state = 3}, - [254] = {.lex_state = 3}, + [254] = {.lex_state = 1}, [255] = {.lex_state = 3}, - [256] = {.lex_state = 1}, - [257] = {.lex_state = 1}, + [256] = {.lex_state = 3}, + [257] = {.lex_state = 3}, [258] = {.lex_state = 1}, [259] = {.lex_state = 3}, [260] = {.lex_state = 1}, - [261] = {.lex_state = 3}, - [262] = {.lex_state = 1}, - [263] = {.lex_state = 3}, + [261] = {.lex_state = 1}, + [262] = {.lex_state = 3}, + [263] = {.lex_state = 1}, [264] = {.lex_state = 1}, [265] = {.lex_state = 3}, [266] = {.lex_state = 3}, - [267] = {.lex_state = 1}, - [268] = {.lex_state = 3}, + [267] = {.lex_state = 3}, + [268] = {.lex_state = 1}, [269] = {.lex_state = 3}, [270] = {.lex_state = 3}, [271] = {.lex_state = 3}, @@ -2443,151 +2394,146 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [283] = {.lex_state = 3}, [284] = {.lex_state = 3}, [285] = {.lex_state = 3}, - [286] = {.lex_state = 1}, - [287] = {.lex_state = 3}, + [286] = {.lex_state = 3}, + [287] = {.lex_state = 1}, [288] = {.lex_state = 1}, [289] = {.lex_state = 1}, [290] = {.lex_state = 1}, [291] = {.lex_state = 1}, - [292] = {.lex_state = 3}, + [292] = {.lex_state = 1}, [293] = {.lex_state = 1}, [294] = {.lex_state = 1}, - [295] = {.lex_state = 3}, - [296] = {.lex_state = 1}, + [295] = {.lex_state = 1}, + [296] = {.lex_state = 3}, [297] = {.lex_state = 1}, - [298] = {.lex_state = 1}, + [298] = {.lex_state = 3}, [299] = {.lex_state = 1}, [300] = {.lex_state = 1}, [301] = {.lex_state = 6}, - [302] = {.lex_state = 0}, + [302] = {.lex_state = 6}, [303] = {.lex_state = 0}, - [304] = {.lex_state = 6}, + [304] = {.lex_state = 0}, [305] = {.lex_state = 0}, [306] = {.lex_state = 0}, - [307] = {.lex_state = 6}, - [308] = {.lex_state = 0}, + [307] = {.lex_state = 0}, + [308] = {.lex_state = 6}, [309] = {.lex_state = 0}, - [310] = {.lex_state = 6}, + [310] = {.lex_state = 0}, [311] = {.lex_state = 0}, [312] = {.lex_state = 0}, - [313] = {.lex_state = 0}, + [313] = {.lex_state = 6}, [314] = {.lex_state = 0}, [315] = {.lex_state = 6}, [316] = {.lex_state = 6}, [317] = {.lex_state = 6}, [318] = {.lex_state = 6}, - [319] = {.lex_state = 6}, - [320] = {.lex_state = 0}, + [319] = {.lex_state = 0}, + [320] = {.lex_state = 6}, [321] = {.lex_state = 6}, [322] = {.lex_state = 6}, - [323] = {.lex_state = 0}, + [323] = {.lex_state = 6}, [324] = {.lex_state = 6}, [325] = {.lex_state = 6}, [326] = {.lex_state = 6}, - [327] = {.lex_state = 6}, + [327] = {.lex_state = 0}, [328] = {.lex_state = 6}, [329] = {.lex_state = 6}, [330] = {.lex_state = 6}, [331] = {.lex_state = 6}, [332] = {.lex_state = 6}, - [333] = {.lex_state = 6}, + [333] = {.lex_state = 0}, [334] = {.lex_state = 6}, - [335] = {.lex_state = 0}, + [335] = {.lex_state = 6}, [336] = {.lex_state = 0}, [337] = {.lex_state = 6}, - [338] = {.lex_state = 6}, + [338] = {.lex_state = 0}, [339] = {.lex_state = 6}, - [340] = {.lex_state = 0}, + [340] = {.lex_state = 6}, [341] = {.lex_state = 6}, [342] = {.lex_state = 6}, [343] = {.lex_state = 6}, [344] = {.lex_state = 6}, - [345] = {.lex_state = 0}, - [346] = {.lex_state = 6}, + [345] = {.lex_state = 6}, + [346] = {.lex_state = 0}, [347] = {.lex_state = 6}, [348] = {.lex_state = 6}, [349] = {.lex_state = 6}, [350] = {.lex_state = 6}, [351] = {.lex_state = 0}, [352] = {.lex_state = 6}, - [353] = {.lex_state = 6}, + [353] = {.lex_state = 0}, [354] = {.lex_state = 6}, [355] = {.lex_state = 6}, [356] = {.lex_state = 6}, - [357] = {.lex_state = 6}, + [357] = {.lex_state = 0}, [358] = {.lex_state = 6}, [359] = {.lex_state = 0}, - [360] = {.lex_state = 0}, + [360] = {.lex_state = 6}, [361] = {.lex_state = 6}, - [362] = {.lex_state = 6}, + [362] = {.lex_state = 0}, [363] = {.lex_state = 6}, [364] = {.lex_state = 6}, [365] = {.lex_state = 6}, [366] = {.lex_state = 0}, [367] = {.lex_state = 6}, [368] = {.lex_state = 6}, - [369] = {.lex_state = 0}, + [369] = {.lex_state = 6}, [370] = {.lex_state = 6}, - [371] = {.lex_state = 0}, + [371] = {.lex_state = 6}, [372] = {.lex_state = 6}, [373] = {.lex_state = 6}, - [374] = {.lex_state = 0}, - [375] = {.lex_state = 6}, + [374] = {.lex_state = 6}, + [375] = {.lex_state = 0}, [376] = {.lex_state = 0}, [377] = {.lex_state = 0}, [378] = {.lex_state = 0}, - [379] = {.lex_state = 0}, + [379] = {.lex_state = 6}, [380] = {.lex_state = 0}, [381] = {.lex_state = 0}, - [382] = {.lex_state = 0}, - [383] = {.lex_state = 6}, + [382] = {.lex_state = 6}, + [383] = {.lex_state = 0}, [384] = {.lex_state = 0}, - [385] = {.lex_state = 0}, + [385] = {.lex_state = 6}, [386] = {.lex_state = 0}, [387] = {.lex_state = 0}, - [388] = {.lex_state = 6}, + [388] = {.lex_state = 0}, [389] = {.lex_state = 0}, - [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, + [390] = {.lex_state = 0}, + [391] = {.lex_state = 0}, + [392] = {.lex_state = 0}, [393] = {.lex_state = 6}, [394] = {.lex_state = 6}, - [395] = {.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 = 51}, - [401] = {.lex_state = 6}, - [402] = {.lex_state = 6}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, [403] = {.lex_state = 0}, [404] = {.lex_state = 0}, [405] = {.lex_state = 0}, - [406] = {.lex_state = 0}, - [407] = {.lex_state = 0}, + [406] = {.lex_state = 49}, + [407] = {.lex_state = 6}, [408] = {.lex_state = 0}, [409] = {.lex_state = 0}, [410] = {.lex_state = 0}, [411] = {.lex_state = 6}, - [412] = {.lex_state = 0}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 0}, + [412] = {.lex_state = 6}, + [413] = {.lex_state = 6}, + [414] = {.lex_state = 6}, + [415] = {.lex_state = 6}, [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 6}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 0}, [419] = {.lex_state = 0}, [420] = {.lex_state = 6}, - [421] = {.lex_state = 0}, - [422] = {.lex_state = 0}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, + [421] = {.lex_state = 6}, + [422] = {.lex_state = 6}, + [423] = {.lex_state = 6}, + [424] = {.lex_state = 6}, [425] = {.lex_state = 6}, - [426] = {.lex_state = 6}, - [427] = {.lex_state = 6}, - [428] = {.lex_state = 0}, - [429] = {.lex_state = 6}, - [430] = {.lex_state = 6}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2612,7 +2558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_table] = ACTIONS(1), - [anon_sym_map] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), @@ -2640,31 +2585,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(384), - [sym_item] = STATE(2), - [sym_comment] = STATE(215), - [sym_statement] = STATE(215), - [sym_yield] = STATE(208), - [sym_expression] = STATE(184), - [sym__expression_kind] = STATE(189), - [sym_value] = STATE(189), - [sym_boolean] = STATE(175), - [sym_list] = STATE(175), - [sym_function] = STATE(175), - [sym_table] = STATE(175), - [sym_map] = STATE(175), - [sym_math] = STATE(189), - [sym_logic] = STATE(189), - [sym_assignment] = STATE(189), - [sym_select] = STATE(189), - [sym_insert] = STATE(189), - [sym_control_flow] = STATE(189), - [sym_function_call] = STATE(189), - [sym_loop] = STATE(189), - [sym_while_loop] = STATE(187), - [sym_break_loop] = STATE(187), - [sym_match] = STATE(189), - [aux_sym_root_repeat1] = STATE(2), + [sym_root] = STATE(375), + [sym_item] = STATE(3), + [sym_comment] = STATE(217), + [sym_statement] = STATE(217), + [sym_yield] = STATE(207), + [sym_expression] = STATE(189), + [sym__expression_kind] = STATE(184), + [sym_value] = STATE(184), + [sym_boolean] = STATE(190), + [sym_list] = STATE(190), + [sym_function] = STATE(190), + [sym_table] = STATE(190), + [sym_map] = STATE(190), + [sym_math] = STATE(184), + [sym_logic] = STATE(184), + [sym_assignment] = STATE(184), + [sym_select] = STATE(184), + [sym_insert] = STATE(184), + [sym_control_flow] = STATE(184), + [sym_function_call] = STATE(184), + [sym_loop] = STATE(184), + [sym_while_loop] = STATE(182), + [sym_break_loop] = STATE(182), + [sym_match] = STATE(184), + [aux_sym_root_repeat1] = STATE(3), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2675,8 +2620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_function] = ACTIONS(17), - [anon_sym_table] = ACTIONS(19), - [anon_sym_map] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_table] = ACTIONS(21), [anon_sym_select] = ACTIONS(23), [anon_sym_insert] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), @@ -2685,31 +2630,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(215), - [sym_statement] = STATE(215), - [sym_yield] = STATE(208), - [sym_expression] = STATE(184), - [sym__expression_kind] = STATE(189), - [sym_value] = STATE(189), - [sym_boolean] = STATE(175), - [sym_list] = STATE(175), - [sym_function] = STATE(175), - [sym_table] = STATE(175), - [sym_map] = STATE(175), - [sym_math] = STATE(189), - [sym_logic] = STATE(189), - [sym_assignment] = STATE(189), - [sym_select] = STATE(189), - [sym_insert] = STATE(189), - [sym_control_flow] = STATE(189), - [sym_function_call] = STATE(189), - [sym_loop] = STATE(189), - [sym_while_loop] = STATE(187), - [sym_break_loop] = STATE(187), - [sym_match] = STATE(189), - [aux_sym_root_repeat1] = STATE(3), + [sym_item] = STATE(2), + [sym_comment] = STATE(217), + [sym_statement] = STATE(217), + [sym_yield] = STATE(207), + [sym_expression] = STATE(189), + [sym__expression_kind] = STATE(184), + [sym_value] = STATE(184), + [sym_boolean] = STATE(190), + [sym_list] = STATE(190), + [sym_function] = STATE(190), + [sym_table] = STATE(190), + [sym_map] = STATE(190), + [sym_math] = STATE(184), + [sym_logic] = STATE(184), + [sym_assignment] = STATE(184), + [sym_select] = STATE(184), + [sym_insert] = STATE(184), + [sym_control_flow] = STATE(184), + [sym_function_call] = STATE(184), + [sym_loop] = STATE(184), + [sym_while_loop] = STATE(182), + [sym_break_loop] = STATE(182), + [sym_match] = STATE(184), + [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_LBRACE] = ACTIONS(61), + [anon_sym_table] = 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(207), + [sym_expression] = STATE(189), + [sym__expression_kind] = STATE(184), + [sym_value] = STATE(184), + [sym_boolean] = STATE(190), + [sym_list] = STATE(190), + [sym_function] = STATE(190), + [sym_table] = STATE(190), + [sym_map] = STATE(190), + [sym_math] = STATE(184), + [sym_logic] = STATE(184), + [sym_assignment] = STATE(184), + [sym_select] = STATE(184), + [sym_insert] = STATE(184), + [sym_control_flow] = STATE(184), + [sym_function_call] = STATE(184), + [sym_loop] = STATE(184), + [sym_while_loop] = STATE(182), + [sym_break_loop] = STATE(182), + [sym_match] = STATE(184), + [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), @@ -2720,8 +2710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_function] = ACTIONS(17), - [anon_sym_table] = ACTIONS(19), - [anon_sym_map] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_table] = ACTIONS(21), [anon_sym_select] = ACTIONS(23), [anon_sym_insert] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), @@ -2729,51 +2719,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(31), [anon_sym_match] = ACTIONS(33), }, - [3] = { - [sym_item] = STATE(3), - [sym_comment] = STATE(215), - [sym_statement] = STATE(215), - [sym_yield] = STATE(208), - [sym_expression] = STATE(184), - [sym__expression_kind] = STATE(189), - [sym_value] = STATE(189), - [sym_boolean] = STATE(175), - [sym_list] = STATE(175), - [sym_function] = STATE(175), - [sym_table] = STATE(175), - [sym_map] = STATE(175), - [sym_math] = STATE(189), - [sym_logic] = STATE(189), - [sym_assignment] = STATE(189), - [sym_select] = STATE(189), - [sym_insert] = STATE(189), - [sym_control_flow] = STATE(189), - [sym_function_call] = STATE(189), - [sym_loop] = STATE(189), - [sym_while_loop] = STATE(187), - [sym_break_loop] = STATE(187), - [sym_match] = STATE(189), - [aux_sym_root_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(37), - [sym_identifier] = ACTIONS(39), - [anon_sym_POUND] = ACTIONS(42), - [anon_sym_LPAREN] = ACTIONS(45), - [sym_float] = ACTIONS(48), - [sym_integer] = ACTIONS(48), - [sym_string] = ACTIONS(51), - [anon_sym_true] = ACTIONS(54), - [anon_sym_false] = ACTIONS(54), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_function] = ACTIONS(60), - [anon_sym_table] = ACTIONS(63), - [anon_sym_map] = ACTIONS(66), - [anon_sym_select] = ACTIONS(69), - [anon_sym_insert] = ACTIONS(72), - [anon_sym_if] = ACTIONS(75), - [anon_sym_while] = ACTIONS(78), - [anon_sym_loop] = ACTIONS(81), - [anon_sym_match] = ACTIONS(84), - }, }; static const uint16_t ts_small_parse_table[] = { @@ -2789,9 +2734,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -2806,9 +2751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(87), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2816,19 +2761,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -2852,9 +2797,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -2869,9 +2814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(89), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2879,19 +2824,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -2915,9 +2860,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -2932,9 +2877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(91), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2942,19 +2887,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -2978,9 +2923,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -2995,9 +2940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(93), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3005,19 +2950,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3041,9 +2986,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3058,9 +3003,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(95), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3068,19 +3013,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3093,57 +3038,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [425] = 22, - ACTIONS(97), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(100), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(106), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(112), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(115), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(118), 1, - anon_sym_RBRACE, - ACTIONS(120), 1, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, anon_sym_table, - ACTIONS(123), 1, - anon_sym_map, - ACTIONS(126), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(129), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(132), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(135), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(138), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(141), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + ACTIONS(97), 1, + anon_sym_RBRACE, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, - ACTIONS(103), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(109), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3167,9 +3112,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3182,11 +3127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(144), 1, + ACTIONS(99), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3194,19 +3139,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3230,9 +3175,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3245,11 +3190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(146), 1, + ACTIONS(101), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3257,19 +3202,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3293,9 +3238,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3308,11 +3253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(148), 1, + ACTIONS(103), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3320,19 +3265,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3356,9 +3301,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3371,11 +3316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(150), 1, + ACTIONS(105), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3383,19 +3328,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3419,9 +3364,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3434,11 +3379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(152), 1, + ACTIONS(107), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3446,19 +3391,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3482,9 +3427,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3497,11 +3442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(154), 1, + ACTIONS(109), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3509,19 +3454,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3545,9 +3490,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3560,11 +3505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(156), 1, + ACTIONS(111), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3572,19 +3517,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3597,57 +3542,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [1105] = 22, - ACTIONS(3), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(7), 1, + ACTIONS(116), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(122), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(128), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(131), 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(158), 1, + ACTIONS(134), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, anon_sym_RBRACE, - STATE(184), 1, + ACTIONS(139), 1, + anon_sym_table, + ACTIONS(142), 1, + anon_sym_select, + ACTIONS(145), 1, + anon_sym_insert, + ACTIONS(148), 1, + anon_sym_if, + ACTIONS(151), 1, + anon_sym_while, + ACTIONS(154), 1, + anon_sym_loop, + ACTIONS(157), 1, + anon_sym_match, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, - ACTIONS(9), 2, + ACTIONS(119), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(125), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3671,9 +3616,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3688,9 +3633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(160), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3698,19 +3643,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3734,9 +3679,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3751,9 +3696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(162), 1, anon_sym_RBRACE, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3761,19 +3706,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3797,9 +3742,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3812,9 +3757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3822,19 +3767,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(6), 2, + STATE(8), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3858,9 +3803,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3873,9 +3818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3883,19 +3828,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(7), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3919,9 +3864,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3934,9 +3879,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3944,19 +3889,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(4), 2, + STATE(12), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -3980,9 +3925,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -3995,9 +3940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4005,19 +3950,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(19), 2, + STATE(18), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4041,9 +3986,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4056,9 +4001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4066,19 +4011,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4102,9 +4047,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4117,9 +4062,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4127,19 +4072,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(14), 2, + STATE(19), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4163,9 +4108,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4178,9 +4123,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4188,19 +4133,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(10), 2, + STATE(16), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4224,9 +4169,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4239,9 +4184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4252,16 +4197,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(13), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4285,9 +4230,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4300,9 +4245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4310,19 +4255,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(6), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4346,9 +4291,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4361,9 +4306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4371,19 +4316,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(12), 2, + STATE(5), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4407,9 +4352,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4422,9 +4367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4432,19 +4377,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(15), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4468,9 +4413,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4483,9 +4428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4493,19 +4438,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(7), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4529,9 +4474,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4544,9 +4489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4554,19 +4499,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(16), 2, + STATE(14), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4590,9 +4535,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4605,9 +4550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4615,19 +4560,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(5), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4651,9 +4596,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -4666,9 +4611,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(184), 1, + STATE(189), 1, sym_expression, - STATE(208), 1, + STATE(207), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4676,19 +4621,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(11), 2, sym_statement, aux_sym_function_repeat2, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4712,9 +4657,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(182), 1, anon_sym_select, ACTIONS(184), 1, @@ -4727,11 +4672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(208), 1, + STATE(207), 1, sym_yield, STATE(271), 1, sym_expression, - STATE(409), 1, + STATE(396), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -4739,16 +4684,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -4770,9 +4715,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(29), 1, anon_sym_while, ACTIONS(31), 1, @@ -4789,9 +4734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - STATE(58), 1, + STATE(55), 1, aux_sym_function_call_repeat1, - STATE(195), 1, + STATE(199), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -4799,16 +4744,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4821,54 +4766,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2752] = 21, - ACTIONS(164), 1, + ACTIONS(204), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(206), 1, anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(210), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(214), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(216), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, + ACTIONS(222), 1, anon_sym_select, - ACTIONS(184), 1, + ACTIONS(224), 1, anon_sym_insert, - ACTIONS(186), 1, + ACTIONS(226), 1, anon_sym_if, - ACTIONS(188), 1, + ACTIONS(228), 1, anon_sym_while, - ACTIONS(190), 1, + ACTIONS(230), 1, anon_sym_loop, - ACTIONS(192), 1, + ACTIONS(232), 1, anon_sym_match, - STATE(211), 1, - sym_expression, - STATE(229), 1, - sym_statement, - STATE(255), 1, + STATE(163), 1, sym_yield, - ACTIONS(168), 2, + STATE(171), 1, + sym_expression, + STATE(203), 1, + sym_statement, + ACTIONS(208), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(155), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(166), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(154), 11, sym__expression_kind, sym_value, sym_math, @@ -4881,54 +4826,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2833] = 21, - ACTIONS(164), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(184), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(186), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(188), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(190), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(192), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(211), 1, - sym_expression, - STATE(233), 1, + STATE(170), 1, sym_statement, - STATE(255), 1, + STATE(173), 1, sym_yield, - ACTIONS(168), 2, + STATE(194), 1, + sym_expression, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -4941,8 +4886,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2914] = 21, - ACTIONS(3), 1, - sym_identifier, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -4952,26 +4895,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, + anon_sym_table, ACTIONS(29), 1, anon_sym_while, ACTIONS(31), 1, anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(178), 1, - sym_statement, - STATE(182), 1, - sym_yield, - STATE(194), 1, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(234), 1, + anon_sym_GT, + STATE(43), 1, + aux_sym_function_call_repeat1, + STATE(199), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -4979,16 +4924,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -5001,54 +4946,54 @@ static const uint16_t ts_small_parse_table[] = { 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(194), 1, + ACTIONS(164), 1, sym_identifier, - ACTIONS(198), 1, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(200), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(202), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(204), 1, - anon_sym_GT, - STATE(52), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(207), 1, + sym_yield, + STATE(271), 1, sym_expression, - ACTIONS(9), 2, + STATE(381), 1, + sym_statement, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -5061,54 +5006,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3076] = 21, - ACTIONS(3), 1, + ACTIONS(164), 1, sym_identifier, - ACTIONS(7), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(134), 1, - sym_expression, - STATE(177), 1, - sym_statement, - STATE(182), 1, + STATE(207), 1, sym_yield, - ACTIONS(9), 2, + STATE(271), 1, + sym_expression, + STATE(409), 1, + sym_statement, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -5121,54 +5066,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3157] = 21, - ACTIONS(206), 1, + ACTIONS(204), 1, sym_identifier, - ACTIONS(208), 1, + ACTIONS(206), 1, anon_sym_LPAREN, - ACTIONS(212), 1, + ACTIONS(210), 1, sym_string, - ACTIONS(216), 1, + ACTIONS(214), 1, anon_sym_LBRACK, - ACTIONS(218), 1, + ACTIONS(216), 1, anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, ACTIONS(220), 1, anon_sym_table, ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, anon_sym_select, - ACTIONS(226), 1, + ACTIONS(224), 1, anon_sym_insert, - ACTIONS(228), 1, + ACTIONS(226), 1, anon_sym_if, - ACTIONS(230), 1, + ACTIONS(228), 1, anon_sym_while, - ACTIONS(232), 1, + ACTIONS(230), 1, anon_sym_loop, - ACTIONS(234), 1, + ACTIONS(232), 1, anon_sym_match, - STATE(155), 1, - sym_yield, - STATE(173), 1, + STATE(96), 1, sym_expression, - STATE(202), 1, + STATE(162), 1, sym_statement, - ACTIONS(210), 2, + STATE(163), 1, + sym_yield, + ACTIONS(208), 2, sym_float, sym_integer, - ACTIONS(214), 2, + ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(166), 2, + STATE(155), 2, sym_while_loop, sym_break_loop, - STATE(157), 5, + STATE(166), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(165), 11, + STATE(154), 11, sym__expression_kind, sym_value, sym_math, @@ -5181,6 +5126,186 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3238] = 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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(236), 1, + anon_sym_GT, + STATE(55), 1, + aux_sym_function_call_repeat1, + STATE(199), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3319] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(207), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(397), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3400] = 21, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(240), 1, + anon_sym_RBRACE, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(60), 1, + aux_sym_match_repeat1, + STATE(273), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3481] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -5192,9 +5317,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, ACTIONS(23), 1, anon_sym_select, ACTIONS(25), 1, @@ -5207,28 +5332,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(177), 1, - sym_statement, - STATE(182), 1, - sym_yield, - STATE(194), 1, + STATE(135), 1, sym_expression, + STATE(173), 1, + sym_yield, + STATE(186), 1, + sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -5240,15 +5365,1215 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [3319] = 5, - ACTIONS(240), 1, - anon_sym_LT, + [3562] = 21, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + ACTIONS(248), 1, + anon_sym_RBRACE, + STATE(60), 1, + aux_sym_match_repeat1, + STATE(273), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + 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(189), 1, + sym_expression, + STATE(207), 1, + sym_yield, + STATE(218), 1, + sym_statement, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__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(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(250), 1, + anon_sym_GT, + STATE(36), 1, + aux_sym_function_call_repeat1, + STATE(199), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__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(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + 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(173), 1, + sym_yield, + STATE(186), 1, + sym_statement, + STATE(194), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__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(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(215), 1, + sym_expression, + STATE(240), 1, + sym_yield, + STATE(247), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3967] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + 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, + STATE(170), 1, + sym_statement, + STATE(173), 1, + sym_yield, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4048] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(215), 1, + sym_expression, + STATE(240), 1, + sym_yield, + STATE(250), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4129] = 21, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + ACTIONS(252), 1, + anon_sym_RBRACE, + STATE(60), 1, + aux_sym_match_repeat1, + STATE(273), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4210] = 21, + ACTIONS(254), 1, + sym_identifier, + ACTIONS(257), 1, + anon_sym_LPAREN, + ACTIONS(263), 1, + sym_string, + ACTIONS(269), 1, + anon_sym_LBRACK, + ACTIONS(272), 1, + anon_sym_function, + ACTIONS(275), 1, + anon_sym_GT, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_table, + ACTIONS(283), 1, + anon_sym_select, + ACTIONS(286), 1, + anon_sym_insert, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(292), 1, + anon_sym_while, + ACTIONS(295), 1, + anon_sym_loop, + ACTIONS(298), 1, + anon_sym_match, + STATE(55), 1, + aux_sym_function_call_repeat1, + STATE(199), 1, + sym_expression, + ACTIONS(260), 2, + sym_float, + sym_integer, + ACTIONS(266), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4291] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(207), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(377), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [4372] = 21, + ACTIONS(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(96), 1, + sym_expression, + STATE(149), 1, + sym_statement, + STATE(163), 1, + sym_yield, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [4453] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(207), 1, + sym_yield, + STATE(271), 1, + sym_expression, + STATE(378), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(215), 1, + sym_expression, + STATE(238), 1, + sym_statement, + STATE(240), 1, + sym_yield, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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(301), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_LPAREN, + ACTIONS(310), 1, + sym_string, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(319), 1, + anon_sym_function, + ACTIONS(322), 1, + anon_sym_LBRACE, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(327), 1, + anon_sym_table, + ACTIONS(330), 1, + anon_sym_select, + ACTIONS(333), 1, + anon_sym_insert, + ACTIONS(336), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_while, + ACTIONS(342), 1, + anon_sym_loop, + ACTIONS(345), 1, + anon_sym_match, + STATE(60), 1, + aux_sym_match_repeat1, + STATE(273), 1, + sym_expression, + ACTIONS(307), 2, + sym_float, + sym_integer, + ACTIONS(313), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(225), 1, + sym_expression, + STATE(240), 1, + sym_yield, + STATE(269), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(348), 1, + anon_sym_GT, + STATE(55), 1, + aux_sym_function_call_repeat1, + STATE(199), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__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(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(350), 1, + anon_sym_GT, + STATE(62), 1, + aux_sym_function_call_repeat1, + STATE(199), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__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(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(225), 1, + sym_expression, + STATE(240), 1, + sym_yield, + STATE(247), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(96), 1, + sym_expression, + STATE(152), 1, + sym_statement, + STATE(163), 1, + sym_yield, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [5101] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(225), 1, + sym_expression, + STATE(240), 1, + sym_yield, + STATE(250), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__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] = 5, + ACTIONS(356), 1, + anon_sym_LT, + ACTIONS(358), 1, anon_sym_EQ, - ACTIONS(244), 2, + ACTIONS(360), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(236), 14, + ACTIONS(352), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -5257,13 +6582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(238), 20, + ACTIONS(354), 19, sym_identifier, sym_float, sym_integer, @@ -5271,7 +6597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE_PIPE, @@ -5284,1435 +6609,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [3368] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(271), 1, - sym_expression, - STATE(412), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3449] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(112), 1, - sym_expression, - STATE(155), 1, - sym_yield, - STATE(163), 1, - sym_statement, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3530] = 21, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(248), 1, - anon_sym_RBRACE, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(281), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3611] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(224), 1, - sym_expression, - STATE(233), 1, - sym_statement, - STATE(255), 1, - sym_yield, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3692] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(112), 1, - sym_expression, - STATE(155), 1, - sym_yield, - STATE(158), 1, - sym_statement, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3773] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(271), 1, - sym_expression, - STATE(405), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3854] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(271), 1, - sym_expression, - STATE(413), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3935] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(256), 1, - anon_sym_GT, - STATE(58), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4016] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(258), 1, - anon_sym_GT, - STATE(54), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4097] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(260), 1, - anon_sym_GT, - STATE(58), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4178] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(271), 1, - sym_expression, - STATE(407), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4259] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(112), 1, - sym_expression, - STATE(144), 1, - sym_statement, - STATE(155), 1, - sym_yield, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4340] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(208), 1, - sym_yield, - STATE(271), 1, - sym_expression, - STATE(404), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4421] = 21, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(265), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - sym_string, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(280), 1, - anon_sym_function, - ACTIONS(283), 1, - anon_sym_GT, - ACTIONS(285), 1, - anon_sym_table, - ACTIONS(288), 1, - anon_sym_map, - ACTIONS(291), 1, - anon_sym_select, - ACTIONS(294), 1, - anon_sym_insert, - ACTIONS(297), 1, - anon_sym_if, - ACTIONS(300), 1, - anon_sym_while, - ACTIONS(303), 1, - anon_sym_loop, - ACTIONS(306), 1, - anon_sym_match, - STATE(58), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(268), 2, - sym_float, - sym_integer, - ACTIONS(274), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4502] = 21, - ACTIONS(309), 1, - sym_identifier, - ACTIONS(312), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - sym_string, - ACTIONS(324), 1, - anon_sym_LBRACK, - ACTIONS(327), 1, - anon_sym_function, - ACTIONS(330), 1, - anon_sym_RBRACE, - ACTIONS(332), 1, - anon_sym_table, - ACTIONS(335), 1, - anon_sym_map, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(341), 1, - anon_sym_insert, - ACTIONS(344), 1, - anon_sym_if, - ACTIONS(347), 1, - anon_sym_while, - ACTIONS(350), 1, - anon_sym_loop, - ACTIONS(353), 1, - anon_sym_match, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(281), 1, - sym_expression, - ACTIONS(315), 2, - sym_float, - sym_integer, - ACTIONS(321), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4583] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(184), 1, - sym_expression, - STATE(208), 1, - sym_yield, - STATE(218), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4664] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(356), 1, - anon_sym_GT, - STATE(36), 1, - aux_sym_function_call_repeat1, - STATE(195), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4745] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(134), 1, - sym_expression, - STATE(178), 1, - sym_statement, - STATE(182), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4826] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(211), 1, - sym_expression, - STATE(231), 1, - sym_statement, - STATE(255), 1, - sym_yield, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4907] = 21, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - ACTIONS(358), 1, - anon_sym_RBRACE, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(281), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4988] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(224), 1, - sym_expression, - STATE(255), 1, - sym_yield, - STATE(268), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5069] = 21, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(112), 1, - sym_expression, - STATE(143), 1, - sym_statement, - STATE(155), 1, - sym_yield, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5150] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(224), 1, - sym_expression, - STATE(229), 1, - sym_statement, - STATE(255), 1, - sym_yield, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, [5231] = 21, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, + ACTIONS(204), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(224), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(226), 1, anon_sym_if, - ACTIONS(360), 1, - anon_sym_RBRACE, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(281), 1, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(96), 1, sym_expression, - ACTIONS(168), 2, + STATE(156), 1, + sym_statement, + STATE(163), 1, + sym_yield, + ACTIONS(208), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(155), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(166), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(154), 11, sym__expression_kind, sym_value, sym_math, @@ -6734,26 +6679,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, + ACTIONS(238), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(242), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(244), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(246), 1, anon_sym_if, - STATE(64), 1, + STATE(47), 1, aux_sym_match_repeat1, - STATE(281), 1, + STATE(273), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -6761,16 +6706,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -6782,14 +6727,73 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [5390] = 5, - STATE(123), 1, - sym_logic_operator, - STATE(124), 1, - sym_math_operator, - STATE(132), 1, - aux_sym_yield_repeat1, - ACTIONS(362), 15, + [5390] = 20, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(45), 1, + aux_sym_match_repeat1, + STATE(273), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5468] = 5, + ACTIONS(362), 1, + anon_sym_LT, + ACTIONS(364), 1, + anon_sym_EQ, + ACTIONS(366), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(352), 15, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -6798,14 +6802,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + 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, - ACTIONS(364), 19, + ACTIONS(354), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [5516] = 20, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(54), 1, + aux_sym_match_repeat1, + STATE(273), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5594] = 5, + STATE(85), 1, + sym_logic_operator, + STATE(86), 1, + sym_math_operator, + STATE(133), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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, @@ -6813,7 +6918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -6825,210 +6929,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [5438] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(68), 1, - aux_sym_match_repeat1, - STATE(281), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5516] = 5, - ACTIONS(366), 1, - anon_sym_LT, - ACTIONS(368), 1, - anon_sym_EQ, - ACTIONS(370), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(236), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(238), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [5564] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(47), 1, - aux_sym_match_repeat1, - STATE(281), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, [5642] = 19, - ACTIONS(164), 1, + ACTIONS(204), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(206), 1, anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(210), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(214), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(216), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, + ACTIONS(222), 1, anon_sym_select, - ACTIONS(184), 1, + ACTIONS(224), 1, anon_sym_insert, - ACTIONS(186), 1, + ACTIONS(226), 1, anon_sym_if, - ACTIONS(188), 1, + ACTIONS(228), 1, anon_sym_while, - ACTIONS(190), 1, + ACTIONS(230), 1, anon_sym_loop, - ACTIONS(192), 1, + ACTIONS(232), 1, anon_sym_match, - STATE(210), 1, + STATE(123), 1, sym_expression, - ACTIONS(168), 2, + ACTIONS(208), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(155), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(166), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(154), 11, sym__expression_kind, sym_value, sym_math, @@ -7041,174 +6986,6 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [5717] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(283), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5792] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(265), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5867] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(263), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5942] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -7220,9 +6997,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(182), 1, anon_sym_select, ACTIONS(184), 1, @@ -7235,7 +7012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(207), 1, + STATE(270), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7243,16 +7020,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -7264,7 +7041,99 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6017] = 19, + [5792] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(85), 1, + sym_logic_operator, + STATE(86), 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), 10, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(374), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [5845] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(85), 1, + sym_logic_operator, + STATE(86), 1, + sym_math_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 10, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [5898] = 19, + ACTIONS(164), 1, + sym_identifier, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -7274,24 +7143,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(277), 1, + STATE(208), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7299,16 +7166,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -7320,7 +7187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6092] = 19, + [5973] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -7330,24 +7197,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, + ACTIONS(238), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(242), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(244), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(246), 1, anon_sym_if, - STATE(275), 1, + STATE(276), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7355,16 +7222,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -7376,7 +7243,65 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6167] = 19, + [6048] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(285), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(286), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6123] = 19, + ACTIONS(3), 1, + sym_identifier, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -7386,9 +7311,1229 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, + 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(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6198] = 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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(131), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6273] = 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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + 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, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6348] = 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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(185), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6423] = 19, + ACTIONS(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(76), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [6498] = 19, + ACTIONS(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(77), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [6573] = 19, + ACTIONS(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [6648] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(285), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(296), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6723] = 19, + ACTIONS(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(146), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [6798] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(212), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6873] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(209), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6948] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(275), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7023] = 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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + 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(174), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7098] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(277), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7173] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(274), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7248] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(392), 1, + anon_sym_DASH_GT, + STATE(85), 1, + sym_logic_operator, + STATE(86), 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(388), 9, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [7303] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(281), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7378] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(128), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7453] = 19, + ACTIONS(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + 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(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7528] = 19, + ACTIONS(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + STATE(195), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7603] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_select, + ACTIONS(25), 1, + anon_sym_insert, + ACTIONS(27), 1, + anon_sym_if, + ACTIONS(29), 1, + anon_sym_while, + ACTIONS(31), 1, + anon_sym_loop, + ACTIONS(33), 1, + anon_sym_match, + STATE(136), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(182), 2, + sym_while_loop, + sym_break_loop, + STATE(190), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(184), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7678] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(284), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7753] = 19, + ACTIONS(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_LBRACE, + ACTIONS(21), 1, + anon_sym_table, ACTIONS(29), 1, anon_sym_while, ACTIONS(31), 1, @@ -7411,16 +8556,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -7432,219 +8577,92 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6242] = 19, - ACTIONS(7), 1, + [7828] = 4, + STATE(85), 1, + sym_logic_operator, + STATE(86), 1, + sym_math_operator, + ACTIONS(394), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, anon_sym_LPAREN, - ACTIONS(11), 1, sym_string, - ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, + anon_sym_COMMA, + anon_sym_GT, + 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, + ACTIONS(396), 18, sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - STATE(196), 1, - sym_expression, - ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6317] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, anon_sym_function, - ACTIONS(178), 1, anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, anon_sym_select, - ACTIONS(184), 1, anon_sym_insert, - ACTIONS(186), 1, anon_sym_if, - ACTIONS(188), 1, + anon_sym_else, anon_sym_while, - ACTIONS(190), 1, anon_sym_loop, - ACTIONS(192), 1, anon_sym_match, - STATE(217), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6392] = 19, - ACTIONS(3), 1, + [7873] = 19, + ACTIONS(204), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(192), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6467] = 19, ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, anon_sym_LPAREN, - ACTIONS(212), 1, + ACTIONS(210), 1, sym_string, - ACTIONS(216), 1, + ACTIONS(214), 1, anon_sym_LBRACK, - ACTIONS(218), 1, + ACTIONS(216), 1, anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, ACTIONS(220), 1, anon_sym_table, ACTIONS(222), 1, - anon_sym_map, + anon_sym_select, ACTIONS(224), 1, - anon_sym_select, + anon_sym_insert, ACTIONS(226), 1, - anon_sym_insert, + anon_sym_if, ACTIONS(228), 1, - anon_sym_if, + anon_sym_while, ACTIONS(230), 1, - anon_sym_while, + anon_sym_loop, ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, anon_sym_match, - STATE(145), 1, + STATE(104), 1, sym_expression, - ACTIONS(210), 2, + ACTIONS(208), 2, sym_float, sym_integer, - ACTIONS(214), 2, + ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(166), 2, + STATE(155), 2, sym_while_loop, sym_break_loop, - STATE(157), 5, + STATE(166), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(165), 11, + STATE(154), 11, sym__expression_kind, sym_value, sym_math, @@ -7656,9 +8674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6542] = 19, - ACTIONS(164), 1, - sym_identifier, + [7948] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -7668,22 +8684,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(212), 1, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(279), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -7691,16 +8709,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -7712,121 +8730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6617] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(209), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6692] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(216), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6767] = 19, - ACTIONS(3), 1, - sym_identifier, + [8023] = 19, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -7836,175 +8740,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, 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(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6842] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(282), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6917] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6992] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, ACTIONS(29), 1, anon_sym_while, ACTIONS(31), 1, @@ -8027,16 +8765,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -8048,9 +8786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7067] = 19, - ACTIONS(3), 1, - sym_identifier, + [8098] = 19, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8060,22 +8796,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, + anon_sym_table, ACTIONS(29), 1, anon_sym_while, ACTIONS(31), 1, anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(168), 1, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + STATE(196), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -8083,16 +8821,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -8104,7 +8842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7142] = 19, + [8173] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -8116,9 +8854,65 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(214), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8248] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, ACTIONS(182), 1, anon_sym_select, ACTIONS(184), 1, @@ -8139,16 +8933,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -8160,7 +8954,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7217] = 19, + [8323] = 19, + ACTIONS(204), 1, + sym_identifier, + ACTIONS(206), 1, + anon_sym_LPAREN, + ACTIONS(210), 1, + sym_string, + ACTIONS(214), 1, + anon_sym_LBRACK, + ACTIONS(216), 1, + anon_sym_function, + ACTIONS(218), 1, + anon_sym_LBRACE, + ACTIONS(220), 1, + anon_sym_table, + ACTIONS(222), 1, + anon_sym_select, + ACTIONS(224), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(228), 1, + anon_sym_while, + ACTIONS(230), 1, + anon_sym_loop, + ACTIONS(232), 1, + anon_sym_match, + STATE(121), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_while_loop, + sym_break_loop, + STATE(166), 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, + [8398] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -8170,414 +9020,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(273), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7292] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(284), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7367] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(276), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7442] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(105), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7517] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(131), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7592] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(130), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7667] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(279), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7742] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, anon_sym_if, STATE(280), 1, sym_expression, @@ -8587,16 +9045,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -8608,146 +9066,9 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [7817] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, + [8473] = 19, + ACTIONS(3), 1, sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(295), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7892] = 4, - STATE(123), 1, - sym_logic_operator, - STATE(124), 1, - sym_math_operator, - ACTIONS(372), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(374), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [7937] = 5, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - STATE(149), 1, - aux_sym_yield_repeat1, - ACTIONS(362), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(364), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [7984] = 19, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8757,24 +9078,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, anon_sym_function, ACTIONS(19), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(21), 1, - anon_sym_map, + anon_sym_table, + 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(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - STATE(199), 1, + STATE(125), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -8782,16 +9101,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(182), 2, sym_while_loop, sym_break_loop, - STATE(175), 5, + STATE(190), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(189), 11, + STATE(184), 11, sym__expression_kind, sym_value, sym_math, @@ -8803,63 +9122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8059] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_table, - ACTIONS(180), 1, - anon_sym_map, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(246), 1, - sym_identifier, - ACTIONS(250), 1, - anon_sym_select, - ACTIONS(252), 1, - anon_sym_insert, - ACTIONS(254), 1, - anon_sym_if, - STATE(274), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(237), 2, - sym_while_loop, - sym_break_loop, - STATE(244), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(251), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8134] = 19, + [8548] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -8871,9 +9134,177 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, + ACTIONS(182), 1, + anon_sym_select, + ACTIONS(184), 1, + anon_sym_insert, + ACTIONS(186), 1, + anon_sym_if, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + STATE(211), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8623] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(265), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8698] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(257), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8773] = 19, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, ACTIONS(182), 1, anon_sym_select, ACTIONS(184), 1, @@ -8894,16 +9325,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -8915,7 +9346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8209] = 19, + [8848] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -8925,22 +9356,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, + ACTIONS(238), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(242), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(244), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(246), 1, anon_sym_if, STATE(285), 1, sym_expression, @@ -8950,16 +9381,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(287), 11, + STATE(298), 11, sym__expression_kind, sym_value, sym_math, @@ -8971,255 +9402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8284] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(153), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8359] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(123), 1, - sym_logic_operator, - STATE(124), 1, - sym_math_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(376), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(378), 15, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [8412] = 9, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(392), 1, - anon_sym_DASH_GT, - STATE(123), 1, - sym_logic_operator, - STATE(124), 1, - sym_math_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(388), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(390), 15, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [8467] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(137), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8542] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(123), 1, - sym_logic_operator, - STATE(124), 1, - sym_math_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(394), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(396), 15, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [8595] = 19, + [8923] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -9229,24 +9412,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, + ACTIONS(238), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(242), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(244), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(246), 1, anon_sym_if, - STATE(285), 1, + STATE(278), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9254,16 +9437,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(292), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -9275,231 +9458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8670] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(111), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8745] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(114), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8820] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(104), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8895] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(70), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8970] = 19, + [8998] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -9509,24 +9468,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, + ACTIONS(238), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(242), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(244), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(246), 1, anon_sym_if, - STATE(259), 1, + STATE(283), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9534,16 +9493,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -9555,26 +9514,26 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [9045] = 8, - ACTIONS(382), 1, + [9073] = 8, + ACTIONS(378), 1, anon_sym_DASH, - STATE(123), 1, + STATE(85), 1, sym_logic_operator, - STATE(124), 1, + STATE(86), 1, sym_math_operator, - ACTIONS(384), 2, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(398), 9, + ACTIONS(398), 10, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -9583,8 +9542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(400), 15, + ACTIONS(400), 14, sym_identifier, sym_float, sym_integer, @@ -9592,7 +9552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_select, anon_sym_insert, anon_sym_if, @@ -9600,26 +9559,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9098] = 8, - ACTIONS(382), 1, + [9126] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(282), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9201] = 8, + ACTIONS(378), 1, anon_sym_DASH, - STATE(123), 1, + STATE(85), 1, sym_logic_operator, - STATE(124), 1, + STATE(86), 1, sym_math_operator, - ACTIONS(384), 2, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(402), 9, + ACTIONS(402), 10, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -9628,8 +9643,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(404), 15, + ACTIONS(404), 14, sym_identifier, sym_float, sym_integer, @@ -9637,7 +9653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_select, anon_sym_insert, anon_sym_if, @@ -9645,175 +9660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9151] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(121), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [9226] = 19, - ACTIONS(206), 1, - sym_identifier, - ACTIONS(208), 1, - anon_sym_LPAREN, - ACTIONS(212), 1, - sym_string, - ACTIONS(216), 1, - anon_sym_LBRACK, - ACTIONS(218), 1, - anon_sym_function, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_map, - ACTIONS(224), 1, - anon_sym_select, - ACTIONS(226), 1, - anon_sym_insert, - ACTIONS(228), 1, - anon_sym_if, - ACTIONS(230), 1, - anon_sym_while, - ACTIONS(232), 1, - anon_sym_loop, - ACTIONS(234), 1, - anon_sym_match, - STATE(122), 1, - sym_expression, - ACTIONS(210), 2, - sym_float, - sym_integer, - ACTIONS(214), 2, - anon_sym_true, - anon_sym_false, - STATE(166), 2, - sym_while_loop, - sym_break_loop, - STATE(157), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(165), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [9301] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_table, - ACTIONS(21), 1, - anon_sym_map, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(136), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym_while_loop, - sym_break_loop, - STATE(175), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(189), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [9376] = 19, + [9254] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -9825,9 +9672,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(182), 1, anon_sym_select, ACTIONS(184), 1, @@ -9840,7 +9687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(266), 1, + STATE(210), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9848,16 +9695,114 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9329] = 5, + STATE(81), 1, + sym_logic_operator, + STATE(82), 1, + sym_math_operator, + STATE(144), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [9376] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_LBRACE, + ACTIONS(180), 1, + anon_sym_table, + ACTIONS(188), 1, + anon_sym_while, + ACTIONS(190), 1, + anon_sym_loop, + ACTIONS(192), 1, + anon_sym_match, + ACTIONS(238), 1, + sym_identifier, + ACTIONS(242), 1, + anon_sym_select, + ACTIONS(244), 1, + anon_sym_insert, + ACTIONS(246), 1, + anon_sym_if, + STATE(262), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(230), 2, + sym_while_loop, + sym_break_loop, + STATE(234), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -9879,24 +9824,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(176), 1, anon_sym_function, ACTIONS(178), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(180), 1, - anon_sym_map, + anon_sym_table, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(246), 1, + ACTIONS(238), 1, sym_identifier, - ACTIONS(250), 1, + ACTIONS(242), 1, anon_sym_select, - ACTIONS(252), 1, + ACTIONS(244), 1, anon_sym_insert, - ACTIONS(254), 1, + ACTIONS(246), 1, anon_sym_if, - STATE(261), 1, + STATE(259), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9904,16 +9849,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(237), 2, + STATE(230), 2, sym_while_loop, sym_break_loop, - STATE(244), 5, + STATE(234), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(251), 11, + STATE(231), 11, sym__expression_kind, sym_value, sym_math, @@ -9925,539 +9870,54 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [9526] = 3, + [9526] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(81), 1, + sym_logic_operator, + STATE(82), 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(398), 10, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(400), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9578] = 3, ACTIONS(410), 1, anon_sym_where, - ACTIONS(406), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(408), 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, - [9568] = 3, - ACTIONS(416), 1, - anon_sym_where, - ACTIONS(412), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(414), 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, - [9610] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(376), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(378), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9662] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(394), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(396), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9714] = 3, - STATE(133), 1, - aux_sym_yield_repeat1, - ACTIONS(418), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(420), 19, - sym_identifier, - sym_float, - sym_integer, - 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, - [9756] = 4, - ACTIONS(422), 1, - anon_sym_DASH_GT, - STATE(133), 1, - aux_sym_yield_repeat1, - ACTIONS(372), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(374), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9800] = 9, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(425), 1, - anon_sym_DASH_GT, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(388), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(390), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9854] = 4, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(372), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(374), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9898] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(398), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(400), 14, - sym_identifier, - sym_float, - sym_integer, - 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, - [9950] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(402), 9, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - ACTIONS(404), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10002] = 2, - ACTIONS(427), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(429), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10041] = 2, - ACTIONS(431), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(433), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10080] = 2, - ACTIONS(435), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(437), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_into, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10119] = 3, - ACTIONS(439), 1, - anon_sym_where, - ACTIONS(406), 15, + ACTIONS(406), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10466,6 +9926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10481,7 +9942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -10489,13 +9949,14 @@ 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, - [10160] = 3, - ACTIONS(441), 1, + [9620] = 3, + ACTIONS(416), 1, anon_sym_where, - ACTIONS(412), 15, + ACTIONS(412), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10504,6 +9965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10519,7 +9981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -10527,107 +9988,634 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10201] = 3, - ACTIONS(447), 1, anon_sym_else, - ACTIONS(443), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(445), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, anon_sym_while, anon_sym_loop, anon_sym_match, - [10242] = 3, - ACTIONS(449), 1, - anon_sym_else, - ACTIONS(443), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(445), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, + [9662] = 8, + ACTIONS(378), 1, anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10283] = 6, - ACTIONS(451), 1, - anon_sym_DASH_GT, - STATE(123), 1, + STATE(81), 1, sym_logic_operator, - STATE(124), 1, + STATE(82), 1, + sym_math_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(384), 10, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(386), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9714] = 4, + ACTIONS(418), 1, + anon_sym_DASH_GT, + STATE(132), 1, + aux_sym_yield_repeat1, + ACTIONS(394), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + 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, + ACTIONS(396), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [9758] = 3, + STATE(132), 1, + aux_sym_yield_repeat1, + ACTIONS(421), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_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, + [9800] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(81), 1, + sym_logic_operator, + STATE(82), 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), 10, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(374), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9852] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(425), 1, + anon_sym_DASH_GT, + STATE(81), 1, + sym_logic_operator, + STATE(82), 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(388), 9, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(390), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9906] = 4, + STATE(81), 1, + sym_logic_operator, + STATE(82), 1, + sym_math_operator, + ACTIONS(394), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(396), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [9950] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(81), 1, + sym_logic_operator, + STATE(82), 1, + sym_math_operator, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(402), 10, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(404), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10002] = 10, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(427), 1, + anon_sym_DASH_GT, + STATE(81), 1, + sym_logic_operator, + STATE(82), 1, + sym_math_operator, + STATE(205), 1, + aux_sym_yield_repeat1, + ACTIONS(380), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(368), 7, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(370), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10057] = 2, + ACTIONS(429), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10096] = 2, + ACTIONS(433), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(435), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [10135] = 2, + ACTIONS(437), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10174] = 2, + ACTIONS(441), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10213] = 2, + ACTIONS(445), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10252] = 3, + STATE(151), 1, + aux_sym_yield_repeat1, + ACTIONS(421), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(423), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [10293] = 2, + ACTIONS(449), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10332] = 6, + ACTIONS(453), 1, + anon_sym_DASH_GT, + STATE(85), 1, + sym_logic_operator, + STATE(86), 1, sym_math_operator, STATE(193), 1, aux_sym_yield_repeat1, - ACTIONS(362), 11, + ACTIONS(368), 12, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(364), 19, + ACTIONS(370), 18, sym_identifier, sym_float, sym_integer, @@ -10635,7 +10623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -10647,8 +10634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10330] = 2, - ACTIONS(453), 15, + [10379] = 2, + ACTIONS(455), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10657,6 +10644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10664,7 +10652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(455), 19, + ACTIONS(457), 18, sym_identifier, sym_float, sym_integer, @@ -10672,7 +10660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -10684,8 +10671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10369] = 2, - ACTIONS(457), 15, + [10418] = 2, + ACTIONS(459), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10694,6 +10681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10701,7 +10689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(459), 19, + ACTIONS(461), 18, sym_identifier, sym_float, sym_integer, @@ -10709,7 +10697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -10721,47 +10708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10408] = 2, - ACTIONS(461), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(463), 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, + [10457] = 3, + ACTIONS(467), 1, anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10447] = 3, - STATE(152), 1, - aux_sym_yield_repeat1, - ACTIONS(418), 15, + ACTIONS(463), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -10770,6 +10720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -10777,7 +10728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(420), 18, + ACTIONS(465), 17, sym_identifier, sym_float, sym_integer, @@ -10785,7 +10736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -10796,798 +10746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10488] = 2, - ACTIONS(465), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(467), 19, - sym_identifier, - sym_float, - sym_integer, - 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, - [10527] = 2, - ACTIONS(469), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(471), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10566] = 4, - ACTIONS(473), 1, - anon_sym_DASH_GT, - STATE(152), 1, - aux_sym_yield_repeat1, - ACTIONS(372), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(374), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10609] = 10, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(476), 1, - anon_sym_DASH_GT, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - STATE(204), 1, - aux_sym_yield_repeat1, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(362), 6, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(364), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10664] = 2, - ACTIONS(435), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(437), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10703] = 2, - ACTIONS(388), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(390), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10742] = 2, - ACTIONS(478), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(480), 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, - [10781] = 2, - ACTIONS(482), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(484), 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, - [10820] = 2, - ACTIONS(486), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(488), 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, - [10859] = 2, - ACTIONS(490), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(492), 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, - [10898] = 2, - ACTIONS(494), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(496), 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, - [10937] = 2, - ACTIONS(498), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(500), 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, - [10976] = 2, - ACTIONS(502), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(504), 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, - [11015] = 2, - ACTIONS(506), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(508), 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, - [11054] = 2, - ACTIONS(510), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(512), 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, - [11093] = 2, - ACTIONS(514), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(516), 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, - [11132] = 2, - ACTIONS(518), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(520), 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, - [11171] = 2, - ACTIONS(522), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(524), 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, - [11210] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(372), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(374), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11260] = 2, - ACTIONS(427), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(429), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11298] = 2, - ACTIONS(431), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(433), 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, - [11336] = 2, - ACTIONS(469), 15, + [10498] = 2, + ACTIONS(469), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11596,6 +10756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -11611,7 +10772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -11619,98 +10779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11374] = 2, - ACTIONS(465), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(467), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11412] = 9, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(526), 1, - anon_sym_DASH_GT, - STATE(123), 1, - sym_logic_operator, - STATE(124), 1, - sym_math_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(388), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(390), 15, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [11464] = 2, - ACTIONS(461), 15, + [10537] = 4, + ACTIONS(473), 1, + anon_sym_DASH_GT, + STATE(151), 1, + aux_sym_yield_repeat1, + ACTIONS(394), 15, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -11718,7 +10804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(463), 18, + ACTIONS(396), 17, sym_identifier, sym_float, sym_integer, @@ -11726,7 +10812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -11737,8 +10822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11502] = 2, - ACTIONS(482), 15, + [10580] = 2, + ACTIONS(476), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11747,6 +10832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -11754,7 +10840,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(484), 18, + ACTIONS(478), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [10619] = 2, + ACTIONS(480), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10658] = 2, + ACTIONS(484), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [10697] = 2, + ACTIONS(488), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [10736] = 3, + ACTIONS(492), 1, + anon_sym_else, + ACTIONS(463), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(465), 17, sym_identifier, sym_float, sym_integer, @@ -11762,7 +10998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -11773,8 +11008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11540] = 2, - ACTIONS(457), 15, + [10777] = 3, + ACTIONS(494), 1, + anon_sym_where, + ACTIONS(406), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11783,6 +11020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -11790,7 +11028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(459), 18, + ACTIONS(408), 17, sym_identifier, sym_float, sym_integer, @@ -11798,7 +11036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -11809,8 +11046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11578] = 2, - ACTIONS(506), 15, + [10818] = 3, + ACTIONS(496), 1, + anon_sym_where, + ACTIONS(412), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11819,6 +11058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -11826,7 +11066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(508), 18, + ACTIONS(414), 17, sym_identifier, sym_float, sym_integer, @@ -11834,7 +11074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -11845,44 +11084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11616] = 2, - ACTIONS(486), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(488), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11654] = 2, - ACTIONS(498), 15, + [10859] = 2, + ACTIONS(498), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -11891,6 +11094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -11906,7 +11110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -11914,306 +11117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [11692] = 2, - ACTIONS(478), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(480), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11730] = 2, - ACTIONS(510), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(512), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11768] = 2, - ACTIONS(388), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(390), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11806] = 2, - ACTIONS(522), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(524), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11844] = 9, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(528), 1, - anon_sym_DASH_GT, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(388), 6, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(390), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11896] = 2, - ACTIONS(494), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(496), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11934] = 2, - ACTIONS(490), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(492), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11972] = 2, - ACTIONS(518), 15, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(520), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12010] = 2, - ACTIONS(502), 15, + [10898] = 2, + ACTIONS(502), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12222,6 +11131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -12237,7 +11147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12245,11 +11154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [12048] = 2, - ACTIONS(514), 15, + [10937] = 2, + ACTIONS(506), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12258,6 +11168,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + 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, + ACTIONS(508), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [10976] = 2, + ACTIONS(510), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(512), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_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, + [11015] = 2, + ACTIONS(388), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(390), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_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, + [11054] = 2, + ACTIONS(429), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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_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, + [11093] = 2, + ACTIONS(514), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -12273,7 +11332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12281,11 +11339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [12086] = 2, - ACTIONS(453), 15, + [11132] = 2, + ACTIONS(518), 16, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, @@ -12294,6 +11353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, @@ -12301,7 +11361,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(455), 18, + ACTIONS(520), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11171] = 2, + ACTIONS(522), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(524), 18, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_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, + [11210] = 2, + ACTIONS(437), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, sym_identifier, sym_float, sym_integer, @@ -12309,7 +11443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12320,26 +11453,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12124] = 5, - ACTIONS(366), 1, + [11248] = 2, + ACTIONS(455), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(457), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11286] = 2, + ACTIONS(510), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(512), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11324] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(526), 1, + anon_sym_DASH_GT, + STATE(85), 1, + sym_logic_operator, + STATE(86), 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(388), 6, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(390), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11376] = 2, + ACTIONS(469), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(471), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11414] = 2, + ACTIONS(388), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(390), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11452] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(81), 1, + sym_logic_operator, + STATE(82), 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(394), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(396), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11502] = 2, + ACTIONS(506), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(508), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11540] = 2, + ACTIONS(502), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(504), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11578] = 2, + ACTIONS(449), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11616] = 2, + ACTIONS(459), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(461), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11654] = 2, + ACTIONS(514), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(516), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11692] = 2, + ACTIONS(480), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11730] = 2, + ACTIONS(445), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11768] = 2, + ACTIONS(488), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11806] = 5, + ACTIONS(362), 1, anon_sym_LT, - ACTIONS(530), 1, + ACTIONS(528), 1, anon_sym_EQ, - ACTIONS(532), 2, + ACTIONS(530), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(236), 10, + ACTIONS(352), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(238), 19, + ACTIONS(354), 18, sym_identifier, sym_float, sym_integer, @@ -12347,7 +11998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE_PIPE, @@ -12359,28 +12009,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12168] = 6, - ACTIONS(534), 1, + [11850] = 2, + ACTIONS(484), 16, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, - sym_logic_operator, - STATE(197), 1, - aux_sym_yield_repeat1, - ACTIONS(362), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(364), 18, + ACTIONS(486), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [11888] = 6, + ACTIONS(532), 1, + anon_sym_DASH_GT, + STATE(81), 1, + sym_logic_operator, + STATE(82), 1, + sym_math_operator, + STATE(197), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 12, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(370), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11934] = 2, + ACTIONS(476), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(478), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [11972] = 2, + ACTIONS(498), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(500), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12010] = 2, + ACTIONS(522), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(524), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12048] = 9, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(534), 1, + anon_sym_DASH_GT, + STATE(81), 1, + sym_logic_operator, + STATE(82), 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(388), 7, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(390), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12100] = 2, + ACTIONS(518), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(520), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [12138] = 2, + ACTIONS(433), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(435), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [12176] = 2, + ACTIONS(441), 16, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + 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), 17, sym_identifier, sym_float, sym_integer, @@ -12388,7 +12334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12400,23 +12345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12214] = 4, - ACTIONS(451), 1, + ACTIONS(453), 1, anon_sym_DASH_GT, - STATE(133), 1, + STATE(132), 1, aux_sym_yield_repeat1, - ACTIONS(418), 11, + ACTIONS(421), 12, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(420), 19, + ACTIONS(423), 18, sym_identifier, sym_float, sym_integer, @@ -12424,7 +12370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12437,33 +12382,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12255] = 9, - ACTIONS(382), 1, + ACTIONS(378), 1, anon_sym_DASH, ACTIONS(536), 1, anon_sym_DASH_GT, - STATE(113), 1, - sym_math_operator, - STATE(125), 1, + STATE(81), 1, sym_logic_operator, - ACTIONS(384), 2, + STATE(82), 1, + sym_math_operator, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(388), 5, + ACTIONS(388), 6, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, - ACTIONS(390), 14, + anon_sym_LBRACE, + ACTIONS(390), 13, sym_identifier, sym_float, sym_integer, @@ -12471,40 +12417,196 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12306] = 9, - ACTIONS(382), 1, + [12306] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(100), 1, + sym_math_operator, + STATE(103), 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), 6, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(386), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12354] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(100), 1, + sym_math_operator, + STATE(103), 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), 6, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(404), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12402] = 4, + ACTIONS(532), 1, + anon_sym_DASH_GT, + STATE(151), 1, + aux_sym_yield_repeat1, + ACTIONS(421), 12, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(423), 17, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + 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, + [12442] = 8, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(100), 1, + sym_math_operator, + STATE(103), 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), 6, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(374), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [12490] = 9, + ACTIONS(378), 1, anon_sym_DASH, ACTIONS(542), 1, anon_sym_COMMA, - STATE(92), 1, + STATE(100), 1, sym_math_operator, - STATE(106), 1, + STATE(103), 1, sym_logic_operator, - ACTIONS(384), 2, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(540), 4, + ACTIONS(540), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(538), 14, + anon_sym_LBRACE, + ACTIONS(538), 13, sym_identifier, sym_float, sym_integer, @@ -12512,163 +12614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12356] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(92), 1, - sym_math_operator, - STATE(106), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(376), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(378), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12404] = 4, - ACTIONS(534), 1, - anon_sym_DASH_GT, - STATE(152), 1, - aux_sym_yield_repeat1, - ACTIONS(418), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(420), 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, - [12444] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(92), 1, - sym_math_operator, - STATE(106), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(394), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(396), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12492] = 8, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(92), 1, - sym_math_operator, - STATE(106), 1, - sym_logic_operator, - ACTIONS(384), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(386), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(398), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - 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, @@ -12676,31 +12621,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12540] = 8, - ACTIONS(382), 1, + ACTIONS(378), 1, anon_sym_DASH, - STATE(92), 1, + STATE(100), 1, sym_math_operator, - STATE(106), 1, + STATE(103), 1, sym_logic_operator, - ACTIONS(384), 2, + ACTIONS(380), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(386), 3, + ACTIONS(382), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(402), 5, + ACTIONS(398), 6, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, - ACTIONS(404), 14, + anon_sym_LBRACE, + ACTIONS(400), 13, sym_identifier, sym_float, sym_integer, @@ -12708,7 +12654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_select, anon_sym_insert, anon_sym_if, @@ -12718,19 +12663,20 @@ static const uint16_t ts_small_parse_table[] = { [12588] = 3, ACTIONS(544), 1, anon_sym_where, - ACTIONS(412), 11, + ACTIONS(406), 12, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(414), 18, + ACTIONS(408), 17, sym_identifier, sym_float, sym_integer, @@ -12738,7 +12684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12751,20 +12696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, [12625] = 3, ACTIONS(546), 1, - anon_sym_else, - ACTIONS(443), 11, + anon_sym_where, + ACTIONS(412), 12, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(445), 18, + ACTIONS(414), 17, sym_identifier, sym_float, sym_integer, @@ -12772,7 +12718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12785,20 +12730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, [12662] = 3, ACTIONS(548), 1, - anon_sym_where, - ACTIONS(406), 11, + anon_sym_else, + ACTIONS(463), 12, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(408), 18, + ACTIONS(465), 17, sym_identifier, sym_float, sym_integer, @@ -12806,7 +12752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_and, @@ -12818,18 +12763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12699] = 4, - ACTIONS(476), 1, + ACTIONS(550), 1, anon_sym_DASH_GT, - STATE(205), 1, + STATE(204), 1, aux_sym_yield_repeat1, - ACTIONS(418), 6, + ACTIONS(394), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(420), 14, + ACTIONS(396), 13, sym_identifier, sym_float, sym_integer, @@ -12837,7 +12783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_select, anon_sym_insert, anon_sym_if, @@ -12845,18 +12790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, [12730] = 4, - ACTIONS(550), 1, + ACTIONS(427), 1, anon_sym_DASH_GT, - STATE(205), 1, + STATE(204), 1, aux_sym_yield_repeat1, - ACTIONS(372), 6, + ACTIONS(421), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(374), 14, + ACTIONS(423), 13, sym_identifier, sym_float, sym_integer, @@ -12864,7 +12810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_function, anon_sym_table, - anon_sym_map, anon_sym_select, anon_sym_insert, anon_sym_if, @@ -12876,13 +12821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(555), 1, anon_sym_EQ, - ACTIONS(238), 2, + ACTIONS(354), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(557), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(236), 15, + ACTIONS(352), 15, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12898,41 +12843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12793] = 5, - ACTIONS(364), 1, - anon_sym_DASH, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - STATE(225), 1, - aux_sym_yield_repeat1, - ACTIONS(362), 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, - [12824] = 2, - ACTIONS(388), 6, + [12793] = 2, + ACTIONS(388), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(390), 14, + ACTIONS(390), 13, sym_identifier, sym_float, sym_integer, @@ -12940,225 +12860,77 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12849] = 6, - ACTIONS(382), 1, + [12818] = 5, + ACTIONS(370), 1, anon_sym_DASH, - STATE(83), 1, + STATE(109), 1, sym_math_operator, - STATE(87), 1, + STATE(110), 1, sym_logic_operator, - ACTIONS(380), 4, + STATE(219), 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, - ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(398), 7, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12849] = 6, + ACTIONS(370), 1, + anon_sym_DASH, + ACTIONS(559), 1, anon_sym_DASH_GT, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + STATE(256), 1, + aux_sym_yield_repeat1, + ACTIONS(368), 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_else, anon_sym_EQ_GT, [12881] = 6, - ACTIONS(364), 1, + ACTIONS(378), 1, anon_sym_DASH, - ACTIONS(559), 1, - anon_sym_DASH_GT, - STATE(83), 1, + STATE(109), 1, sym_math_operator, - STATE(87), 1, + STATE(110), 1, sym_logic_operator, - STATE(253), 1, - aux_sym_yield_repeat1, - ACTIONS(362), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12913] = 7, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(561), 1, - anon_sym_DASH_GT, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(388), 6, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12947] = 4, - ACTIONS(374), 1, - anon_sym_DASH, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - ACTIONS(372), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12975] = 6, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(376), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13007] = 2, - ACTIONS(563), 5, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(565), 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, - [13031] = 2, - ACTIONS(567), 5, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(569), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [13055] = 6, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(394), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13087] = 6, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -13172,35 +12944,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13119] = 2, - ACTIONS(573), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(571), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [13142] = 4, - ACTIONS(374), 1, + [12913] = 6, + ACTIONS(378), 1, anon_sym_DASH, - ACTIONS(575), 1, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(398), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12945] = 4, + ACTIONS(396), 1, + anon_sym_DASH, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + ACTIONS(394), 16, anon_sym_DASH_GT, - STATE(219), 1, - aux_sym_yield_repeat1, - ACTIONS(372), 15, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -13216,7 +12994,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13169] = 3, + [12973] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(372), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13005] = 6, + ACTIONS(378), 1, + anon_sym_DASH, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(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, + [13037] = 7, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(561), 1, + anon_sym_DASH_GT, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + ACTIONS(376), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(388), 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13071] = 2, + ACTIONS(563), 6, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(565), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13095] = 2, + ACTIONS(567), 6, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(569), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13119] = 2, + ACTIONS(573), 5, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(571), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13142] = 3, + ACTIONS(423), 1, + anon_sym_DASH, + STATE(220), 1, + aux_sym_yield_repeat1, + ACTIONS(421), 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, + [13167] = 4, + ACTIONS(396), 1, + anon_sym_DASH, + ACTIONS(575), 1, + anon_sym_DASH_GT, + STATE(220), 1, + aux_sym_yield_repeat1, + ACTIONS(394), 15, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13194] = 3, ACTIONS(408), 1, anon_sym_DASH, ACTIONS(578), 1, @@ -13238,7 +13205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13194] = 3, + [13219] = 3, ACTIONS(414), 1, anon_sym_DASH, ACTIONS(580), 1, @@ -13260,18 +13227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13219] = 5, + [13244] = 2, + ACTIONS(275), 5, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(582), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13267] = 5, ACTIONS(553), 1, anon_sym_LT, - ACTIONS(582), 1, + ACTIONS(584), 1, anon_sym_EQ, - ACTIONS(238), 2, + ACTIONS(354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(584), 2, + ACTIONS(586), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(236), 12, + ACTIONS(352), 12, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_STAR, @@ -13284,42 +13272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [13248] = 2, - ACTIONS(283), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(586), 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, - [13271] = 7, - ACTIONS(382), 1, + [13296] = 7, + ACTIONS(378), 1, anon_sym_DASH, ACTIONS(588), 1, anon_sym_DASH_GT, - STATE(83), 1, + STATE(109), 1, sym_math_operator, - STATE(87), 1, + STATE(110), 1, sym_logic_operator, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -13331,69 +13298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13304] = 3, - ACTIONS(420), 1, - anon_sym_DASH, - STATE(219), 1, - aux_sym_yield_repeat1, - ACTIONS(418), 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, - [13329] = 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, - [13351] = 2, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(435), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13373] = 11, + [13329] = 11, ACTIONS(592), 1, sym_integer, ACTIONS(596), 1, @@ -13403,12 +13308,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(600), 1, anon_sym_function, ACTIONS(602), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(604), 1, - anon_sym_map, - STATE(240), 1, + anon_sym_table, + STATE(232), 1, aux_sym_list_repeat1, - STATE(299), 1, + STATE(294), 1, sym_value, ACTIONS(590), 2, sym_float, @@ -13416,16 +13321,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(286), 5, + STATE(299), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [13413] = 2, - ACTIONS(488), 1, + [13369] = 2, + ACTIONS(435), 1, anon_sym_DASH, - ACTIONS(486), 16, + ACTIONS(433), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13442,484 +13347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13435] = 2, - ACTIONS(429), 1, - anon_sym_DASH, - ACTIONS(427), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13457] = 3, - ACTIONS(445), 1, - anon_sym_DASH, - ACTIONS(606), 1, - anon_sym_else, - ACTIONS(443), 15, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [13481] = 2, - ACTIONS(433), 1, - anon_sym_DASH, - ACTIONS(431), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13503] = 2, - ACTIONS(508), 1, - anon_sym_DASH, - ACTIONS(506), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13525] = 2, - ACTIONS(512), 1, - anon_sym_DASH, - ACTIONS(510), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13547] = 2, - ACTIONS(459), 1, - anon_sym_DASH, - ACTIONS(457), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13569] = 11, - ACTIONS(592), 1, - sym_integer, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_table, - ACTIONS(604), 1, - anon_sym_map, - ACTIONS(608), 1, - anon_sym_RBRACK, - STATE(240), 1, - aux_sym_list_repeat1, - STATE(299), 1, - sym_value, - ACTIONS(590), 2, - sym_float, - sym_string, - ACTIONS(594), 2, - anon_sym_true, - anon_sym_false, - STATE(286), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13609] = 2, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(518), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13631] = 11, - ACTIONS(592), 1, - sym_integer, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_table, - ACTIONS(604), 1, - anon_sym_map, - ACTIONS(610), 1, - anon_sym_RBRACK, - STATE(240), 1, - aux_sym_list_repeat1, - STATE(299), 1, - sym_value, - ACTIONS(590), 2, - sym_float, - sym_string, - ACTIONS(594), 2, - anon_sym_true, - anon_sym_false, - STATE(286), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13671] = 11, - ACTIONS(592), 1, - sym_integer, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_table, - ACTIONS(604), 1, - anon_sym_map, - ACTIONS(612), 1, - anon_sym_RBRACK, - STATE(240), 1, - aux_sym_list_repeat1, - STATE(299), 1, - sym_value, - ACTIONS(590), 2, - sym_float, - sym_string, - ACTIONS(594), 2, - anon_sym_true, - anon_sym_false, - STATE(286), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13711] = 11, - ACTIONS(617), 1, - sym_integer, - ACTIONS(623), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(628), 1, - anon_sym_function, - ACTIONS(631), 1, - anon_sym_table, - ACTIONS(634), 1, - anon_sym_map, - STATE(240), 1, - aux_sym_list_repeat1, - STATE(299), 1, - sym_value, - ACTIONS(614), 2, - sym_float, - sym_string, - ACTIONS(620), 2, - anon_sym_true, - anon_sym_false, - STATE(286), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13751] = 2, - ACTIONS(524), 1, - anon_sym_DASH, - ACTIONS(522), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13773] = 2, - ACTIONS(500), 1, - anon_sym_DASH, - ACTIONS(498), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13795] = 2, - ACTIONS(639), 3, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(637), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [13817] = 2, - ACTIONS(484), 1, - anon_sym_DASH, - ACTIONS(482), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13839] = 2, - ACTIONS(643), 3, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - ACTIONS(641), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [13861] = 2, - ACTIONS(467), 1, - anon_sym_DASH, - ACTIONS(465), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13883] = 2, - ACTIONS(496), 1, - anon_sym_DASH, - ACTIONS(494), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13905] = 2, - ACTIONS(480), 1, - anon_sym_DASH, - ACTIONS(478), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13927] = 2, - ACTIONS(492), 1, - anon_sym_DASH, - ACTIONS(490), 16, - 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, - [13949] = 2, - ACTIONS(471), 1, - anon_sym_DASH, - ACTIONS(469), 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, - [13971] = 2, - ACTIONS(516), 1, - anon_sym_DASH, - ACTIONS(514), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13993] = 2, + [13391] = 2, ACTIONS(504), 1, anon_sym_DASH, ACTIONS(502), 16, @@ -13939,32 +13367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14015] = 4, - ACTIONS(420), 1, + [13413] = 2, + ACTIONS(461), 1, anon_sym_DASH, - ACTIONS(559), 1, - anon_sym_DASH_GT, - STATE(219), 1, - aux_sym_yield_repeat1, - ACTIONS(418), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_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, - [14041] = 2, - ACTIONS(463), 1, - anon_sym_DASH, - ACTIONS(461), 16, + ACTIONS(459), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -13981,7 +13387,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14063] = 2, + [13435] = 2, + ACTIONS(490), 1, + anon_sym_DASH, + ACTIONS(488), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13457] = 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, + [13479] = 11, + ACTIONS(609), 1, + sym_integer, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(618), 1, + anon_sym_RBRACK, + ACTIONS(620), 1, + anon_sym_function, + ACTIONS(623), 1, + anon_sym_LBRACE, + ACTIONS(626), 1, + anon_sym_table, + STATE(232), 1, + aux_sym_list_repeat1, + STATE(294), 1, + sym_value, + ACTIONS(606), 2, + sym_float, + sym_string, + ACTIONS(612), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13519] = 2, + ACTIONS(524), 1, + anon_sym_DASH, + ACTIONS(522), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13541] = 2, + ACTIONS(520), 1, + anon_sym_DASH, + ACTIONS(518), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13563] = 2, + ACTIONS(451), 1, + anon_sym_DASH, + ACTIONS(449), 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, + [13585] = 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, + [13607] = 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, + [13629] = 3, + ACTIONS(465), 1, + anon_sym_DASH, + ACTIONS(629), 1, + anon_sym_else, + ACTIONS(463), 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, + [13653] = 2, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(469), 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, + [13675] = 2, ACTIONS(390), 1, anon_sym_DASH, ACTIONS(388), 16, @@ -14001,7 +13617,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14085] = 11, + [13697] = 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, + [13719] = 2, + ACTIONS(633), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(631), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13741] = 2, + ACTIONS(637), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(635), 13, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [13763] = 11, ACTIONS(592), 1, sym_integer, ACTIONS(596), 1, @@ -14009,14 +13685,241 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(600), 1, anon_sym_function, ACTIONS(602), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(604), 1, - anon_sym_map, + anon_sym_table, + ACTIONS(639), 1, + anon_sym_RBRACK, + STATE(232), 1, + aux_sym_list_repeat1, + STATE(294), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13803] = 2, + ACTIONS(516), 1, + anon_sym_DASH, + ACTIONS(514), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13825] = 2, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(455), 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, + [13847] = 2, + ACTIONS(512), 1, + anon_sym_DASH, + ACTIONS(510), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13869] = 11, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_table, + ACTIONS(641), 1, + anon_sym_RBRACK, + STATE(232), 1, + aux_sym_list_repeat1, + STATE(294), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13909] = 11, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_table, + ACTIONS(643), 1, + anon_sym_RBRACK, + STATE(232), 1, + aux_sym_list_repeat1, + STATE(294), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13949] = 2, + ACTIONS(478), 1, + anon_sym_DASH, + ACTIONS(476), 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, + [13971] = 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, + [13993] = 2, + ACTIONS(447), 1, + anon_sym_DASH, + ACTIONS(445), 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, + [14015] = 2, + ACTIONS(508), 1, + anon_sym_DASH, + ACTIONS(506), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [14037] = 11, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_table, ACTIONS(645), 1, anon_sym_RBRACK, - STATE(240), 1, + STATE(232), 1, aux_sym_list_repeat1, - STATE(299), 1, + STATE(294), 1, sym_value, ACTIONS(590), 2, sym_float, @@ -14024,68 +13927,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(286), 5, + STATE(299), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14125] = 10, - ACTIONS(592), 1, - sym_integer, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_table, - ACTIONS(604), 1, - anon_sym_map, - STATE(228), 1, - aux_sym_list_repeat1, - STATE(299), 1, - sym_value, - ACTIONS(590), 2, - sym_float, - sym_string, - ACTIONS(594), 2, - anon_sym_true, - anon_sym_false, - STATE(286), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14162] = 10, - ACTIONS(592), 1, - sym_integer, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_table, - ACTIONS(604), 1, - anon_sym_map, - STATE(239), 1, - aux_sym_list_repeat1, - STATE(299), 1, - sym_value, - ACTIONS(590), 2, - sym_float, - sym_string, - ACTIONS(594), 2, - anon_sym_true, - anon_sym_false, - STATE(286), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14199] = 5, - STATE(120), 1, + [14077] = 2, + ACTIONS(500), 1, + anon_sym_DASH, + ACTIONS(498), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [14099] = 4, + ACTIONS(423), 1, + anon_sym_DASH, + ACTIONS(559), 1, + anon_sym_DASH_GT, + STATE(220), 1, + aux_sym_yield_repeat1, + ACTIONS(421), 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, + [14125] = 5, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, @@ -14094,19 +13985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_then, anon_sym_EQ_GT, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14226] = 10, + [14152] = 10, ACTIONS(592), 1, sym_integer, ACTIONS(596), 1, @@ -14114,12 +14005,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(600), 1, anon_sym_function, ACTIONS(602), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(604), 1, - anon_sym_map, - STATE(256), 1, + anon_sym_table, + STATE(254), 1, aux_sym_list_repeat1, - STATE(299), 1, + STATE(294), 1, sym_value, ACTIONS(590), 2, sym_float, @@ -14127,35 +14018,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(286), 5, + STATE(299), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14263] = 5, - STATE(120), 1, + [14189] = 5, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(402), 4, + ACTIONS(384), 4, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_then, anon_sym_EQ_GT, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14290] = 10, + [14216] = 10, ACTIONS(592), 1, sym_integer, ACTIONS(596), 1, @@ -14163,12 +14054,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(600), 1, anon_sym_function, ACTIONS(602), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(604), 1, - anon_sym_map, - STATE(238), 1, + anon_sym_table, + STATE(249), 1, aux_sym_list_repeat1, - STATE(299), 1, + STATE(294), 1, sym_value, ACTIONS(590), 2, sym_float, @@ -14176,34 +14067,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(286), 5, + STATE(299), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14327] = 5, - STATE(120), 1, + [14253] = 10, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_table, + STATE(226), 1, + aux_sym_list_repeat1, + STATE(294), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14290] = 5, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(394), 4, + ACTIONS(372), 4, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_then, anon_sym_EQ_GT, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, + [14317] = 10, + ACTIONS(592), 1, + sym_integer, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_function, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_table, + STATE(248), 1, + aux_sym_list_repeat1, + STATE(294), 1, + sym_value, + ACTIONS(590), 2, + sym_float, + sym_string, + ACTIONS(594), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, [14354] = 10, ACTIONS(592), 1, sym_integer, @@ -14212,12 +14157,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(600), 1, anon_sym_function, ACTIONS(602), 1, - anon_sym_table, + anon_sym_LBRACE, ACTIONS(604), 1, - anon_sym_map, - STATE(236), 1, + anon_sym_table, + STATE(244), 1, aux_sym_list_repeat1, - STATE(299), 1, + STATE(294), 1, sym_value, ACTIONS(590), 2, sym_float, @@ -14225,121 +14170,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(594), 2, anon_sym_true, anon_sym_false, - STATE(286), 5, + STATE(299), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, [14391] = 5, - STATE(120), 1, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(376), 4, + ACTIONS(402), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14418] = 8, - ACTIONS(362), 1, - anon_sym_RBRACE, - ACTIONS(382), 1, - anon_sym_DASH, + [14418] = 2, ACTIONS(647), 1, - anon_sym_DASH_GT, - STATE(83), 1, - sym_math_operator, - STATE(87), 1, - sym_logic_operator, - STATE(335), 1, - aux_sym_yield_repeat1, - ACTIONS(380), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(384), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14450] = 9, - ACTIONS(651), 1, - sym_integer, - ACTIONS(655), 1, - anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_function, - ACTIONS(659), 1, - anon_sym_table, - ACTIONS(661), 1, - anon_sym_map, - STATE(357), 1, - sym_value, - ACTIONS(649), 2, - sym_float, - sym_string, - ACTIONS(653), 2, - anon_sym_true, - anon_sym_false, - STATE(361), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14484] = 2, - ACTIONS(663), 1, - anon_sym_else, - ACTIONS(443), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [14504] = 2, - ACTIONS(665), 1, - anon_sym_where, - ACTIONS(406), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [14524] = 2, - ACTIONS(667), 1, anon_sym_where, ACTIONS(412), 14, anon_sym_RPAREN, @@ -14356,44 +14216,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, + [14438] = 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, + [14458] = 9, + ACTIONS(653), 1, + sym_integer, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(659), 1, + anon_sym_function, + ACTIONS(661), 1, + anon_sym_LBRACE, + ACTIONS(663), 1, + anon_sym_table, + STATE(354), 1, + sym_value, + ACTIONS(651), 2, + sym_float, + sym_string, + ACTIONS(655), 2, + anon_sym_true, + anon_sym_false, + STATE(373), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14492] = 2, + ACTIONS(665), 1, + anon_sym_else, + ACTIONS(463), 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, + [14512] = 8, + ACTIONS(368), 1, + anon_sym_RBRACE, + ACTIONS(378), 1, + anon_sym_DASH, + ACTIONS(667), 1, + anon_sym_DASH_GT, + STATE(109), 1, + sym_math_operator, + STATE(110), 1, + sym_logic_operator, + STATE(327), 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, [14544] = 7, - ACTIONS(382), 1, + ACTIONS(378), 1, anon_sym_DASH, ACTIONS(388), 1, anon_sym_RBRACE, ACTIONS(669), 1, anon_sym_DASH_GT, - STATE(83), 1, + STATE(109), 1, sym_math_operator, - STATE(87), 1, + STATE(110), 1, sym_logic_operator, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, [14573] = 6, - ACTIONS(382), 1, + ACTIONS(378), 1, anon_sym_DASH, - STATE(83), 1, + STATE(109), 1, sym_math_operator, - STATE(87), 1, + STATE(110), 1, sym_logic_operator, - ACTIONS(372), 2, + ACTIONS(394), 2, anon_sym_DASH_GT, anon_sym_RBRACE, - ACTIONS(380), 4, + ACTIONS(376), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14401,18 +14346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14600] = 5, ACTIONS(671), 1, - anon_sym_LBRACE, - STATE(120), 1, + anon_sym_EQ_GT, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14421,17 +14366,17 @@ static const uint16_t ts_small_parse_table[] = { [14624] = 5, ACTIONS(673), 1, anon_sym_then, - STATE(120), 1, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14440,17 +14385,17 @@ static const uint16_t ts_small_parse_table[] = { [14648] = 5, ACTIONS(675), 1, anon_sym_then, - STATE(120), 1, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14458,18 +14403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14672] = 5, ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(120), 1, + anon_sym_then, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14477,18 +14422,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14696] = 5, ACTIONS(679), 1, - anon_sym_LBRACE, - STATE(120), 1, + anon_sym_then, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14497,17 +14442,17 @@ static const uint16_t ts_small_parse_table[] = { [14720] = 5, ACTIONS(681), 1, anon_sym_LBRACE, - STATE(120), 1, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14515,18 +14460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14744] = 5, ACTIONS(683), 1, - anon_sym_LBRACE, - STATE(120), 1, + anon_sym_then, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14534,18 +14479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14768] = 5, ACTIONS(685), 1, - anon_sym_then, - STATE(120), 1, + anon_sym_LBRACE, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14553,18 +14498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14792] = 5, ACTIONS(687), 1, - anon_sym_EQ_GT, - STATE(120), 1, + anon_sym_LBRACE, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14572,18 +14517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14816] = 5, ACTIONS(689), 1, - anon_sym_then, - STATE(120), 1, + anon_sym_LBRACE, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14591,18 +14536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, [14840] = 5, ACTIONS(691), 1, - anon_sym_then, - STATE(120), 1, + anon_sym_LBRACE, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -14611,57 +14556,43 @@ static const uint16_t ts_small_parse_table[] = { [14864] = 5, ACTIONS(693), 1, anon_sym_LBRACE, - STATE(120), 1, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, [14888] = 4, - STATE(120), 1, + STATE(126), 1, sym_logic_operator, STATE(127), 1, sym_math_operator, - ACTIONS(380), 5, + ACTIONS(376), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 5, + ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, [14909] = 2, - ACTIONS(484), 1, - sym_integer, - ACTIONS(482), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [14925] = 2, ACTIONS(695), 1, anon_sym_RPAREN, - ACTIONS(514), 10, + ACTIONS(484), 10, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -14672,10 +14603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, + [14925] = 2, + ACTIONS(451), 1, + sym_integer, + ACTIONS(449), 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_LBRACE, + anon_sym_table, [14941] = 2, - ACTIONS(459), 1, + ACTIONS(457), 1, sym_integer, - ACTIONS(457), 10, + ACTIONS(455), 10, sym_float, sym_string, anon_sym_true, @@ -14684,12 +14629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, anon_sym_function, + anon_sym_LBRACE, anon_sym_table, - anon_sym_map, [14957] = 2, - ACTIONS(429), 1, + ACTIONS(447), 1, sym_integer, - ACTIONS(427), 10, + ACTIONS(445), 10, sym_float, sym_string, anon_sym_true, @@ -14698,121 +14643,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, anon_sym_function, + anon_sym_LBRACE, anon_sym_table, - anon_sym_map, [14973] = 2, - ACTIONS(480), 1, - sym_integer, - ACTIONS(478), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [14989] = 2, - ACTIONS(455), 1, - sym_integer, - ACTIONS(453), 10, - 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, - [15005] = 2, - ACTIONS(697), 1, - anon_sym_RPAREN, - ACTIONS(514), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [15021] = 2, - ACTIONS(463), 1, - sym_integer, - ACTIONS(461), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [15037] = 2, - ACTIONS(467), 1, - sym_integer, - ACTIONS(465), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [15053] = 2, - ACTIONS(699), 1, - anon_sym_RPAREN, - ACTIONS(514), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [15069] = 2, - ACTIONS(437), 1, - sym_integer, - ACTIONS(435), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [15085] = 2, - ACTIONS(433), 1, - sym_integer, - ACTIONS(431), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [15101] = 2, ACTIONS(471), 1, sym_integer, ACTIONS(469), 10, @@ -14824,14 +14657,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, anon_sym_function, + anon_sym_LBRACE, anon_sym_table, - anon_sym_map, - [15117] = 3, - ACTIONS(703), 1, + [14989] = 2, + ACTIONS(431), 1, sym_integer, - ACTIONS(705), 1, + ACTIONS(429), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, anon_sym_COMMA, - ACTIONS(701), 9, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [15005] = 2, + ACTIONS(443), 1, + sym_integer, + ACTIONS(441), 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_LBRACE, + anon_sym_table, + [15021] = 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_LBRACE, + anon_sym_table, + [15037] = 3, + ACTIONS(699), 1, + sym_integer, + ACTIONS(701), 1, + anon_sym_COMMA, + ACTIONS(697), 9, sym_float, sym_string, anon_sym_true, @@ -14839,12 +14714,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [15055] = 2, + ACTIONS(524), 1, + sym_integer, + ACTIONS(522), 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_LBRACE, + anon_sym_table, + [15071] = 2, + ACTIONS(703), 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, + [15087] = 2, + ACTIONS(461), 1, + sym_integer, + ACTIONS(459), 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_LBRACE, + anon_sym_table, + [15103] = 2, + ACTIONS(705), 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, + [15119] = 2, + ACTIONS(520), 1, + sym_integer, + ACTIONS(518), 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_LBRACE, anon_sym_table, - anon_sym_map, [15135] = 2, ACTIONS(707), 1, sym_integer, - ACTIONS(626), 9, + ACTIONS(618), 9, sym_float, sym_string, anon_sym_true, @@ -14852,8 +14797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_function, + anon_sym_LBRACE, anon_sym_table, - anon_sym_map, [15150] = 3, ACTIONS(709), 1, anon_sym_LBRACK, @@ -14867,8 +14812,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(714), 1, - anon_sym_RBRACE, - STATE(314), 2, + anon_sym_into, + STATE(301), 2, sym_list, aux_sym_table_repeat1, [15173] = 3, @@ -14876,15 +14821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(716), 1, anon_sym_RBRACE, - STATE(309), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, [15184] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(718), 1, - anon_sym_into, - STATE(301), 2, + anon_sym_RBRACE, + STATE(306), 2, sym_list, aux_sym_table_repeat1, [15195] = 3, @@ -14892,7 +14837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(720), 1, anon_sym_RBRACE, - STATE(311), 2, + STATE(307), 2, sym_list, aux_sym_table_repeat1, [15206] = 3, @@ -14900,14 +14845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(722), 1, anon_sym_RBRACE, - STATE(313), 2, + STATE(301), 2, sym_list, aux_sym_table_repeat1, [15217] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(724), 1, - anon_sym_into, + anon_sym_RBRACE, STATE(301), 2, sym_list, aux_sym_table_repeat1, @@ -14915,7 +14860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(726), 1, - anon_sym_RBRACE, + anon_sym_into, STATE(301), 2, sym_list, aux_sym_table_repeat1, @@ -14924,14 +14869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(728), 1, anon_sym_RBRACE, - STATE(301), 2, + STATE(311), 2, sym_list, aux_sym_table_repeat1, [15250] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(730), 1, - anon_sym_into, + anon_sym_RBRACE, STATE(301), 2, sym_list, aux_sym_table_repeat1, @@ -14948,14 +14893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(734), 1, anon_sym_RBRACE, - STATE(308), 2, + STATE(303), 2, sym_list, aux_sym_table_repeat1, [15283] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(736), 1, - anon_sym_RBRACE, + anon_sym_into, STATE(301), 2, sym_list, aux_sym_table_repeat1, @@ -14964,7 +14909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(738), 1, anon_sym_RBRACE, - STATE(301), 2, + STATE(310), 2, sym_list, aux_sym_table_repeat1, [15305] = 3, @@ -14986,397 +14931,397 @@ static const uint16_t ts_small_parse_table[] = { [15327] = 3, ACTIONS(744), 1, sym_identifier, - ACTIONS(747), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_map_repeat1, + ACTIONS(746), 1, + anon_sym_GT, + STATE(324), 1, + aux_sym_function_repeat1, [15337] = 3, - ACTIONS(749), 1, + ACTIONS(744), 1, sym_identifier, - ACTIONS(751), 1, - anon_sym_RBRACE, - STATE(338), 1, - aux_sym_map_repeat1, + ACTIONS(748), 1, + anon_sym_GT, + STATE(343), 1, + aux_sym_function_repeat1, [15347] = 3, + ACTIONS(394), 1, + anon_sym_RBRACE, + ACTIONS(750), 1, + anon_sym_DASH_GT, + STATE(319), 1, + aux_sym_yield_repeat1, + [15357] = 3, ACTIONS(753), 1, sym_identifier, ACTIONS(755), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15357] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(310), 2, - sym_list, - aux_sym_table_repeat1, - [15365] = 2, - ACTIONS(759), 1, - anon_sym_COMMA, - ACTIONS(757), 2, - sym_identifier, - anon_sym_GT, - [15373] = 3, - ACTIONS(761), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15383] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(315), 2, - sym_list, - aux_sym_table_repeat1, - [15391] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_map_repeat1, - [15401] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(768), 1, - anon_sym_RBRACE, - STATE(327), 1, - aux_sym_map_repeat1, - [15411] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_RBRACE, - STATE(324), 1, - aux_sym_map_repeat1, - [15421] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(772), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_map_repeat1, - [15431] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(774), 1, - anon_sym_RBRACE, - STATE(337), 1, - aux_sym_map_repeat1, - [15441] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15451] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(778), 1, - anon_sym_GT, - STATE(329), 1, - aux_sym_function_repeat1, - [15461] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(780), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15471] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(782), 1, - anon_sym_GT, - STATE(331), 1, - aux_sym_function_repeat1, - [15481] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(784), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15491] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(786), 1, - anon_sym_GT, - STATE(333), 1, - aux_sym_function_repeat1, - [15501] = 3, - ACTIONS(418), 1, - anon_sym_RBRACE, - ACTIONS(647), 1, - anon_sym_DASH_GT, - STATE(336), 1, - aux_sym_yield_repeat1, - [15511] = 3, - ACTIONS(372), 1, - anon_sym_RBRACE, - ACTIONS(788), 1, - anon_sym_DASH_GT, - STATE(336), 1, - aux_sym_yield_repeat1, - [15521] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(791), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_map_repeat1, - [15531] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(793), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_map_repeat1, - [15541] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(795), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_map_repeat1, - [15551] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(304), 2, - sym_list, - aux_sym_table_repeat1, - [15559] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(797), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15569] = 3, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(799), 1, anon_sym_RBRACE, STATE(339), 1, aux_sym_map_repeat1, - [15579] = 3, + [15367] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(757), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15377] = 3, ACTIONS(753), 1, sym_identifier, - ACTIONS(801), 1, + ACTIONS(759), 1, + anon_sym_RBRACE, + STATE(320), 1, + aux_sym_map_repeat1, + [15387] = 2, + ACTIONS(763), 1, + anon_sym_COMMA, + ACTIONS(761), 2, + sym_identifier, anon_sym_GT, - STATE(341), 1, + [15395] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(765), 1, + anon_sym_GT, + STATE(345), 1, aux_sym_function_repeat1, - [15589] = 3, + [15405] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(767), 1, + anon_sym_GT, + STATE(321), 1, + aux_sym_function_repeat1, + [15415] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(769), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15425] = 3, + ACTIONS(421), 1, + anon_sym_RBRACE, + ACTIONS(667), 1, + anon_sym_DASH_GT, + STATE(319), 1, + aux_sym_yield_repeat1, + [15435] = 3, ACTIONS(753), 1, sym_identifier, - ACTIONS(803), 1, + ACTIONS(771), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_map_repeat1, + [15445] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(773), 1, + anon_sym_RBRACE, + STATE(331), 1, + aux_sym_map_repeat1, + [15455] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_map_repeat1, + [15465] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(777), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_map_repeat1, + [15475] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(779), 1, anon_sym_GT, - STATE(322), 1, + STATE(326), 1, aux_sym_function_repeat1, - [15599] = 2, + [15485] = 2, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(307), 2, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15607] = 3, - ACTIONS(753), 1, + [15493] = 3, + ACTIONS(744), 1, sym_identifier, - ACTIONS(805), 1, + ACTIONS(781), 1, anon_sym_GT, - STATE(322), 1, + STATE(345), 1, aux_sym_function_repeat1, - [15617] = 3, - ACTIONS(753), 1, + [15503] = 3, + ACTIONS(744), 1, sym_identifier, - ACTIONS(807), 1, + ACTIONS(783), 1, anon_sym_GT, - STATE(322), 1, + STATE(345), 1, aux_sym_function_repeat1, - [15627] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(809), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15637] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(811), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15647] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(813), 1, - anon_sym_GT, - STATE(322), 1, - aux_sym_function_repeat1, - [15657] = 2, + [15513] = 2, ACTIONS(15), 1, anon_sym_LBRACK, STATE(316), 2, sym_list, aux_sym_table_repeat1, - [15665] = 2, + [15521] = 3, ACTIONS(753), 1, sym_identifier, - STATE(346), 1, - aux_sym_function_repeat1, - [15672] = 1, - ACTIONS(457), 2, - sym_identifier, + ACTIONS(785), 1, anon_sym_RBRACE, - [15677] = 1, - ACTIONS(764), 2, + STATE(330), 1, + aux_sym_map_repeat1, + [15531] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(308), 2, + sym_list, + aux_sym_table_repeat1, + [15539] = 3, + ACTIONS(787), 1, sym_identifier, + ACTIONS(790), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_map_repeat1, + [15549] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(792), 1, anon_sym_GT, - [15682] = 2, + STATE(334), 1, + aux_sym_function_repeat1, + [15559] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(794), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15569] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(796), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15579] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15589] = 3, ACTIONS(753), 1, sym_identifier, + ACTIONS(800), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_map_repeat1, + [15599] = 3, + ACTIONS(802), 1, + sym_identifier, + ACTIONS(805), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15609] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(315), 2, + sym_list, + aux_sym_table_repeat1, + [15617] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15627] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(809), 1, + anon_sym_RBRACE, + STATE(344), 1, + aux_sym_map_repeat1, + [15637] = 3, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(811), 1, + anon_sym_GT, + STATE(345), 1, + aux_sym_function_repeat1, + [15647] = 3, + ACTIONS(753), 1, + sym_identifier, + ACTIONS(813), 1, + anon_sym_RBRACE, + STATE(328), 1, + aux_sym_map_repeat1, + [15657] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(313), 2, + sym_list, + aux_sym_table_repeat1, + [15665] = 2, + ACTIONS(744), 1, + sym_identifier, STATE(349), 1, aux_sym_function_repeat1, - [15689] = 2, - ACTIONS(753), 1, - sym_identifier, - STATE(344), 1, - aux_sym_function_repeat1, - [15696] = 1, - ACTIONS(815), 2, + [15672] = 2, + ACTIONS(815), 1, + anon_sym_LT, + ACTIONS(817), 1, + anon_sym_LBRACE, + [15679] = 1, + ACTIONS(819), 2, sym_identifier, anon_sym_RBRACE, - [15701] = 2, - ACTIONS(753), 1, + [15684] = 1, + ACTIONS(437), 2, sym_identifier, - STATE(347), 1, - aux_sym_function_repeat1, - [15708] = 2, - ACTIONS(817), 1, - anon_sym_LT, - ACTIONS(819), 1, - anon_sym_LBRACE, - [15715] = 2, + anon_sym_RBRACE, + [15689] = 1, + ACTIONS(445), 2, + sym_identifier, + anon_sym_RBRACE, + [15694] = 2, ACTIONS(821), 1, anon_sym_LT, ACTIONS(823), 1, anon_sym_LBRACE, - [15722] = 1, - ACTIONS(482), 2, + [15701] = 1, + ACTIONS(449), 2, sym_identifier, anon_sym_RBRACE, - [15727] = 1, - ACTIONS(478), 2, - sym_identifier, - anon_sym_RBRACE, - [15732] = 1, - ACTIONS(461), 2, - sym_identifier, - anon_sym_RBRACE, - [15737] = 1, - ACTIONS(469), 2, - sym_identifier, - anon_sym_RBRACE, - [15742] = 2, - ACTIONS(753), 1, - sym_identifier, - STATE(350), 1, - aux_sym_function_repeat1, - [15749] = 2, + [15706] = 2, ACTIONS(825), 1, anon_sym_LT, ACTIONS(827), 1, anon_sym_LBRACE, - [15756] = 1, - ACTIONS(431), 2, + [15713] = 1, + ACTIONS(455), 2, sym_identifier, anon_sym_RBRACE, - [15761] = 1, - ACTIONS(465), 2, + [15718] = 1, + ACTIONS(805), 2, sym_identifier, - anon_sym_RBRACE, - [15766] = 2, + anon_sym_GT, + [15723] = 2, ACTIONS(829), 1, anon_sym_LT, ACTIONS(831), 1, anon_sym_LBRACE, - [15773] = 1, - ACTIONS(435), 2, + [15730] = 1, + ACTIONS(441), 2, sym_identifier, anon_sym_RBRACE, - [15778] = 2, + [15735] = 1, + ACTIONS(469), 2, + sym_identifier, + anon_sym_RBRACE, + [15740] = 2, + ACTIONS(744), 1, + sym_identifier, + STATE(347), 1, + aux_sym_function_repeat1, + [15747] = 2, ACTIONS(833), 1, anon_sym_LT, ACTIONS(835), 1, anon_sym_LBRACE, + [15754] = 2, + ACTIONS(744), 1, + sym_identifier, + STATE(335), 1, + aux_sym_function_repeat1, + [15761] = 2, + ACTIONS(744), 1, + sym_identifier, + STATE(342), 1, + aux_sym_function_repeat1, + [15768] = 1, + ACTIONS(429), 2, + sym_identifier, + anon_sym_RBRACE, + [15773] = 2, + ACTIONS(744), 1, + sym_identifier, + STATE(341), 1, + aux_sym_function_repeat1, + [15780] = 1, + ACTIONS(459), 2, + sym_identifier, + anon_sym_RBRACE, [15785] = 1, - ACTIONS(453), 2, + ACTIONS(522), 2, sym_identifier, anon_sym_RBRACE, [15790] = 1, - ACTIONS(427), 2, + ACTIONS(518), 2, sym_identifier, anon_sym_RBRACE, [15795] = 1, ACTIONS(837), 1, - anon_sym_LBRACE, + sym_identifier, [15799] = 1, ACTIONS(839), 1, - sym_identifier, + ts_builtin_sym_end, [15803] = 1, ACTIONS(841), 1, anon_sym_LBRACE, [15807] = 1, ACTIONS(843), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, [15811] = 1, ACTIONS(845), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, [15815] = 1, ACTIONS(847), 1, - anon_sym_LBRACE, + sym_identifier, [15819] = 1, ACTIONS(849), 1, anon_sym_LBRACE, [15823] = 1, ACTIONS(851), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, [15827] = 1, ACTIONS(853), 1, - anon_sym_LBRACE, + sym_identifier, [15831] = 1, ACTIONS(855), 1, - sym_identifier, + anon_sym_LBRACE, [15835] = 1, ACTIONS(857), 1, - ts_builtin_sym_end, + anon_sym_LBRACE, [15839] = 1, ACTIONS(859), 1, - anon_sym_LBRACE, + sym_identifier, [15843] = 1, ACTIONS(861), 1, - anon_sym_LBRACE, + anon_sym_LT, [15847] = 1, ACTIONS(863), 1, anon_sym_LBRACE, [15851] = 1, ACTIONS(865), 1, - anon_sym_from, + anon_sym_LBRACE, [15855] = 1, ACTIONS(867), 1, anon_sym_LBRACE, [15859] = 1, ACTIONS(869), 1, - sym_identifier, + anon_sym_LBRACE, [15863] = 1, ACTIONS(871), 1, - sym_identifier, + anon_sym_LBRACE, [15867] = 1, ACTIONS(873), 1, - anon_sym_from, + anon_sym_LBRACE, [15871] = 1, ACTIONS(875), 1, sym_identifier, @@ -15385,13 +15330,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, [15879] = 1, ACTIONS(879), 1, - anon_sym_LT, + sym_identifier, [15883] = 1, ACTIONS(881), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, [15887] = 1, ACTIONS(883), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, [15891] = 1, ACTIONS(885), 1, anon_sym_LBRACE, @@ -15400,28 +15345,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, [15899] = 1, ACTIONS(889), 1, - aux_sym_comment_token1, + anon_sym_LBRACE, [15903] = 1, ACTIONS(891), 1, - sym_identifier, + anon_sym_LBRACE, [15907] = 1, ACTIONS(893), 1, - sym_identifier, + anon_sym_EQ, [15911] = 1, ACTIONS(895), 1, - anon_sym_EQ, + anon_sym_LBRACE, [15915] = 1, ACTIONS(897), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, [15919] = 1, ACTIONS(899), 1, - anon_sym_RBRACE, + anon_sym_LT, [15923] = 1, ACTIONS(901), 1, - anon_sym_LBRACE, + aux_sym_comment_token1, [15927] = 1, ACTIONS(903), 1, - anon_sym_RBRACE, + anon_sym_from, [15931] = 1, ACTIONS(905), 1, anon_sym_LBRACE, @@ -15430,67 +15375,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, [15939] = 1, ACTIONS(909), 1, - anon_sym_LT, + anon_sym_LBRACE, [15943] = 1, ACTIONS(911), 1, - anon_sym_from, + sym_identifier, [15947] = 1, ACTIONS(913), 1, - anon_sym_RBRACE, + sym_identifier, [15951] = 1, ACTIONS(915), 1, - anon_sym_RBRACE, + anon_sym_from, [15955] = 1, ACTIONS(917), 1, - anon_sym_LBRACE, + sym_identifier, [15959] = 1, ACTIONS(919), 1, - anon_sym_LBRACE, + sym_identifier, [15963] = 1, ACTIONS(921), 1, sym_identifier, [15967] = 1, ACTIONS(923), 1, - sym_identifier, + anon_sym_LT, [15971] = 1, ACTIONS(925), 1, - anon_sym_from, + anon_sym_LT, [15975] = 1, ACTIONS(927), 1, - anon_sym_LBRACE, + anon_sym_LT, [15979] = 1, ACTIONS(929), 1, sym_identifier, [15983] = 1, ACTIONS(931), 1, - anon_sym_LBRACE, + sym_identifier, [15987] = 1, ACTIONS(933), 1, - anon_sym_LT, + anon_sym_from, [15991] = 1, ACTIONS(935), 1, - anon_sym_LT, + anon_sym_from, [15995] = 1, ACTIONS(937), 1, - anon_sym_LT, + sym_identifier, [15999] = 1, ACTIONS(939), 1, - sym_identifier, - [16003] = 1, - ACTIONS(941), 1, - sym_identifier, - [16007] = 1, - ACTIONS(943), 1, anon_sym_from, - [16011] = 1, - ACTIONS(945), 1, - anon_sym_LBRACE, - [16015] = 1, - ACTIONS(947), 1, - sym_identifier, - [16019] = 1, - ACTIONS(949), 1, - sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { @@ -15535,120 +15465,120 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(42)] = 3157, [SMALL_STATE(43)] = 3238, [SMALL_STATE(44)] = 3319, - [SMALL_STATE(45)] = 3368, - [SMALL_STATE(46)] = 3449, - [SMALL_STATE(47)] = 3530, - [SMALL_STATE(48)] = 3611, - [SMALL_STATE(49)] = 3692, - [SMALL_STATE(50)] = 3773, - [SMALL_STATE(51)] = 3854, - [SMALL_STATE(52)] = 3935, - [SMALL_STATE(53)] = 4016, - [SMALL_STATE(54)] = 4097, - [SMALL_STATE(55)] = 4178, - [SMALL_STATE(56)] = 4259, - [SMALL_STATE(57)] = 4340, - [SMALL_STATE(58)] = 4421, - [SMALL_STATE(59)] = 4502, - [SMALL_STATE(60)] = 4583, - [SMALL_STATE(61)] = 4664, - [SMALL_STATE(62)] = 4745, - [SMALL_STATE(63)] = 4826, - [SMALL_STATE(64)] = 4907, - [SMALL_STATE(65)] = 4988, - [SMALL_STATE(66)] = 5069, - [SMALL_STATE(67)] = 5150, + [SMALL_STATE(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)] = 5231, [SMALL_STATE(69)] = 5312, [SMALL_STATE(70)] = 5390, - [SMALL_STATE(71)] = 5438, + [SMALL_STATE(71)] = 5468, [SMALL_STATE(72)] = 5516, - [SMALL_STATE(73)] = 5564, + [SMALL_STATE(73)] = 5594, [SMALL_STATE(74)] = 5642, [SMALL_STATE(75)] = 5717, [SMALL_STATE(76)] = 5792, - [SMALL_STATE(77)] = 5867, - [SMALL_STATE(78)] = 5942, - [SMALL_STATE(79)] = 6017, - [SMALL_STATE(80)] = 6092, - [SMALL_STATE(81)] = 6167, - [SMALL_STATE(82)] = 6242, - [SMALL_STATE(83)] = 6317, - [SMALL_STATE(84)] = 6392, - [SMALL_STATE(85)] = 6467, - [SMALL_STATE(86)] = 6542, - [SMALL_STATE(87)] = 6617, - [SMALL_STATE(88)] = 6692, - [SMALL_STATE(89)] = 6767, - [SMALL_STATE(90)] = 6842, - [SMALL_STATE(91)] = 6917, - [SMALL_STATE(92)] = 6992, - [SMALL_STATE(93)] = 7067, - [SMALL_STATE(94)] = 7142, - [SMALL_STATE(95)] = 7217, - [SMALL_STATE(96)] = 7292, - [SMALL_STATE(97)] = 7367, - [SMALL_STATE(98)] = 7442, - [SMALL_STATE(99)] = 7517, - [SMALL_STATE(100)] = 7592, - [SMALL_STATE(101)] = 7667, - [SMALL_STATE(102)] = 7742, - [SMALL_STATE(103)] = 7817, - [SMALL_STATE(104)] = 7892, - [SMALL_STATE(105)] = 7937, - [SMALL_STATE(106)] = 7984, - [SMALL_STATE(107)] = 8059, - [SMALL_STATE(108)] = 8134, - [SMALL_STATE(109)] = 8209, - [SMALL_STATE(110)] = 8284, - [SMALL_STATE(111)] = 8359, - [SMALL_STATE(112)] = 8412, - [SMALL_STATE(113)] = 8467, - [SMALL_STATE(114)] = 8542, - [SMALL_STATE(115)] = 8595, - [SMALL_STATE(116)] = 8670, - [SMALL_STATE(117)] = 8745, - [SMALL_STATE(118)] = 8820, - [SMALL_STATE(119)] = 8895, - [SMALL_STATE(120)] = 8970, - [SMALL_STATE(121)] = 9045, - [SMALL_STATE(122)] = 9098, - [SMALL_STATE(123)] = 9151, - [SMALL_STATE(124)] = 9226, - [SMALL_STATE(125)] = 9301, + [SMALL_STATE(77)] = 5845, + [SMALL_STATE(78)] = 5898, + [SMALL_STATE(79)] = 5973, + [SMALL_STATE(80)] = 6048, + [SMALL_STATE(81)] = 6123, + [SMALL_STATE(82)] = 6198, + [SMALL_STATE(83)] = 6273, + [SMALL_STATE(84)] = 6348, + [SMALL_STATE(85)] = 6423, + [SMALL_STATE(86)] = 6498, + [SMALL_STATE(87)] = 6573, + [SMALL_STATE(88)] = 6648, + [SMALL_STATE(89)] = 6723, + [SMALL_STATE(90)] = 6798, + [SMALL_STATE(91)] = 6873, + [SMALL_STATE(92)] = 6948, + [SMALL_STATE(93)] = 7023, + [SMALL_STATE(94)] = 7098, + [SMALL_STATE(95)] = 7173, + [SMALL_STATE(96)] = 7248, + [SMALL_STATE(97)] = 7303, + [SMALL_STATE(98)] = 7378, + [SMALL_STATE(99)] = 7453, + [SMALL_STATE(100)] = 7528, + [SMALL_STATE(101)] = 7603, + [SMALL_STATE(102)] = 7678, + [SMALL_STATE(103)] = 7753, + [SMALL_STATE(104)] = 7828, + [SMALL_STATE(105)] = 7873, + [SMALL_STATE(106)] = 7948, + [SMALL_STATE(107)] = 8023, + [SMALL_STATE(108)] = 8098, + [SMALL_STATE(109)] = 8173, + [SMALL_STATE(110)] = 8248, + [SMALL_STATE(111)] = 8323, + [SMALL_STATE(112)] = 8398, + [SMALL_STATE(113)] = 8473, + [SMALL_STATE(114)] = 8548, + [SMALL_STATE(115)] = 8623, + [SMALL_STATE(116)] = 8698, + [SMALL_STATE(117)] = 8773, + [SMALL_STATE(118)] = 8848, + [SMALL_STATE(119)] = 8923, + [SMALL_STATE(120)] = 8998, + [SMALL_STATE(121)] = 9073, + [SMALL_STATE(122)] = 9126, + [SMALL_STATE(123)] = 9201, + [SMALL_STATE(124)] = 9254, + [SMALL_STATE(125)] = 9329, [SMALL_STATE(126)] = 9376, [SMALL_STATE(127)] = 9451, [SMALL_STATE(128)] = 9526, - [SMALL_STATE(129)] = 9568, - [SMALL_STATE(130)] = 9610, + [SMALL_STATE(129)] = 9578, + [SMALL_STATE(130)] = 9620, [SMALL_STATE(131)] = 9662, [SMALL_STATE(132)] = 9714, - [SMALL_STATE(133)] = 9756, + [SMALL_STATE(133)] = 9758, [SMALL_STATE(134)] = 9800, - [SMALL_STATE(135)] = 9854, - [SMALL_STATE(136)] = 9898, + [SMALL_STATE(135)] = 9852, + [SMALL_STATE(136)] = 9906, [SMALL_STATE(137)] = 9950, [SMALL_STATE(138)] = 10002, - [SMALL_STATE(139)] = 10041, - [SMALL_STATE(140)] = 10080, - [SMALL_STATE(141)] = 10119, - [SMALL_STATE(142)] = 10160, - [SMALL_STATE(143)] = 10201, - [SMALL_STATE(144)] = 10242, - [SMALL_STATE(145)] = 10283, - [SMALL_STATE(146)] = 10330, - [SMALL_STATE(147)] = 10369, - [SMALL_STATE(148)] = 10408, - [SMALL_STATE(149)] = 10447, - [SMALL_STATE(150)] = 10488, - [SMALL_STATE(151)] = 10527, - [SMALL_STATE(152)] = 10566, - [SMALL_STATE(153)] = 10609, - [SMALL_STATE(154)] = 10664, - [SMALL_STATE(155)] = 10703, - [SMALL_STATE(156)] = 10742, - [SMALL_STATE(157)] = 10781, - [SMALL_STATE(158)] = 10820, + [SMALL_STATE(139)] = 10057, + [SMALL_STATE(140)] = 10096, + [SMALL_STATE(141)] = 10135, + [SMALL_STATE(142)] = 10174, + [SMALL_STATE(143)] = 10213, + [SMALL_STATE(144)] = 10252, + [SMALL_STATE(145)] = 10293, + [SMALL_STATE(146)] = 10332, + [SMALL_STATE(147)] = 10379, + [SMALL_STATE(148)] = 10418, + [SMALL_STATE(149)] = 10457, + [SMALL_STATE(150)] = 10498, + [SMALL_STATE(151)] = 10537, + [SMALL_STATE(152)] = 10580, + [SMALL_STATE(153)] = 10619, + [SMALL_STATE(154)] = 10658, + [SMALL_STATE(155)] = 10697, + [SMALL_STATE(156)] = 10736, + [SMALL_STATE(157)] = 10777, + [SMALL_STATE(158)] = 10818, [SMALL_STATE(159)] = 10859, [SMALL_STATE(160)] = 10898, [SMALL_STATE(161)] = 10937, @@ -15659,12 +15589,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(166)] = 11132, [SMALL_STATE(167)] = 11171, [SMALL_STATE(168)] = 11210, - [SMALL_STATE(169)] = 11260, - [SMALL_STATE(170)] = 11298, - [SMALL_STATE(171)] = 11336, - [SMALL_STATE(172)] = 11374, - [SMALL_STATE(173)] = 11412, - [SMALL_STATE(174)] = 11464, + [SMALL_STATE(169)] = 11248, + [SMALL_STATE(170)] = 11286, + [SMALL_STATE(171)] = 11324, + [SMALL_STATE(172)] = 11376, + [SMALL_STATE(173)] = 11414, + [SMALL_STATE(174)] = 11452, [SMALL_STATE(175)] = 11502, [SMALL_STATE(176)] = 11540, [SMALL_STATE(177)] = 11578, @@ -15674,22 +15604,22 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(181)] = 11730, [SMALL_STATE(182)] = 11768, [SMALL_STATE(183)] = 11806, - [SMALL_STATE(184)] = 11844, - [SMALL_STATE(185)] = 11896, + [SMALL_STATE(184)] = 11850, + [SMALL_STATE(185)] = 11888, [SMALL_STATE(186)] = 11934, [SMALL_STATE(187)] = 11972, [SMALL_STATE(188)] = 12010, [SMALL_STATE(189)] = 12048, - [SMALL_STATE(190)] = 12086, - [SMALL_STATE(191)] = 12124, - [SMALL_STATE(192)] = 12168, + [SMALL_STATE(190)] = 12100, + [SMALL_STATE(191)] = 12138, + [SMALL_STATE(192)] = 12176, [SMALL_STATE(193)] = 12214, [SMALL_STATE(194)] = 12255, [SMALL_STATE(195)] = 12306, - [SMALL_STATE(196)] = 12356, - [SMALL_STATE(197)] = 12404, - [SMALL_STATE(198)] = 12444, - [SMALL_STATE(199)] = 12492, + [SMALL_STATE(196)] = 12354, + [SMALL_STATE(197)] = 12402, + [SMALL_STATE(198)] = 12442, + [SMALL_STATE(199)] = 12490, [SMALL_STATE(200)] = 12540, [SMALL_STATE(201)] = 12588, [SMALL_STATE(202)] = 12625, @@ -15698,69 +15628,69 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(205)] = 12730, [SMALL_STATE(206)] = 12761, [SMALL_STATE(207)] = 12793, - [SMALL_STATE(208)] = 12824, + [SMALL_STATE(208)] = 12818, [SMALL_STATE(209)] = 12849, [SMALL_STATE(210)] = 12881, [SMALL_STATE(211)] = 12913, - [SMALL_STATE(212)] = 12947, - [SMALL_STATE(213)] = 12975, - [SMALL_STATE(214)] = 13007, - [SMALL_STATE(215)] = 13031, - [SMALL_STATE(216)] = 13055, - [SMALL_STATE(217)] = 13087, + [SMALL_STATE(212)] = 12945, + [SMALL_STATE(213)] = 12973, + [SMALL_STATE(214)] = 13005, + [SMALL_STATE(215)] = 13037, + [SMALL_STATE(216)] = 13071, + [SMALL_STATE(217)] = 13095, [SMALL_STATE(218)] = 13119, [SMALL_STATE(219)] = 13142, - [SMALL_STATE(220)] = 13169, + [SMALL_STATE(220)] = 13167, [SMALL_STATE(221)] = 13194, [SMALL_STATE(222)] = 13219, - [SMALL_STATE(223)] = 13248, - [SMALL_STATE(224)] = 13271, - [SMALL_STATE(225)] = 13304, + [SMALL_STATE(223)] = 13244, + [SMALL_STATE(224)] = 13267, + [SMALL_STATE(225)] = 13296, [SMALL_STATE(226)] = 13329, - [SMALL_STATE(227)] = 13351, - [SMALL_STATE(228)] = 13373, + [SMALL_STATE(227)] = 13369, + [SMALL_STATE(228)] = 13391, [SMALL_STATE(229)] = 13413, [SMALL_STATE(230)] = 13435, [SMALL_STATE(231)] = 13457, - [SMALL_STATE(232)] = 13481, - [SMALL_STATE(233)] = 13503, - [SMALL_STATE(234)] = 13525, - [SMALL_STATE(235)] = 13547, - [SMALL_STATE(236)] = 13569, - [SMALL_STATE(237)] = 13609, - [SMALL_STATE(238)] = 13631, - [SMALL_STATE(239)] = 13671, - [SMALL_STATE(240)] = 13711, - [SMALL_STATE(241)] = 13751, - [SMALL_STATE(242)] = 13773, - [SMALL_STATE(243)] = 13795, - [SMALL_STATE(244)] = 13817, - [SMALL_STATE(245)] = 13839, - [SMALL_STATE(246)] = 13861, - [SMALL_STATE(247)] = 13883, - [SMALL_STATE(248)] = 13905, - [SMALL_STATE(249)] = 13927, + [SMALL_STATE(232)] = 13479, + [SMALL_STATE(233)] = 13519, + [SMALL_STATE(234)] = 13541, + [SMALL_STATE(235)] = 13563, + [SMALL_STATE(236)] = 13585, + [SMALL_STATE(237)] = 13607, + [SMALL_STATE(238)] = 13629, + [SMALL_STATE(239)] = 13653, + [SMALL_STATE(240)] = 13675, + [SMALL_STATE(241)] = 13697, + [SMALL_STATE(242)] = 13719, + [SMALL_STATE(243)] = 13741, + [SMALL_STATE(244)] = 13763, + [SMALL_STATE(245)] = 13803, + [SMALL_STATE(246)] = 13825, + [SMALL_STATE(247)] = 13847, + [SMALL_STATE(248)] = 13869, + [SMALL_STATE(249)] = 13909, [SMALL_STATE(250)] = 13949, [SMALL_STATE(251)] = 13971, [SMALL_STATE(252)] = 13993, [SMALL_STATE(253)] = 14015, - [SMALL_STATE(254)] = 14041, - [SMALL_STATE(255)] = 14063, - [SMALL_STATE(256)] = 14085, + [SMALL_STATE(254)] = 14037, + [SMALL_STATE(255)] = 14077, + [SMALL_STATE(256)] = 14099, [SMALL_STATE(257)] = 14125, - [SMALL_STATE(258)] = 14162, - [SMALL_STATE(259)] = 14199, - [SMALL_STATE(260)] = 14226, - [SMALL_STATE(261)] = 14263, + [SMALL_STATE(258)] = 14152, + [SMALL_STATE(259)] = 14189, + [SMALL_STATE(260)] = 14216, + [SMALL_STATE(261)] = 14253, [SMALL_STATE(262)] = 14290, - [SMALL_STATE(263)] = 14327, + [SMALL_STATE(263)] = 14317, [SMALL_STATE(264)] = 14354, [SMALL_STATE(265)] = 14391, [SMALL_STATE(266)] = 14418, - [SMALL_STATE(267)] = 14450, - [SMALL_STATE(268)] = 14484, - [SMALL_STATE(269)] = 14504, - [SMALL_STATE(270)] = 14524, + [SMALL_STATE(267)] = 14438, + [SMALL_STATE(268)] = 14458, + [SMALL_STATE(269)] = 14492, + [SMALL_STATE(270)] = 14512, [SMALL_STATE(271)] = 14544, [SMALL_STATE(272)] = 14573, [SMALL_STATE(273)] = 14600, @@ -15785,11 +15715,11 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(292)] = 15005, [SMALL_STATE(293)] = 15021, [SMALL_STATE(294)] = 15037, - [SMALL_STATE(295)] = 15053, - [SMALL_STATE(296)] = 15069, - [SMALL_STATE(297)] = 15085, - [SMALL_STATE(298)] = 15101, - [SMALL_STATE(299)] = 15117, + [SMALL_STATE(295)] = 15055, + [SMALL_STATE(296)] = 15071, + [SMALL_STATE(297)] = 15087, + [SMALL_STATE(298)] = 15103, + [SMALL_STATE(299)] = 15119, [SMALL_STATE(300)] = 15135, [SMALL_STATE(301)] = 15150, [SMALL_STATE(302)] = 15162, @@ -15811,32 +15741,32 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(318)] = 15337, [SMALL_STATE(319)] = 15347, [SMALL_STATE(320)] = 15357, - [SMALL_STATE(321)] = 15365, - [SMALL_STATE(322)] = 15373, - [SMALL_STATE(323)] = 15383, - [SMALL_STATE(324)] = 15391, - [SMALL_STATE(325)] = 15401, - [SMALL_STATE(326)] = 15411, - [SMALL_STATE(327)] = 15421, - [SMALL_STATE(328)] = 15431, - [SMALL_STATE(329)] = 15441, - [SMALL_STATE(330)] = 15451, - [SMALL_STATE(331)] = 15461, - [SMALL_STATE(332)] = 15471, - [SMALL_STATE(333)] = 15481, - [SMALL_STATE(334)] = 15491, - [SMALL_STATE(335)] = 15501, - [SMALL_STATE(336)] = 15511, + [SMALL_STATE(321)] = 15367, + [SMALL_STATE(322)] = 15377, + [SMALL_STATE(323)] = 15387, + [SMALL_STATE(324)] = 15395, + [SMALL_STATE(325)] = 15405, + [SMALL_STATE(326)] = 15415, + [SMALL_STATE(327)] = 15425, + [SMALL_STATE(328)] = 15435, + [SMALL_STATE(329)] = 15445, + [SMALL_STATE(330)] = 15455, + [SMALL_STATE(331)] = 15465, + [SMALL_STATE(332)] = 15475, + [SMALL_STATE(333)] = 15485, + [SMALL_STATE(334)] = 15493, + [SMALL_STATE(335)] = 15503, + [SMALL_STATE(336)] = 15513, [SMALL_STATE(337)] = 15521, [SMALL_STATE(338)] = 15531, - [SMALL_STATE(339)] = 15541, - [SMALL_STATE(340)] = 15551, + [SMALL_STATE(339)] = 15539, + [SMALL_STATE(340)] = 15549, [SMALL_STATE(341)] = 15559, [SMALL_STATE(342)] = 15569, [SMALL_STATE(343)] = 15579, [SMALL_STATE(344)] = 15589, [SMALL_STATE(345)] = 15599, - [SMALL_STATE(346)] = 15607, + [SMALL_STATE(346)] = 15609, [SMALL_STATE(347)] = 15617, [SMALL_STATE(348)] = 15627, [SMALL_STATE(349)] = 15637, @@ -15844,24 +15774,24 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(351)] = 15657, [SMALL_STATE(352)] = 15665, [SMALL_STATE(353)] = 15672, - [SMALL_STATE(354)] = 15677, - [SMALL_STATE(355)] = 15682, + [SMALL_STATE(354)] = 15679, + [SMALL_STATE(355)] = 15684, [SMALL_STATE(356)] = 15689, - [SMALL_STATE(357)] = 15696, + [SMALL_STATE(357)] = 15694, [SMALL_STATE(358)] = 15701, - [SMALL_STATE(359)] = 15708, - [SMALL_STATE(360)] = 15715, - [SMALL_STATE(361)] = 15722, - [SMALL_STATE(362)] = 15727, - [SMALL_STATE(363)] = 15732, - [SMALL_STATE(364)] = 15737, - [SMALL_STATE(365)] = 15742, - [SMALL_STATE(366)] = 15749, - [SMALL_STATE(367)] = 15756, + [SMALL_STATE(359)] = 15706, + [SMALL_STATE(360)] = 15713, + [SMALL_STATE(361)] = 15718, + [SMALL_STATE(362)] = 15723, + [SMALL_STATE(363)] = 15730, + [SMALL_STATE(364)] = 15735, + [SMALL_STATE(365)] = 15740, + [SMALL_STATE(366)] = 15747, + [SMALL_STATE(367)] = 15754, [SMALL_STATE(368)] = 15761, - [SMALL_STATE(369)] = 15766, + [SMALL_STATE(369)] = 15768, [SMALL_STATE(370)] = 15773, - [SMALL_STATE(371)] = 15778, + [SMALL_STATE(371)] = 15780, [SMALL_STATE(372)] = 15785, [SMALL_STATE(373)] = 15790, [SMALL_STATE(374)] = 15795, @@ -15916,263 +15846,258 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(423)] = 15991, [SMALL_STATE(424)] = 15995, [SMALL_STATE(425)] = 15999, - [SMALL_STATE(426)] = 16003, - [SMALL_STATE(427)] = 16007, - [SMALL_STATE(428)] = 16011, - [SMALL_STATE(429)] = 16015, - [SMALL_STATE(430)] = 16019, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(72), - [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(400), - [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(109), - [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(175), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(175), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(180), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(258), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(360), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(395), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(374), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(390), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(340), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(79), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(385), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(91), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(72), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(109), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(175), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(175), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(180), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(258), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(360), - [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(395), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(374), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(390), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(340), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(80), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(79), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(385), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(91), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [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(71), + [40] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(406), + [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(88), + [46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(190), + [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(190), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(188), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(260), + [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(362), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(350), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(386), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(385), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(336), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(106), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(120), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(380), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(102), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(71), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(88), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(190), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(190), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(188), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(260), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(362), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(350), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(386), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(385), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(336), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(106), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(120), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(380), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(102), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(191), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(109), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(175), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(175), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(180), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(258), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(360), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(395), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(374), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(429), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(320), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(107), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(79), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(385), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(91), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(222), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(103), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(244), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(244), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(248), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(264), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(371), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(410), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(389), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(391), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(345), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(90), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(101), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(387), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(97), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(183), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(88), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(190), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(190), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(188), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(260), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(362), + [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(350), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(386), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(424), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(338), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(79), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(120), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(380), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(102), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(224), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(118), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(234), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(234), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(233), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(261), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(366), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(348), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(405), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(374), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(333), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(92), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(122), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(401), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(97), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [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(39), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(118), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4, .production_id = 1), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4, .production_id = 1), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(89), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6, .production_id = 2), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6, .production_id = 2), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(105), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4, .production_id = 1), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4, .production_id = 1), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(101), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6, .production_id = 2), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6, .production_id = 2), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [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 = false}}, SHIFT(46), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 1), [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 1), [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(93), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), @@ -16180,188 +16105,183 @@ static const TSParseActionEntry ts_parse_actions[] = { [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(86), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(286), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(286), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(290), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(260), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(359), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(422), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(414), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(90), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(299), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(299), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(295), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(258), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(357), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(329), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(417), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(258), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(260), [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(403), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(321), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(108), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [857] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(117), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(402), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(323), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [839] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), }; #ifdef __cplusplus