From e09bc20198ea94c50cda9f166abe3b73956946f6 Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 5 Oct 2023 16:49:03 -0400 Subject: [PATCH] Add tests; Fix string parsing --- Cargo.lock | 80 + corpus/functions.txt | 4 +- corpus/simple_values.txt | 91 + grammar.js | 12 +- src/grammar.json | 22 +- src/node-types.json | 8 +- src/parser.c | 17019 ++++++++++++++++++------------------- tests/dust_examples.rs | 2 +- 8 files changed, 8590 insertions(+), 8648 deletions(-) create mode 100644 Cargo.lock create mode 100644 corpus/simple_values.txt diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f9aafe3 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,80 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" +dependencies = [ + "memchr", +] + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] + +[[package]] +name = "libc" +version = "0.2.148" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" + +[[package]] +name = "memchr" +version = "2.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" + +[[package]] +name = "regex" +version = "1.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" + +[[package]] +name = "tree-sitter" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d" +dependencies = [ + "cc", + "regex", +] + +[[package]] +name = "tree-sitter-dust" +version = "0.0.1" +dependencies = [ + "cc", + "tree-sitter", +] diff --git a/corpus/functions.txt b/corpus/functions.txt index 2dd7937..5105328 100644 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -2,7 +2,7 @@ Simple Function ================== -function { "Hiya" } +function <> { "Hiya" } --- @@ -22,7 +22,7 @@ function { "Hiya" } Function Call ================== -foobar <"Hiya"> +foobar {"Hiya"} --- diff --git a/corpus/simple_values.txt b/corpus/simple_values.txt new file mode 100644 index 0000000..9a4af8e --- /dev/null +++ b/corpus/simple_values.txt @@ -0,0 +1,91 @@ +================== +Booleans +================== + +true +false + +--- + +(root + (item + (statement + (expression + (value + (boolean))))) + (item + (statement + (expression + (value + (boolean)))))) + +================== +Integers +================== + +1 2 3 +456 7 + +--- + +(root + (item + (statement + (expression + (value + (integer))))) + (item + (statement + (expression + (value + (integer))))) + (item + (statement + (expression + (value + (integer))))) + (item + (statement + (expression + (value + (integer))))) + (item + (statement + (expression + (value + (integer)))))) + +================== +Strings +================== + +"one" 'two' "three" `four` 'five' + +--- + +(root + (item + (statement + (expression + (value + (string))))) + (item + (statement + (expression + (value + (string))))) + (item + (statement + (expression + (value + (string))))) + (item + (statement + (expression + (value + (string))))) + (item + (statement + (expression + (value + (string)))))) diff --git a/grammar.js b/grammar.js index 908ef52..3ffd532 100644 --- a/grammar.js +++ b/grammar.js @@ -63,7 +63,7 @@ module.exports = grammar({ integer: $ => /[-]*[0-9]+[.]{0}/, - string: $ => /(".*?")|('.*?')|(`.*?`)/, + string: $ => /("[^"]*?")|('[^']*?')|(`[^`]*?`)/, boolean: $ => choice( 'true', @@ -142,13 +142,13 @@ module.exports = grammar({ ), )), - insert: $ => prec.right(seq( + insert: $ => prec.right(1, seq( 'insert', repeat1($.list), 'into', $.identifier, optional( - seq('where', $.expression) + seq('where', $.logic) ), )), @@ -166,9 +166,9 @@ module.exports = grammar({ function_call: $ => prec.right(seq( $.identifier, - '<', - repeat(seq($.expression, optional(','))), - '>', + '{', + repeat(seq($.expression)), + '}', )), loop: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index f84f738..fea38f8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -226,7 +226,7 @@ }, "string": { "type": "PATTERN", - "value": "(\".*?\")|('.*?')|(`.*?`)" + "value": "(\"[^\"]*?\")|('[^']*?')|(`[^`]*?`)" }, "boolean": { "type": "CHOICE", @@ -615,7 +615,7 @@ }, "insert": { "type": "PREC_RIGHT", - "value": 0, + "value": 1, "content": { "type": "SEQ", "members": [ @@ -650,7 +650,7 @@ }, { "type": "SYMBOL", - "name": "expression" + "name": "logic" } ] }, @@ -732,7 +732,7 @@ }, { "type": "STRING", - "value": "<" + "value": "{" }, { "type": "REPEAT", @@ -742,25 +742,13 @@ { "type": "SYMBOL", "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] } ] } }, { "type": "STRING", - "value": ">" + "value": "}" } ] } diff --git a/src/node-types.json b/src/node-types.json index bb3a2eb..d54d97b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -180,10 +180,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "expression", - "named": true - }, { "type": "identifier", "named": true @@ -191,6 +187,10 @@ { "type": "list", "named": true + }, + { + "type": "logic", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index dc773d9..0a662d0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 426 +#define STATE_COUNT 427 #define LARGE_STATE_COUNT 4 #define SYMBOL_COUNT 81 #define ALIAS_COUNT 0 @@ -637,301 +637,301 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 4, + [6] = 5, [7] = 7, - [8] = 5, - [9] = 4, - [10] = 4, - [11] = 5, + [8] = 4, + [9] = 5, + [10] = 10, + [11] = 7, [12] = 7, [13] = 4, - [14] = 7, + [14] = 5, [15] = 7, - [16] = 7, - [17] = 17, - [18] = 5, - [19] = 5, + [16] = 4, + [17] = 5, + [18] = 7, + [19] = 4, [20] = 20, [21] = 21, [22] = 21, - [23] = 20, - [24] = 24, + [23] = 23, + [24] = 23, [25] = 20, [26] = 21, - [27] = 24, - [28] = 24, + [27] = 23, + [28] = 21, [29] = 20, - [30] = 21, - [31] = 24, + [30] = 23, + [31] = 20, [32] = 21, - [33] = 24, - [34] = 20, + [33] = 20, + [34] = 23, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 39, [40] = 40, - [41] = 35, + [41] = 39, [42] = 38, - [43] = 36, - [44] = 40, - [45] = 45, - [46] = 46, - [47] = 45, + [43] = 37, + [44] = 39, + [45] = 39, + [46] = 36, + [47] = 38, [48] = 48, - [49] = 39, - [50] = 46, - [51] = 38, - [52] = 38, - [53] = 46, - [54] = 45, - [55] = 55, - [56] = 40, + [49] = 35, + [50] = 40, + [51] = 51, + [52] = 39, + [53] = 37, + [54] = 51, + [55] = 37, + [56] = 35, [57] = 37, - [58] = 35, - [59] = 37, + [58] = 36, + [59] = 59, [60] = 60, - [61] = 37, - [62] = 36, - [63] = 39, - [64] = 38, - [65] = 46, - [66] = 46, - [67] = 67, - [68] = 37, - [69] = 69, - [70] = 69, - [71] = 67, - [72] = 69, + [61] = 61, + [62] = 38, + [63] = 38, + [64] = 60, + [65] = 40, + [66] = 51, + [67] = 60, + [68] = 68, + [69] = 68, + [70] = 68, + [71] = 71, + [72] = 72, [73] = 73, - [74] = 74, + [74] = 71, [75] = 75, - [76] = 76, - [77] = 77, - [78] = 75, + [76] = 73, + [77] = 72, + [78] = 78, [79] = 79, [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] = 96, - [97] = 97, - [98] = 98, - [99] = 74, - [100] = 82, - [101] = 90, - [102] = 97, - [103] = 81, - [104] = 104, - [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, + [81] = 78, + [82] = 75, + [83] = 73, + [84] = 84, + [85] = 71, + [86] = 75, + [87] = 71, + [88] = 88, + [89] = 71, + [90] = 80, + [91] = 84, + [92] = 88, + [93] = 79, + [94] = 80, + [95] = 84, + [96] = 78, + [97] = 80, + [98] = 79, + [99] = 72, + [100] = 88, + [101] = 101, + [102] = 88, + [103] = 78, + [104] = 79, + [105] = 79, + [106] = 101, + [107] = 71, + [108] = 73, + [109] = 78, + [110] = 101, + [111] = 75, + [112] = 80, + [113] = 88, + [114] = 71, + [115] = 71, + [116] = 75, + [117] = 73, + [118] = 118, [119] = 119, - [120] = 119, - [121] = 121, - [122] = 119, - [123] = 123, - [124] = 74, - [125] = 73, - [126] = 81, - [127] = 82, - [128] = 121, - [129] = 129, + [120] = 120, + [121] = 118, + [122] = 122, + [123] = 119, + [124] = 124, + [125] = 118, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 118, [130] = 130, - [131] = 77, - [132] = 132, + [131] = 124, + [132] = 120, [133] = 133, - [134] = 76, - [135] = 96, - [136] = 104, - [137] = 123, - [138] = 73, - [139] = 139, + [134] = 127, + [135] = 126, + [136] = 122, + [137] = 137, + [138] = 124, + [139] = 122, [140] = 140, [141] = 141, [142] = 142, [143] = 143, - [144] = 133, - [145] = 145, - [146] = 73, + [144] = 128, + [145] = 137, + [146] = 130, [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 132, + [148] = 143, + [149] = 133, + [150] = 124, + [151] = 151, [152] = 152, [153] = 153, [154] = 154, [155] = 155, - [156] = 149, - [157] = 129, - [158] = 130, + [156] = 156, + [157] = 157, + [158] = 158, [159] = 159, [160] = 160, - [161] = 161, + [161] = 147, [162] = 162, [163] = 163, - [164] = 139, + [164] = 164, [165] = 165, - [166] = 166, + [166] = 118, [167] = 167, - [168] = 141, - [169] = 147, - [170] = 162, - [171] = 96, - [172] = 150, - [173] = 163, - [174] = 104, - [175] = 161, - [176] = 160, - [177] = 145, - [178] = 148, - [179] = 165, - [180] = 153, - [181] = 143, - [182] = 155, - [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] = 130, - [203] = 149, - [204] = 132, - [205] = 133, - [206] = 67, - [207] = 163, - [208] = 73, - [209] = 73, - [210] = 123, - [211] = 121, - [212] = 104, - [213] = 76, - [214] = 77, - [215] = 96, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 140, + [172] = 165, + [173] = 155, + [174] = 142, + [175] = 119, + [176] = 130, + [177] = 153, + [178] = 163, + [179] = 159, + [180] = 158, + [181] = 168, + [182] = 169, + [183] = 170, + [184] = 167, + [185] = 160, + [186] = 162, + [187] = 156, + [188] = 154, + [189] = 157, + [190] = 152, + [191] = 164, + [192] = 151, + [193] = 124, + [194] = 141, + [195] = 126, + [196] = 120, + [197] = 127, + [198] = 198, + [199] = 130, + [200] = 147, + [201] = 137, + [202] = 128, + [203] = 130, + [204] = 133, + [205] = 119, + [206] = 151, + [207] = 118, + [208] = 122, + [209] = 209, + [210] = 124, + [211] = 118, + [212] = 212, + [213] = 127, + [214] = 120, + [215] = 126, [216] = 216, - [217] = 217, - [218] = 218, - [219] = 133, - [220] = 132, - [221] = 129, - [222] = 130, - [223] = 223, - [224] = 67, - [225] = 96, - [226] = 226, - [227] = 140, - [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, + [217] = 124, + [218] = 133, + [219] = 137, + [220] = 128, + [221] = 130, + [222] = 222, + [223] = 151, + [224] = 224, + [225] = 162, + [226] = 163, + [227] = 142, + [228] = 169, + [229] = 224, + [230] = 224, + [231] = 170, + [232] = 164, + [233] = 157, + [234] = 224, + [235] = 224, + [236] = 155, + [237] = 147, + [238] = 143, + [239] = 168, + [240] = 240, + [241] = 154, + [242] = 156, [243] = 243, - [244] = 226, - [245] = 165, - [246] = 147, - [247] = 162, - [248] = 226, - [249] = 226, + [244] = 167, + [245] = 158, + [246] = 140, + [247] = 141, + [248] = 165, + [249] = 160, [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] = 274, - [277] = 274, + [251] = 119, + [252] = 153, + [253] = 130, + [254] = 159, + [255] = 126, + [256] = 256, + [257] = 120, + [258] = 127, + [259] = 256, + [260] = 256, + [261] = 256, + [262] = 256, + [263] = 128, + [264] = 264, + [265] = 118, + [266] = 147, + [267] = 137, + [268] = 122, + [269] = 124, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 271, + [274] = 272, + [275] = 270, + [276] = 271, + [277] = 271, [278] = 278, - [279] = 274, - [280] = 280, - [281] = 280, - [282] = 278, - [283] = 278, - [284] = 280, - [285] = 285, - [286] = 286, - [287] = 145, - [288] = 147, - [289] = 143, - [290] = 150, - [291] = 139, - [292] = 142, - [293] = 141, - [294] = 294, - [295] = 167, - [296] = 286, - [297] = 148, - [298] = 286, - [299] = 166, - [300] = 300, + [279] = 270, + [280] = 271, + [281] = 272, + [282] = 282, + [283] = 282, + [284] = 282, + [285] = 282, + [286] = 282, + [287] = 158, + [288] = 160, + [289] = 289, + [290] = 290, + [291] = 289, + [292] = 140, + [293] = 142, + [294] = 143, + [295] = 154, + [296] = 289, + [297] = 165, + [298] = 155, + [299] = 168, + [300] = 159, [301] = 301, [302] = 302, [303] = 303, @@ -939,124 +939,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [305] = 304, [306] = 303, [307] = 303, - [308] = 302, + [308] = 308, [309] = 304, - [310] = 303, + [310] = 308, [311] = 303, [312] = 304, - [313] = 302, + [313] = 308, [314] = 304, - [315] = 302, - [316] = 302, - [317] = 317, - [318] = 317, - [319] = 132, + [315] = 308, + [316] = 303, + [317] = 308, + [318] = 133, + [319] = 319, [320] = 320, [321] = 321, [322] = 322, [323] = 323, - [324] = 321, - [325] = 317, + [324] = 323, + [325] = 322, [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, + [327] = 327, + [328] = 328, + [329] = 130, + [330] = 330, + [331] = 331, + [332] = 321, + [333] = 331, + [334] = 330, + [335] = 331, + [336] = 321, + [337] = 323, + [338] = 330, + [339] = 322, + [340] = 322, + [341] = 330, + [342] = 331, [343] = 321, - [344] = 320, - [345] = 345, - [346] = 333, - [347] = 335, - [348] = 322, - [349] = 335, - [350] = 322, - [351] = 333, - [352] = 352, - [353] = 353, + [344] = 327, + [345] = 327, + [346] = 331, + [347] = 330, + [348] = 323, + [349] = 327, + [350] = 327, + [351] = 323, + [352] = 322, + [353] = 154, [354] = 354, - [355] = 141, - [356] = 143, - [357] = 353, - [358] = 145, - [359] = 353, - [360] = 147, - [361] = 361, - [362] = 353, - [363] = 142, - [364] = 150, - [365] = 352, - [366] = 353, - [367] = 352, - [368] = 352, - [369] = 139, - [370] = 352, - [371] = 148, - [372] = 167, - [373] = 166, - [374] = 374, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 357, + [359] = 357, + [360] = 355, + [361] = 357, + [362] = 165, + [363] = 355, + [364] = 355, + [365] = 355, + [366] = 168, + [367] = 140, + [368] = 160, + [369] = 159, + [370] = 158, + [371] = 155, + [372] = 143, + [373] = 357, + [374] = 142, [375] = 375, [376] = 376, [377] = 377, [378] = 378, [379] = 379, [380] = 380, - [381] = 377, + [381] = 380, [382] = 382, [383] = 383, - [384] = 384, - [385] = 374, - [386] = 386, - [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, + [384] = 380, + [385] = 385, + [386] = 385, + [387] = 387, + [388] = 388, + [389] = 385, + [390] = 388, + [391] = 376, + [392] = 382, + [393] = 377, + [394] = 376, + [395] = 382, + [396] = 377, + [397] = 387, + [398] = 382, + [399] = 377, + [400] = 400, + [401] = 377, [402] = 402, - [403] = 384, - [404] = 383, - [405] = 386, - [406] = 406, + [403] = 375, + [404] = 376, + [405] = 382, + [406] = 402, [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, + [408] = 388, + [409] = 402, + [410] = 402, + [411] = 387, + [412] = 385, + [413] = 375, + [414] = 375, + [415] = 375, + [416] = 402, + [417] = 407, + [418] = 400, + [419] = 407, + [420] = 407, + [421] = 387, + [422] = 387, [423] = 407, - [424] = 374, - [425] = 407, + [424] = 385, + [425] = 400, + [426] = 376, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1067,22 +1068,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(117); + if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(4); if (lookahead == '\'') ADVANCE(5); 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(113); + if (lookahead == '+') ADVANCE(109); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(110); 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(114); + if (lookahead == '<') ADVANCE(100); + if (lookahead == '=') ADVANCE(107); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '[') ADVANCE(95); + if (lookahead == ']') ADVANCE(97); if (lookahead == '`') ADVANCE(10); if (lookahead == 'a') ADVANCE(73); if (lookahead == 'e') ADVANCE(70); @@ -1090,9 +1091,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(78); if (lookahead == 't') ADVANCE(55); if (lookahead == 'w') ADVANCE(68); - if (lookahead == '{') ADVANCE(104); + if (lookahead == '{') ADVANCE(102); if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1103,15 +1104,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1: if (lookahead == '"') ADVANCE(2); if (lookahead == '\'') ADVANCE(5); - if (lookahead == ',') ADVANCE(98); + if (lookahead == ',') ADVANCE(96); if (lookahead == '-') ADVANCE(8); if (lookahead == '.') ADVANCE(41); - if (lookahead == '[') ADVANCE(97); - if (lookahead == ']') ADVANCE(99); + if (lookahead == '[') ADVANCE(95); + if (lookahead == ']') ADVANCE(97); if (lookahead == '`') ADVANCE(10); if (lookahead == 'f') ADVANCE(12); if (lookahead == 't') ADVANCE(11); - if (lookahead == '{') ADVANCE(104); + if (lookahead == '{') ADVANCE(102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1120,45 +1121,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2: if (lookahead == '"') ADVANCE(90); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2); + if (lookahead != 0) ADVANCE(2); END_STATE(); case 3: - if (lookahead == '%') ADVANCE(117); + if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(4); 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 == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(109); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '/') ADVANCE(114); + if (lookahead == '=') ADVANCE(107); 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(102); if (lookahead == '|') ADVANCE(40); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) END_STATE(); case 4: - if (lookahead == '&') ADVANCE(119); + if (lookahead == '&') ADVANCE(117); END_STATE(); case 5: - if (lookahead == '\'') ADVANCE(91); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(5); + if (lookahead == '\'') ADVANCE(90); + if (lookahead != 0) ADVANCE(5); END_STATE(); case 6: - if (lookahead == ',') ADVANCE(98); - if (lookahead == '>') ADVANCE(103); - if (lookahead == '[') ADVANCE(97); - if (lookahead == '}') ADVANCE(105); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '[') ADVANCE(95); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1180,12 +1178,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 10: - if (lookahead == '`') ADVANCE(92); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(10); + if (lookahead == '`') ADVANCE(90); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 11: if (lookahead == 'a') ADVANCE(13); @@ -1202,22 +1199,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(38); END_STATE(); case 15: - if (lookahead == 'd') ADVANCE(122); + if (lookahead == 'd') ADVANCE(120); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'e') ADVANCE(126); END_STATE(); case 18: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'e') ADVANCE(91); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 20: - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 21: if (lookahead == 'e') ADVANCE(30); @@ -1247,19 +1244,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(15); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(130); + if (lookahead == 'n') ADVANCE(128); END_STATE(); case 31: if (lookahead == 'n') ADVANCE(14); END_STATE(); case 32: - if (lookahead == 'n') ADVANCE(100); + if (lookahead == 'n') ADVANCE(98); END_STATE(); case 33: if (lookahead == 'o') ADVANCE(32); END_STATE(); case 34: - if (lookahead == 'r') ADVANCE(124); + if (lookahead == 'r') ADVANCE(122); END_STATE(); case 35: if (lookahead == 'r') ADVANCE(17); @@ -1277,7 +1274,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(18); END_STATE(); case 40: - if (lookahead == '|') ADVANCE(120); + if (lookahead == '|') ADVANCE(118); END_STATE(); case 41: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); @@ -1286,29 +1283,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(117); + if (lookahead == '%') ADVANCE(115); 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(113); + if (lookahead == '+') ADVANCE(109); + if (lookahead == '-') ADVANCE(110); 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(114); + if (lookahead == '=') ADVANCE(106); + if (lookahead == '[') ADVANCE(95); 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 == '{') ADVANCE(104); + if (lookahead == '{') ADVANCE(102); if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1320,28 +1314,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(117); + if (lookahead == '%') ADVANCE(115); 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(113); + if (lookahead == '+') ADVANCE(109); + if (lookahead == '-') ADVANCE(110); 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(114); + if (lookahead == '=') ADVANCE(106); + if (lookahead == '[') ADVANCE(95); 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(102); if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1353,19 +1344,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(117); + if (lookahead == '%') ADVANCE(115); 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(113); + if (lookahead == '+') ADVANCE(108); + if (lookahead == '-') ADVANCE(111); if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(116); + if (lookahead == '/') ADVANCE(114); if (lookahead == '=') ADVANCE(9); - if (lookahead == '>') ADVANCE(103); - if (lookahead == '[') ADVANCE(97); + if (lookahead == '[') ADVANCE(95); if (lookahead == '`') ADVANCE(10); if (lookahead == 'a') ADVANCE(73); if (lookahead == 'e') ADVANCE(70); @@ -1373,9 +1362,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(78); if (lookahead == 't') ADVANCE(56); if (lookahead == 'w') ADVANCE(68); - if (lookahead == '{') ADVANCE(104); + if (lookahead == '{') ADVANCE(102); if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1387,28 +1376,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(47); if (lookahead == '"') ADVANCE(2); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(117); + if (lookahead == '%') ADVANCE(115); 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(113); + if (lookahead == '+') ADVANCE(108); + if (lookahead == '-') ADVANCE(111); if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(116); + if (lookahead == '/') ADVANCE(114); if (lookahead == '=') ADVANCE(9); - if (lookahead == '>') ADVANCE(103); - if (lookahead == '[') ADVANCE(97); + if (lookahead == '[') ADVANCE(95); 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 == 'w') ADVANCE(68); - if (lookahead == '{') ADVANCE(104); + if (lookahead == '{') ADVANCE(102); if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1424,13 +1411,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(52); if (lookahead == '-') ADVANCE(7); if (lookahead == '.') ADVANCE(85); - if (lookahead == '>') ADVANCE(103); - if (lookahead == '[') ADVANCE(97); + if (lookahead == '[') ADVANCE(95); if (lookahead == '`') ADVANCE(10); if (lookahead == 'f') ADVANCE(57); if (lookahead == 't') ADVANCE(56); - if (lookahead == '{') ADVANCE(104); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '{') ADVANCE(102); + if (lookahead == '}') ADVANCE(103); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1520,7 +1506,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 60: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(123); + if (lookahead == 'd') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1529,7 +1515,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 61: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'e') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1538,7 +1524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 62: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'e') ADVANCE(92); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1547,7 +1533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 63: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(96); + if (lookahead == 'e') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1556,7 +1542,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 64: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1565,7 +1551,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 65: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'e') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1655,7 +1641,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 75: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'n') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1664,7 +1650,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 76: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'n') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1682,7 +1668,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(125); + if (lookahead == 'r') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1736,7 +1722,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '|') ADVANCE(121); + if (lookahead == '|') ADVANCE(119); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1773,27 +1759,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 90: ACCEPT_TOKEN(sym_string); - if (lookahead == '"') ADVANCE(90); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2); END_STATE(); case 91: - ACCEPT_TOKEN(sym_string); - if (lookahead == '\'') ADVANCE(91); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(5); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 92: - ACCEPT_TOKEN(sym_string); - if (lookahead == '`') ADVANCE(92); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(10); + 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 93: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1801,29 +1783,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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_LBRACK); END_STATE(); - case 98: + case 96: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 99: + case 97: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 100: + case 98: ACCEPT_TOKEN(anon_sym_function); END_STATE(); - case 101: + case 99: ACCEPT_TOKEN(anon_sym_function); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || @@ -1831,22 +1802,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(86); END_STATE(); - case 102: + case 100: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 103: + case 101: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 104: + case 102: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 105: + case 103: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 106: + case 104: ACCEPT_TOKEN(anon_sym_table); END_STATE(); - case 107: + case 105: ACCEPT_TOKEN(anon_sym_table); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || @@ -1854,61 +1825,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(86); END_STATE(); - case 108: + case 106: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(116); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(132); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(8); + if (lookahead == '.') ADVANCE(41); + if (lookahead == '=') ADVANCE(125); + if (lookahead == '>') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); + 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 112: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(41); - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(125); if (lookahead == '>') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 113: - 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_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(51); - END_STATE(); - case 115: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 116: + case 114: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 117: + case 115: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 118: + case 116: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 119: + case 117: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 120: + case 118: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 121: + case 119: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || @@ -1916,11 +1887,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(86); END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 121: + 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 122: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1928,27 +1910,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '|') ADVANCE(86); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 127: + 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 126: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_then); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1956,10 +1938,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '|') ADVANCE(86); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_then); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_then); + ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); if (lookahead == '.' || lookahead == '_' || @@ -1967,17 +1949,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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_EQ_GT); END_STATE(); default: @@ -2175,17 +2146,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [64] = {.lex_state = 46}, [65] = {.lex_state = 46}, [66] = {.lex_state = 46}, - [67] = {.lex_state = 42}, + [67] = {.lex_state = 46}, [68] = {.lex_state = 46}, [69] = {.lex_state = 46}, [70] = {.lex_state = 46}, - [71] = {.lex_state = 43}, + [71] = {.lex_state = 46}, [72] = {.lex_state = 46}, - [73] = {.lex_state = 42}, + [73] = {.lex_state = 46}, [74] = {.lex_state = 46}, [75] = {.lex_state = 46}, - [76] = {.lex_state = 42}, - [77] = {.lex_state = 42}, + [76] = {.lex_state = 46}, + [77] = {.lex_state = 46}, [78] = {.lex_state = 46}, [79] = {.lex_state = 46}, [80] = {.lex_state = 46}, @@ -2204,7 +2175,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [93] = {.lex_state = 46}, [94] = {.lex_state = 46}, [95] = {.lex_state = 46}, - [96] = {.lex_state = 42}, + [96] = {.lex_state = 46}, [97] = {.lex_state = 46}, [98] = {.lex_state = 46}, [99] = {.lex_state = 46}, @@ -2212,7 +2183,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 46}, [102] = {.lex_state = 46}, [103] = {.lex_state = 46}, - [104] = {.lex_state = 42}, + [104] = {.lex_state = 46}, [105] = {.lex_state = 46}, [106] = {.lex_state = 46}, [107] = {.lex_state = 46}, @@ -2226,47 +2197,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [118] = {.lex_state = 42}, + [119] = {.lex_state = 42}, + [120] = {.lex_state = 42}, + [121] = {.lex_state = 43}, + [122] = {.lex_state = 42}, + [123] = {.lex_state = 43}, + [124] = {.lex_state = 42}, [125] = {.lex_state = 43}, - [126] = {.lex_state = 46}, - [127] = {.lex_state = 46}, - [128] = {.lex_state = 43}, - [129] = {.lex_state = 44}, - [130] = {.lex_state = 44}, + [126] = {.lex_state = 42}, + [127] = {.lex_state = 42}, + [128] = {.lex_state = 44}, + [129] = {.lex_state = 42}, + [130] = {.lex_state = 42}, [131] = {.lex_state = 43}, - [132] = {.lex_state = 42}, + [132] = {.lex_state = 43}, [133] = {.lex_state = 42}, [134] = {.lex_state = 43}, [135] = {.lex_state = 43}, [136] = {.lex_state = 43}, - [137] = {.lex_state = 43}, + [137] = {.lex_state = 44}, [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}, + [144] = {.lex_state = 45}, + [145] = {.lex_state = 45}, + [146] = {.lex_state = 43}, [147] = {.lex_state = 42}, - [148] = {.lex_state = 42}, - [149] = {.lex_state = 42}, + [148] = {.lex_state = 43}, + [149] = {.lex_state = 43}, [150] = {.lex_state = 42}, - [151] = {.lex_state = 43}, + [151] = {.lex_state = 42}, [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}, + [157] = {.lex_state = 42}, + [158] = {.lex_state = 42}, [159] = {.lex_state = 42}, [160] = {.lex_state = 42}, [161] = {.lex_state = 42}, @@ -2274,17 +2245,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [163] = {.lex_state = 42}, [164] = {.lex_state = 42}, [165] = {.lex_state = 42}, - [166] = {.lex_state = 42}, + [166] = {.lex_state = 43}, [167] = {.lex_state = 42}, - [168] = {.lex_state = 43}, - [169] = {.lex_state = 43}, - [170] = {.lex_state = 43}, - [171] = {.lex_state = 42}, + [168] = {.lex_state = 42}, + [169] = {.lex_state = 42}, + [170] = {.lex_state = 42}, + [171] = {.lex_state = 43}, [172] = {.lex_state = 43}, [173] = {.lex_state = 43}, [174] = {.lex_state = 43}, [175] = {.lex_state = 43}, - [176] = {.lex_state = 43}, + [176] = {.lex_state = 42}, [177] = {.lex_state = 43}, [178] = {.lex_state = 43}, [179] = {.lex_state = 43}, @@ -2301,82 +2272,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 43}, [191] = {.lex_state = 43}, [192] = {.lex_state = 43}, - [193] = {.lex_state = 42}, + [193] = {.lex_state = 43}, [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}, + [200] = {.lex_state = 42}, [201] = {.lex_state = 45}, [202] = {.lex_state = 45}, - [203] = {.lex_state = 42}, + [203] = {.lex_state = 46}, [204] = {.lex_state = 46}, - [205] = {.lex_state = 46}, - [206] = {.lex_state = 3}, - [207] = {.lex_state = 46}, + [205] = {.lex_state = 3}, + [206] = {.lex_state = 46}, + [207] = {.lex_state = 3}, [208] = {.lex_state = 3}, - [209] = {.lex_state = 3}, + [209] = {.lex_state = 46}, [210] = {.lex_state = 3}, [211] = {.lex_state = 3}, - [212] = {.lex_state = 3}, + [212] = {.lex_state = 46}, [213] = {.lex_state = 3}, [214] = {.lex_state = 3}, [215] = {.lex_state = 3}, [216] = {.lex_state = 46}, - [217] = {.lex_state = 46}, - [218] = {.lex_state = 46}, + [217] = {.lex_state = 3}, + [218] = {.lex_state = 3}, [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, - [222] = {.lex_state = 3}, - [223] = {.lex_state = 46}, - [224] = {.lex_state = 3}, + [222] = {.lex_state = 46}, + [223] = {.lex_state = 3}, + [224] = {.lex_state = 1}, [225] = {.lex_state = 3}, - [226] = {.lex_state = 1}, + [226] = {.lex_state = 3}, [227] = {.lex_state = 3}, [228] = {.lex_state = 3}, - [229] = {.lex_state = 3}, - [230] = {.lex_state = 3}, + [229] = {.lex_state = 1}, + [230] = {.lex_state = 1}, [231] = {.lex_state = 3}, - [232] = {.lex_state = 1}, + [232] = {.lex_state = 3}, [233] = {.lex_state = 3}, - [234] = {.lex_state = 3}, - [235] = {.lex_state = 3}, + [234] = {.lex_state = 1}, + [235] = {.lex_state = 1}, [236] = {.lex_state = 3}, [237] = {.lex_state = 3}, [238] = {.lex_state = 3}, [239] = {.lex_state = 3}, - [240] = {.lex_state = 3}, + [240] = {.lex_state = 46}, [241] = {.lex_state = 3}, - [242] = {.lex_state = 46}, - [243] = {.lex_state = 46}, - [244] = {.lex_state = 1}, + [242] = {.lex_state = 3}, + [243] = {.lex_state = 1}, + [244] = {.lex_state = 3}, [245] = {.lex_state = 3}, [246] = {.lex_state = 3}, [247] = {.lex_state = 3}, - [248] = {.lex_state = 1}, - [249] = {.lex_state = 1}, + [248] = {.lex_state = 3}, + [249] = {.lex_state = 3}, [250] = {.lex_state = 3}, [251] = {.lex_state = 3}, [252] = {.lex_state = 3}, [253] = {.lex_state = 3}, - [254] = {.lex_state = 1}, + [254] = {.lex_state = 3}, [255] = {.lex_state = 3}, - [256] = {.lex_state = 3}, + [256] = {.lex_state = 1}, [257] = {.lex_state = 3}, - [258] = {.lex_state = 1}, - [259] = {.lex_state = 3}, + [258] = {.lex_state = 3}, + [259] = {.lex_state = 1}, [260] = {.lex_state = 1}, [261] = {.lex_state = 1}, - [262] = {.lex_state = 3}, - [263] = {.lex_state = 1}, + [262] = {.lex_state = 1}, + [263] = {.lex_state = 3}, [264] = {.lex_state = 1}, [265] = {.lex_state = 3}, [266] = {.lex_state = 3}, [267] = {.lex_state = 3}, - [268] = {.lex_state = 1}, + [268] = {.lex_state = 3}, [269] = {.lex_state = 3}, [270] = {.lex_state = 3}, [271] = {.lex_state = 3}, @@ -2397,84 +2368,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 3}, [287] = {.lex_state = 1}, [288] = {.lex_state = 1}, - [289] = {.lex_state = 1}, + [289] = {.lex_state = 3}, [290] = {.lex_state = 1}, - [291] = {.lex_state = 1}, + [291] = {.lex_state = 3}, [292] = {.lex_state = 1}, [293] = {.lex_state = 1}, [294] = {.lex_state = 1}, [295] = {.lex_state = 1}, [296] = {.lex_state = 3}, [297] = {.lex_state = 1}, - [298] = {.lex_state = 3}, + [298] = {.lex_state = 1}, [299] = {.lex_state = 1}, [300] = {.lex_state = 1}, - [301] = {.lex_state = 6}, + [301] = {.lex_state = 1}, [302] = {.lex_state = 6}, [303] = {.lex_state = 0}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 0}, + [304] = {.lex_state = 6}, + [305] = {.lex_state = 6}, [306] = {.lex_state = 0}, [307] = {.lex_state = 0}, - [308] = {.lex_state = 6}, - [309] = {.lex_state = 0}, + [308] = {.lex_state = 0}, + [309] = {.lex_state = 6}, [310] = {.lex_state = 0}, [311] = {.lex_state = 0}, - [312] = {.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 = 0}, + [312] = {.lex_state = 6}, + [313] = {.lex_state = 0}, + [314] = {.lex_state = 6}, + [315] = {.lex_state = 0}, + [316] = {.lex_state = 0}, + [317] = {.lex_state = 0}, + [318] = {.lex_state = 0}, + [319] = {.lex_state = 6}, [320] = {.lex_state = 6}, [321] = {.lex_state = 6}, - [322] = {.lex_state = 6}, + [322] = {.lex_state = 0}, [323] = {.lex_state = 6}, [324] = {.lex_state = 6}, - [325] = {.lex_state = 6}, + [325] = {.lex_state = 0}, [326] = {.lex_state = 6}, - [327] = {.lex_state = 0}, + [327] = {.lex_state = 6}, [328] = {.lex_state = 6}, - [329] = {.lex_state = 6}, + [329] = {.lex_state = 0}, [330] = {.lex_state = 6}, [331] = {.lex_state = 6}, [332] = {.lex_state = 6}, - [333] = {.lex_state = 0}, + [333] = {.lex_state = 6}, [334] = {.lex_state = 6}, [335] = {.lex_state = 6}, - [336] = {.lex_state = 0}, + [336] = {.lex_state = 6}, [337] = {.lex_state = 6}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 6}, - [340] = {.lex_state = 6}, + [338] = {.lex_state = 6}, + [339] = {.lex_state = 0}, + [340] = {.lex_state = 0}, [341] = {.lex_state = 6}, [342] = {.lex_state = 6}, [343] = {.lex_state = 6}, [344] = {.lex_state = 6}, [345] = {.lex_state = 6}, - [346] = {.lex_state = 0}, + [346] = {.lex_state = 6}, [347] = {.lex_state = 6}, [348] = {.lex_state = 6}, [349] = {.lex_state = 6}, [350] = {.lex_state = 6}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 6}, - [353] = {.lex_state = 0}, + [351] = {.lex_state = 6}, + [352] = {.lex_state = 0}, + [353] = {.lex_state = 6}, [354] = {.lex_state = 6}, - [355] = {.lex_state = 6}, + [355] = {.lex_state = 0}, [356] = {.lex_state = 6}, - [357] = {.lex_state = 0}, + [357] = {.lex_state = 6}, [358] = {.lex_state = 6}, - [359] = {.lex_state = 0}, - [360] = {.lex_state = 6}, + [359] = {.lex_state = 6}, + [360] = {.lex_state = 0}, [361] = {.lex_state = 6}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 6}, - [364] = {.lex_state = 6}, - [365] = {.lex_state = 6}, - [366] = {.lex_state = 0}, + [362] = {.lex_state = 6}, + [363] = {.lex_state = 0}, + [364] = {.lex_state = 0}, + [365] = {.lex_state = 0}, + [366] = {.lex_state = 6}, [367] = {.lex_state = 6}, [368] = {.lex_state = 6}, [369] = {.lex_state = 6}, @@ -2487,53 +2458,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [376] = {.lex_state = 0}, [377] = {.lex_state = 0}, [378] = {.lex_state = 0}, - [379] = {.lex_state = 6}, + [379] = {.lex_state = 0}, [380] = {.lex_state = 0}, [381] = {.lex_state = 0}, - [382] = {.lex_state = 6}, - [383] = {.lex_state = 0}, + [382] = {.lex_state = 0}, + [383] = {.lex_state = 49}, [384] = {.lex_state = 0}, [385] = {.lex_state = 6}, - [386] = {.lex_state = 0}, - [387] = {.lex_state = 0}, + [386] = {.lex_state = 6}, + [387] = {.lex_state = 6}, [388] = {.lex_state = 0}, - [389] = {.lex_state = 0}, + [389] = {.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 = 6}, + [393] = {.lex_state = 0}, + [394] = {.lex_state = 0}, + [395] = {.lex_state = 0}, [396] = {.lex_state = 0}, - [397] = {.lex_state = 0}, + [397] = {.lex_state = 6}, [398] = {.lex_state = 0}, [399] = {.lex_state = 0}, [400] = {.lex_state = 0}, [401] = {.lex_state = 0}, - [402] = {.lex_state = 0}, + [402] = {.lex_state = 6}, [403] = {.lex_state = 0}, [404] = {.lex_state = 0}, [405] = {.lex_state = 0}, - [406] = {.lex_state = 49}, + [406] = {.lex_state = 6}, [407] = {.lex_state = 6}, [408] = {.lex_state = 0}, - [409] = {.lex_state = 0}, - [410] = {.lex_state = 0}, + [409] = {.lex_state = 6}, + [410] = {.lex_state = 6}, [411] = {.lex_state = 6}, [412] = {.lex_state = 6}, - [413] = {.lex_state = 6}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 6}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 0}, [416] = {.lex_state = 6}, - [417] = {.lex_state = 0}, + [417] = {.lex_state = 6}, [418] = {.lex_state = 0}, - [419] = {.lex_state = 0}, + [419] = {.lex_state = 6}, [420] = {.lex_state = 6}, [421] = {.lex_state = 6}, [422] = {.lex_state = 6}, [423] = {.lex_state = 6}, [424] = {.lex_state = 6}, - [425] = {.lex_state = 6}, + [425] = {.lex_state = 0}, + [426] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2585,31 +2557,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), }, [1] = { - [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_root] = STATE(378), + [sym_item] = STATE(2), + [sym_comment] = STATE(212), + [sym_statement] = STATE(212), + [sym_yield] = STATE(206), + [sym_expression] = STATE(138), + [sym__expression_kind] = STATE(186), + [sym_value] = STATE(186), + [sym_boolean] = STATE(181), + [sym_list] = STATE(181), + [sym_function] = STATE(181), + [sym_table] = STATE(181), + [sym_map] = STATE(181), + [sym_math] = STATE(186), + [sym_logic] = STATE(186), + [sym_assignment] = STATE(186), + [sym_select] = STATE(186), + [sym_insert] = STATE(186), + [sym_control_flow] = STATE(186), + [sym_function_call] = STATE(186), + [sym_loop] = STATE(186), + [sym_while_loop] = STATE(178), + [sym_break_loop] = STATE(178), + [sym_match] = STATE(186), + [aux_sym_root_repeat1] = STATE(2), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2630,76 +2602,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(33), }, [2] = { - [sym_item] = STATE(2), - [sym_comment] = STATE(217), - [sym_statement] = STATE(217), - [sym_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), + [sym_item] = STATE(3), + [sym_comment] = STATE(212), + [sym_statement] = STATE(212), + [sym_yield] = STATE(206), + [sym_expression] = STATE(138), + [sym__expression_kind] = STATE(186), + [sym_value] = STATE(186), + [sym_boolean] = STATE(181), + [sym_list] = STATE(181), + [sym_function] = STATE(181), + [sym_table] = STATE(181), + [sym_map] = STATE(181), + [sym_math] = STATE(186), + [sym_logic] = STATE(186), + [sym_assignment] = STATE(186), + [sym_select] = STATE(186), + [sym_insert] = STATE(186), + [sym_control_flow] = STATE(186), + [sym_function_call] = STATE(186), + [sym_loop] = STATE(186), + [sym_while_loop] = STATE(178), + [sym_break_loop] = STATE(178), + [sym_match] = STATE(186), + [aux_sym_root_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), - [anon_sym_POUND] = ACTIONS(40), - [anon_sym_LPAREN] = ACTIONS(43), - [sym_float] = ACTIONS(46), - [sym_integer] = ACTIONS(46), - [sym_string] = ACTIONS(49), - [anon_sym_true] = ACTIONS(52), - [anon_sym_false] = ACTIONS(52), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_function] = ACTIONS(58), - [anon_sym_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), @@ -2719,6 +2646,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(31), [anon_sym_match] = ACTIONS(33), }, + [3] = { + [sym_item] = STATE(3), + [sym_comment] = STATE(212), + [sym_statement] = STATE(212), + [sym_yield] = STATE(206), + [sym_expression] = STATE(138), + [sym__expression_kind] = STATE(186), + [sym_value] = STATE(186), + [sym_boolean] = STATE(181), + [sym_list] = STATE(181), + [sym_function] = STATE(181), + [sym_table] = STATE(181), + [sym_map] = STATE(181), + [sym_math] = STATE(186), + [sym_logic] = STATE(186), + [sym_assignment] = STATE(186), + [sym_select] = STATE(186), + [sym_insert] = STATE(186), + [sym_control_flow] = STATE(186), + [sym_function_call] = STATE(186), + [sym_loop] = STATE(186), + [sym_while_loop] = STATE(178), + [sym_break_loop] = STATE(178), + [sym_match] = STATE(186), + [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_LBRACE] = ACTIONS(63), + [anon_sym_table] = 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[] = { @@ -2751,9 +2723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(87), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2761,19 +2733,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -2814,9 +2786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(89), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2824,19 +2796,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -2877,9 +2849,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(91), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2887,19 +2859,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -2940,9 +2912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(93), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -2950,19 +2922,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3003,9 +2975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(95), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3013,19 +2985,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3066,9 +3038,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(97), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3076,19 +3048,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3101,57 +3073,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [510] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_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, ACTIONS(99), 1, + sym_identifier, + ACTIONS(102), 1, + anon_sym_LPAREN, + ACTIONS(108), 1, + sym_string, + ACTIONS(114), 1, + anon_sym_LBRACK, + ACTIONS(117), 1, + anon_sym_function, + ACTIONS(120), 1, + anon_sym_LBRACE, + ACTIONS(123), 1, anon_sym_RBRACE, - STATE(189), 1, + ACTIONS(125), 1, + anon_sym_table, + ACTIONS(128), 1, + anon_sym_select, + ACTIONS(131), 1, + anon_sym_insert, + ACTIONS(134), 1, + anon_sym_if, + ACTIONS(137), 1, + anon_sym_while, + ACTIONS(140), 1, + anon_sym_loop, + ACTIONS(143), 1, + anon_sym_match, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, - ACTIONS(9), 2, + ACTIONS(105), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(111), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3190,11 +3162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(101), 1, + ACTIONS(146), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3202,19 +3174,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3253,11 +3225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(103), 1, + ACTIONS(148), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3265,19 +3237,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3316,11 +3288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(105), 1, + ACTIONS(150), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3328,19 +3300,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3379,11 +3351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(107), 1, + ACTIONS(152), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3391,19 +3363,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3442,11 +3414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(109), 1, + ACTIONS(154), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3454,19 +3426,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3505,11 +3477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - ACTIONS(111), 1, + ACTIONS(156), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3517,19 +3489,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3542,57 +3514,57 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [1105] = 22, - ACTIONS(113), 1, + ACTIONS(3), 1, sym_identifier, - ACTIONS(116), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(122), 1, + ACTIONS(11), 1, sym_string, - ACTIONS(128), 1, + ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(17), 1, anon_sym_function, - ACTIONS(134), 1, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(137), 1, - anon_sym_RBRACE, - ACTIONS(139), 1, + ACTIONS(21), 1, anon_sym_table, - ACTIONS(142), 1, + ACTIONS(23), 1, anon_sym_select, - ACTIONS(145), 1, + ACTIONS(25), 1, anon_sym_insert, - ACTIONS(148), 1, + ACTIONS(27), 1, anon_sym_if, - ACTIONS(151), 1, + ACTIONS(29), 1, anon_sym_while, - ACTIONS(154), 1, + ACTIONS(31), 1, anon_sym_loop, - ACTIONS(157), 1, + ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + ACTIONS(158), 1, + anon_sym_RBRACE, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, - ACTIONS(119), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(125), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3633,9 +3605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(160), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3643,19 +3615,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3696,9 +3668,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, ACTIONS(162), 1, anon_sym_RBRACE, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3706,19 +3678,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(10), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3757,9 +3729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3767,19 +3739,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(7), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3818,9 +3790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3828,19 +3800,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(7), 2, + STATE(6), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3879,9 +3851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3889,19 +3861,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(12), 2, + STATE(17), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -3940,9 +3912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -3950,19 +3922,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(16), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4001,9 +3973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4014,16 +3986,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(4), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4062,9 +4034,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4072,19 +4044,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(19), 2, + STATE(15), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4123,9 +4095,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4133,19 +4105,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(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4184,9 +4156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4197,16 +4169,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(13), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4245,9 +4217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4255,19 +4227,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(6), 2, + STATE(9), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4306,9 +4278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4316,19 +4288,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(5), 2, + STATE(11), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4367,9 +4339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4377,19 +4349,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(8), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4428,9 +4400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4438,19 +4410,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(10), 2, + STATE(18), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4489,9 +4461,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4499,19 +4471,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(14), 2, + STATE(5), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4550,9 +4522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4560,19 +4532,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(12), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4611,9 +4583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(189), 1, + STATE(138), 1, sym_expression, - STATE(207), 1, + STATE(206), 1, sym_yield, ACTIONS(9), 2, sym_float, @@ -4621,19 +4593,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(19), 2, sym_statement, aux_sym_function_repeat2, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -4672,11 +4644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(207), 1, + STATE(206), 1, sym_yield, - STATE(271), 1, + STATE(269), 1, sym_expression, - STATE(396), 1, + STATE(425), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -4684,16 +4656,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -4706,6 +4678,246 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [2671] = 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(206), 1, + sym_yield, + STATE(269), 1, + sym_expression, + STATE(388), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2752] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_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(210), 1, + sym_expression, + STATE(223), 1, + sym_yield, + STATE(237), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2833] = 21, + ACTIONS(164), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_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(210), 1, + sym_expression, + STATE(223), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2914] = 21, + ACTIONS(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(210), 1, + sym_expression, + STATE(223), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [2995] = 21, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -4727,16 +4939,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(194), 1, sym_identifier, ACTIONS(196), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(198), 1, anon_sym_select, ACTIONS(200), 1, anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - STATE(55), 1, + STATE(54), 1, aux_sym_function_call_repeat1, - STATE(199), 1, + STATE(198), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -4744,256 +4956,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 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, - [2752] = 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(163), 1, - sym_yield, - STATE(171), 1, - sym_expression, - STATE(203), 1, - sym_statement, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(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, - [2833] = 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(170), 1, - sym_statement, - STATE(173), 1, - sym_yield, - 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, - [2914] = 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(234), 1, - anon_sym_GT, - STATE(43), 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, - [2995] = 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(381), 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, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -5006,54 +4978,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3076] = 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(180), 1, + ACTIONS(21), 1, anon_sym_table, - 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(207), 1, - sym_yield, - STATE(271), 1, + STATE(131), 1, sym_expression, - STATE(409), 1, + STATE(192), 1, + sym_yield, + STATE(194), 1, sym_statement, - ACTIONS(168), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -5066,6 +5038,66 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3157] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_string, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_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(190), 1, + sym_statement, + STATE(192), 1, + sym_yield, + STATE(193), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3238] = 21, ACTIONS(204), 1, sym_identifier, ACTIONS(206), 1, @@ -5092,88 +5124,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(232), 1, anon_sym_match, - STATE(96), 1, + STATE(150), 1, sym_expression, - STATE(162), 1, - sym_statement, - STATE(163), 1, + STATE(151), 1, sym_yield, + STATE(200), 1, + sym_statement, ACTIONS(208), 2, sym_float, sym_integer, ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(155), 2, + STATE(163), 2, sym_while_loop, sym_break_loop, - STATE(166), 5, + STATE(168), 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, - [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, + STATE(162), 11, sym__expression_kind, sym_value, sym_math, @@ -5186,6 +5158,66 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3319] = 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(192), 1, + sym_yield, + STATE(193), 1, + sym_expression, + STATE(194), 1, + sym_statement, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__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(164), 1, sym_identifier, ACTIONS(166), 1, @@ -5212,11 +5244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(207), 1, - sym_yield, - STATE(271), 1, + STATE(217), 1, sym_expression, - STATE(397), 1, + STATE(223), 1, + sym_yield, + STATE(247), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -5224,76 +5256,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 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, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -5306,66 +5278,8 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3481] = 21, - ACTIONS(3), 1, + ACTIONS(164), 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(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(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, - [3562] = 21, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -5378,42 +5292,100 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + STATE(206), 1, + sym_yield, + STATE(269), 1, sym_expression, + STATE(390), 1, + sym_statement, ACTIONS(168), 2, sym_float, sym_integer, ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3562] = 21, + ACTIONS(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(124), 1, + sym_expression, + STATE(151), 1, + sym_yield, + STATE(152), 1, + sym_statement, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, sym__expression_kind, sym_value, sym_math, @@ -5426,54 +5398,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3643] = 21, - ACTIONS(3), 1, + ACTIONS(234), 1, sym_identifier, - ACTIONS(7), 1, + ACTIONS(237), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(243), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(249), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(252), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(255), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(258), 1, + anon_sym_RBRACE, + ACTIONS(260), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(263), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(266), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(269), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(272), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(275), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(278), 1, anon_sym_match, - STATE(189), 1, + STATE(48), 1, + aux_sym_function_call_repeat1, + STATE(198), 1, sym_expression, - STATE(207), 1, - sym_yield, - STATE(218), 1, - sym_statement, - ACTIONS(9), 2, + ACTIONS(240), 2, sym_float, sym_integer, - ACTIONS(13), 2, + ACTIONS(246), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -5486,6 +5458,66 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [3724] = 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(206), 1, + sym_yield, + STATE(269), 1, + sym_expression, + STATE(400), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [3805] = 21, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -5512,11 +5544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - ACTIONS(250), 1, - anon_sym_GT, - STATE(36), 1, + ACTIONS(281), 1, + anon_sym_RBRACE, + STATE(51), 1, aux_sym_function_call_repeat1, - STATE(199), 1, + STATE(198), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -5524,76 +5556,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 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, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -5606,68 +5578,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -5680,40 +5590,102 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + anon_sym_select, + ACTIONS(200), 1, + anon_sym_insert, + ACTIONS(202), 1, + anon_sym_if, + ACTIONS(283), 1, + anon_sym_RBRACE, + STATE(48), 1, + aux_sym_function_call_repeat1, + STATE(198), 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, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, + sym__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(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(124), 1, + sym_expression, + STATE(141), 1, + sym_statement, + STATE(151), 1, + sym_yield, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, sym__expression_kind, sym_value, sym_math, @@ -5752,11 +5724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(215), 1, + STATE(217), 1, sym_expression, - STATE(240), 1, + STATE(223), 1, sym_yield, - STATE(250), 1, + STATE(266), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -5764,16 +5736,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -5786,54 +5758,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [4129] = 21, - 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(180), 1, + ACTIONS(21), 1, anon_sym_table, - 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, - ACTIONS(238), 1, + ACTIONS(194), 1, sym_identifier, - ACTIONS(242), 1, + ACTIONS(198), 1, anon_sym_select, - ACTIONS(244), 1, + ACTIONS(200), 1, anon_sym_insert, - ACTIONS(246), 1, + ACTIONS(202), 1, anon_sym_if, - ACTIONS(252), 1, + ACTIONS(285), 1, anon_sym_RBRACE, - STATE(60), 1, - aux_sym_match_repeat1, - STATE(273), 1, + STATE(48), 1, + aux_sym_function_call_repeat1, + STATE(198), 1, sym_expression, - ACTIONS(168), 2, + ACTIONS(9), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -5846,54 +5818,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [4210] = 21, - ACTIONS(254), 1, + ACTIONS(204), 1, sym_identifier, - ACTIONS(257), 1, + ACTIONS(206), 1, anon_sym_LPAREN, - ACTIONS(263), 1, + ACTIONS(210), 1, sym_string, - ACTIONS(269), 1, + ACTIONS(214), 1, anon_sym_LBRACK, - ACTIONS(272), 1, + ACTIONS(216), 1, anon_sym_function, - ACTIONS(275), 1, - anon_sym_GT, - ACTIONS(277), 1, + ACTIONS(218), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(220), 1, anon_sym_table, - ACTIONS(283), 1, + ACTIONS(222), 1, anon_sym_select, - ACTIONS(286), 1, + ACTIONS(224), 1, anon_sym_insert, - ACTIONS(289), 1, + ACTIONS(226), 1, anon_sym_if, - ACTIONS(292), 1, + ACTIONS(228), 1, anon_sym_while, - ACTIONS(295), 1, + ACTIONS(230), 1, anon_sym_loop, - ACTIONS(298), 1, + ACTIONS(232), 1, anon_sym_match, - STATE(55), 1, - aux_sym_function_call_repeat1, - STATE(199), 1, + STATE(124), 1, sym_expression, - ACTIONS(260), 2, + STATE(147), 1, + sym_statement, + STATE(151), 1, + sym_yield, + ACTIONS(208), 2, sym_float, sym_integer, - ACTIONS(266), 2, + ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(163), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(168), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(162), 11, sym__expression_kind, sym_value, sym_math, @@ -5932,11 +5904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(207), 1, + STATE(206), 1, sym_yield, - STATE(271), 1, + STATE(269), 1, sym_expression, - STATE(377), 1, + STATE(418), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -5944,16 +5916,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -5992,28 +5964,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(232), 1, anon_sym_match, - STATE(96), 1, + STATE(124), 1, sym_expression, - STATE(149), 1, - sym_statement, - STATE(163), 1, + STATE(151), 1, sym_yield, + STATE(161), 1, + sym_statement, ACTIONS(208), 2, sym_float, sym_integer, ACTIONS(212), 2, anon_sym_true, anon_sym_false, - STATE(155), 2, + STATE(163), 2, sym_while_loop, sym_break_loop, - STATE(166), 5, + STATE(168), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(162), 11, sym__expression_kind, sym_value, sym_math, @@ -6052,11 +6024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(207), 1, + STATE(206), 1, sym_yield, - STATE(271), 1, + STATE(269), 1, sym_expression, - STATE(378), 1, + STATE(408), 1, sym_statement, ACTIONS(168), 2, sym_float, @@ -6064,16 +6036,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -6086,54 +6058,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [4534] = 21, - ACTIONS(164), 1, + ACTIONS(287), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(290), 1, anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(296), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(302), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(305), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(308), 1, anon_sym_LBRACE, - ACTIONS(180), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(313), 1, anon_sym_table, - ACTIONS(182), 1, + ACTIONS(316), 1, anon_sym_select, - ACTIONS(184), 1, + ACTIONS(319), 1, anon_sym_insert, - ACTIONS(186), 1, + ACTIONS(322), 1, anon_sym_if, - ACTIONS(188), 1, + ACTIONS(325), 1, anon_sym_while, - ACTIONS(190), 1, + ACTIONS(328), 1, anon_sym_loop, - ACTIONS(192), 1, + ACTIONS(331), 1, anon_sym_match, - STATE(215), 1, + STATE(59), 1, + aux_sym_match_repeat1, + STATE(278), 1, sym_expression, - STATE(238), 1, - sym_statement, - STATE(240), 1, - sym_yield, - ACTIONS(168), 2, + ACTIONS(293), 2, sym_float, sym_integer, - ACTIONS(172), 2, + ACTIONS(299), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -6146,54 +6118,54 @@ static const uint16_t ts_small_parse_table[] = { sym_loop, sym_match, [4615] = 21, - ACTIONS(301), 1, - sym_identifier, - ACTIONS(304), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(310), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(316), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(319), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(322), 1, + ACTIONS(178), 1, anon_sym_LBRACE, - ACTIONS(325), 1, - anon_sym_RBRACE, - ACTIONS(327), 1, + ACTIONS(180), 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, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(342), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(345), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(60), 1, + ACTIONS(334), 1, + sym_identifier, + ACTIONS(336), 1, + anon_sym_RBRACE, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(59), 1, aux_sym_match_repeat1, - STATE(273), 1, + STATE(278), 1, sym_expression, - ACTIONS(307), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(313), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -6206,1212 +6178,6 @@ static const uint16_t ts_small_parse_table[] = { 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(360), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(352), 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_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 19, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_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_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [5231] = 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(156), 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, - [5312] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_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(47), 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, - [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, - anon_sym_LPAREN, - sym_string, - 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(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, - 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, - [5642] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_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(123), 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, - [5717] = 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(270), 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, - [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, - 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(208), 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, - [5973] = 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(276), 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, - [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, - 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(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, @@ -7440,22 +6206,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, STATE(138), 1, sym_expression, + STATE(206), 1, + sym_yield, + STATE(216), 1, + sym_statement, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -7467,7 +6237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [6348] = 19, + [4777] = 21, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -7494,24 +6264,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(185), 1, + STATE(131), 1, sym_expression, + STATE(190), 1, + sym_statement, + STATE(192), 1, + sym_yield, ACTIONS(9), 2, sym_float, sym_integer, ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -7523,287 +6297,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [4858] = 21, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -7830,24 +6324,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(212), 1, + STATE(217), 1, sym_expression, + STATE(223), 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, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -7859,63 +6357,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [4939] = 21, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -7934,285 +6376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(238), 1, + ACTIONS(334), 1, sym_identifier, - ACTIONS(242), 1, + ACTIONS(338), 1, anon_sym_select, - ACTIONS(244), 1, + ACTIONS(340), 1, anon_sym_insert, - ACTIONS(246), 1, + ACTIONS(342), 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, + ACTIONS(344), 1, 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, + STATE(59), 1, + aux_sym_match_repeat1, + STATE(278), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -8220,16 +6396,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -8241,287 +6417,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [5020] = 21, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8548,6 +6444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, + ACTIONS(346), 1, + anon_sym_RBRACE, + STATE(66), 1, + aux_sym_function_call_repeat1, STATE(198), 1, sym_expression, ACTIONS(9), 2, @@ -8556,16 +6456,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -8577,160 +6477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [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, - 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, - [7873] = 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(104), 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, - [7948] = 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(279), 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, - [8023] = 19, + [5101] = 21, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8757,7 +6504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, ACTIONS(202), 1, anon_sym_if, - STATE(200), 1, + ACTIONS(348), 1, + anon_sym_RBRACE, + STATE(48), 1, + aux_sym_function_call_repeat1, + STATE(198), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -8765,16 +6516,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -8786,7 +6537,353 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8098] = 19, + [5182] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + ACTIONS(350), 1, + anon_sym_RBRACE, + STATE(59), 1, + aux_sym_match_repeat1, + STATE(278), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5263] = 20, + ACTIONS(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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(60), 1, + aux_sym_match_repeat1, + STATE(278), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5341] = 20, + ACTIONS(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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(64), 1, + aux_sym_match_repeat1, + STATE(278), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5419] = 20, + ACTIONS(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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(67), 1, + aux_sym_match_repeat1, + STATE(278), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5497] = 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(207), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5572] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(270), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5647] = 19, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -8821,16 +6918,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -8842,9 +6939,175 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8173] = 19, - ACTIONS(164), 1, + [5722] = 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(118), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5797] = 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(127), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5872] = 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(120), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [5947] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -8857,19 +7120,21 @@ static const uint16_t ts_small_parse_table[] = { 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(214), 1, + ACTIONS(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(279), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -8877,16 +7142,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -8898,7 +7163,232 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8248] = 19, + [6022] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6097] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(153), 1, + sym_logic, + STATE(282), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 10, + sym__expression_kind, + sym_value, + sym_math, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6174] = 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(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6249] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(280), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6324] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -8933,16 +7423,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -8954,51 +7444,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8323] = 19, - ACTIONS(204), 1, + [6399] = 19, + ACTIONS(164), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(166), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(170), 1, sym_string, - ACTIONS(214), 1, + ACTIONS(174), 1, anon_sym_LBRACK, - ACTIONS(216), 1, + ACTIONS(176), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(178), 1, anon_sym_LBRACE, - ACTIONS(220), 1, + ACTIONS(180), 1, anon_sym_table, - ACTIONS(222), 1, + ACTIONS(182), 1, anon_sym_select, - ACTIONS(224), 1, + ACTIONS(184), 1, anon_sym_insert, - ACTIONS(226), 1, + ACTIONS(186), 1, anon_sym_if, - ACTIONS(228), 1, + ACTIONS(188), 1, anon_sym_while, - ACTIONS(230), 1, + ACTIONS(190), 1, anon_sym_loop, - ACTIONS(232), 1, + ACTIONS(192), 1, anon_sym_match, - STATE(121), 1, + STATE(214), 1, sym_expression, - ACTIONS(208), 2, + ACTIONS(168), 2, sym_float, sym_integer, - ACTIONS(212), 2, + ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(155), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(166), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -9010,7 +7500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8398] = 19, + [6474] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -9029,15 +7519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(238), 1, + ACTIONS(334), 1, sym_identifier, - ACTIONS(242), 1, + ACTIONS(338), 1, anon_sym_select, - ACTIONS(244), 1, + ACTIONS(340), 1, anon_sym_insert, - ACTIONS(246), 1, + ACTIONS(342), 1, anon_sym_if, - STATE(280), 1, + STATE(281), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9045,16 +7535,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -9066,7 +7556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8473] = 19, + [6549] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(7), 1, @@ -9093,7 +7583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(33), 1, anon_sym_match, - STATE(125), 1, + STATE(166), 1, sym_expression, ACTIONS(9), 2, sym_float, @@ -9101,16 +7591,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(182), 2, + STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(190), 5, + STATE(181), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(184), 11, + STATE(186), 11, sym__expression_kind, sym_value, sym_math, @@ -9122,7 +7612,175 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8548] = 19, + [6624] = 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(197), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6699] = 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(129), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6774] = 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(208), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [6849] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -9157,16 +7815,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -9178,119 +7836,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [6924] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -9317,7 +7863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(272), 1, + STATE(215), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9325,16 +7871,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -9346,7 +7892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8848] = 19, + [6999] = 19, ACTIONS(166), 1, anon_sym_LPAREN, ACTIONS(170), 1, @@ -9365,13 +7911,575 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - ACTIONS(238), 1, + ACTIONS(334), 1, sym_identifier, - ACTIONS(242), 1, + ACTIONS(338), 1, anon_sym_select, - ACTIONS(244), 1, + ACTIONS(340), 1, anon_sym_insert, - ACTIONS(246), 1, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7074] = 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(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7149] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(252), 1, + sym_logic, + STATE(285), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 10, + sym__expression_kind, + sym_value, + sym_math, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7226] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(255), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7301] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(272), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7376] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(271), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7451] = 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(135), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7526] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(177), 1, + sym_logic, + STATE(286), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 10, + sym__expression_kind, + sym_value, + sym_math, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7603] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__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(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(139), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7753] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, anon_sym_if, STATE(285), 1, sym_expression, @@ -9381,16 +8489,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(298), 11, + STATE(291), 11, sym__expression_kind, sym_value, sym_math, @@ -9402,265 +8510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [8923] = 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(278), 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, - [8998] = 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(283), 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, - [9073] = 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(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), 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, - [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(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(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), 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, - [9254] = 19, + [7828] = 19, ACTIONS(164), 1, sym_identifier, ACTIONS(166), 1, @@ -9687,7 +8537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, ACTIONS(192), 1, anon_sym_match, - STATE(210), 1, + STATE(268), 1, sym_expression, ACTIONS(168), 2, sym_float, @@ -9695,16 +8545,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(172), 2, anon_sym_true, anon_sym_false, - STATE(230), 2, + STATE(226), 2, sym_while_loop, sym_break_loop, - STATE(234), 5, + STATE(239), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(231), 11, + STATE(225), 11, sym__expression_kind, sym_value, sym_math, @@ -9716,22 +8566,862 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_loop, sym_match, - [9329] = 5, - STATE(81), 1, - sym_logic_operator, - STATE(82), 1, + [7903] = 19, + ACTIONS(166), 1, + anon_sym_LPAREN, + ACTIONS(170), 1, + sym_string, + ACTIONS(174), 1, + anon_sym_LBRACK, + ACTIONS(176), 1, + anon_sym_function, + ACTIONS(178), 1, + anon_sym_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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [7978] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(252), 1, + sym_logic, + STATE(283), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 10, + sym__expression_kind, + sym_value, + sym_math, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8055] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(177), 1, + sym_logic, + STATE(284), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 10, + sym__expression_kind, + sym_value, + sym_math, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8132] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 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, + [8207] = 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(125), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8282] = 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(132), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8357] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8432] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(289), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8507] = 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(134), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8582] = 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(126), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8657] = 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(122), 1, + sym_expression, + ACTIONS(208), 2, + sym_float, + sym_integer, + ACTIONS(212), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_while_loop, + sym_break_loop, + STATE(168), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(162), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8732] = 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(121), 1, + sym_expression, + ACTIONS(9), 2, + sym_float, + sym_integer, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(181), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(186), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8807] = 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(265), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8882] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 1, + anon_sym_if, + STATE(258), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_integer, + ACTIONS(172), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [8957] = 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(334), 1, + sym_identifier, + ACTIONS(338), 1, + anon_sym_select, + ACTIONS(340), 1, + anon_sym_insert, + ACTIONS(342), 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(226), 2, + sym_while_loop, + sym_break_loop, + STATE(239), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(225), 11, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_function_call, + sym_loop, + sym_match, + [9032] = 5, + STATE(75), 1, sym_math_operator, - STATE(144), 1, + STATE(76), 1, + sym_logic_operator, + STATE(130), 1, aux_sym_yield_repeat1, - ACTIONS(368), 16, + ACTIONS(352), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -9740,201 +9430,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [9451] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_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(259), 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, - [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), 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(408), 18, + ACTIONS(354), 18, sym_identifier, sym_float, sym_integer, @@ -9953,18 +9449,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9620] = 3, - ACTIONS(416), 1, - anon_sym_where, - ACTIONS(412), 16, + [9078] = 5, + ACTIONS(360), 1, + anon_sym_LBRACE, + ACTIONS(362), 1, + anon_sym_EQ, + ACTIONS(364), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(356), 12, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(358), 19, + 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_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9124] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(75), 1, + sym_math_operator, + STATE(76), 1, + sym_logic_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(366), 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(368), 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, + [9175] = 10, + ACTIONS(372), 1, + anon_sym_DASH, + ACTIONS(378), 1, + anon_sym_DASH_GT, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + STATE(203), 1, + aux_sym_yield_repeat1, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(352), 7, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(354), 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, + [9230] = 4, + STATE(75), 1, + sym_math_operator, + STATE(76), 1, + sym_logic_operator, + ACTIONS(380), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 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, + [9273] = 5, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(386), 1, + anon_sym_EQ, + ACTIONS(388), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(356), 12, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(358), 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, + [9318] = 9, + ACTIONS(372), 1, + anon_sym_DASH, + ACTIONS(394), 1, + anon_sym_DASH_GT, + STATE(75), 1, + sym_math_operator, + STATE(76), 1, + sym_logic_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(390), 7, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(392), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9371] = 5, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + STATE(146), 1, + aux_sym_yield_repeat1, + ACTIONS(352), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(354), 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, + [9416] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(75), 1, + sym_math_operator, + STATE(76), 1, + sym_logic_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(396), 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(398), 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, + [9467] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(75), 1, + sym_math_operator, + STATE(76), 1, + sym_logic_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(400), 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(402), 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, + [9518] = 3, + ACTIONS(408), 1, + anon_sym_where, + ACTIONS(404), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(406), 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, + [9558] = 6, + ACTIONS(410), 1, + anon_sym_DASH_GT, + STATE(75), 1, + sym_math_operator, + STATE(76), 1, + sym_logic_operator, + STATE(176), 1, + aux_sym_yield_repeat1, + ACTIONS(352), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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(354), 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, + [9604] = 3, + STATE(133), 1, + aux_sym_yield_repeat1, + ACTIONS(412), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -9992,37 +9941,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9662] = 8, - ACTIONS(378), 1, + [9644] = 9, + ACTIONS(372), 1, anon_sym_DASH, - STATE(81), 1, + ACTIONS(416), 1, + anon_sym_DASH_GT, + STATE(108), 1, sym_logic_operator, - STATE(82), 1, + STATE(111), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(374), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(376), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(384), 10, + ACTIONS(390), 7, 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, + ACTIONS(392), 13, sym_identifier, sym_float, sym_integer, @@ -10036,19 +9984,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9714] = 4, + [9696] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(366), 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(368), 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, + [9746] = 4, ACTIONS(418), 1, anon_sym_DASH_GT, - STATE(132), 1, + STATE(133), 1, aux_sym_yield_repeat1, - ACTIONS(394), 15, + ACTIONS(380), 13, 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, @@ -10057,7 +10045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(396), 18, + ACTIONS(382), 18, sym_identifier, sym_float, sym_integer, @@ -10076,18 +10064,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [9758] = 3, - STATE(132), 1, - aux_sym_yield_repeat1, - ACTIONS(421), 16, + [9788] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(400), 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(402), 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, + [9838] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(396), 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(398), 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, + [9888] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(380), 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(382), 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, + [9938] = 3, + ACTIONS(425), 1, + anon_sym_where, + ACTIONS(421), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10115,203 +10227,28 @@ static const uint16_t ts_small_parse_table[] = { 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, + [9978] = 9, + ACTIONS(372), 1, anon_sym_DASH, ACTIONS(427), 1, anon_sym_DASH_GT, - STATE(81), 1, + STATE(108), 1, sym_logic_operator, - STATE(82), 1, + STATE(111), 1, sym_math_operator, - STATE(205), 1, - aux_sym_yield_repeat1, - ACTIONS(380), 2, + ACTIONS(374), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(376), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(368), 7, + ACTIONS(390), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, @@ -10319,7 +10256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(370), 13, + ACTIONS(392), 13, sym_identifier, sym_float, sym_integer, @@ -10333,16 +10270,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10057] = 2, - ACTIONS(429), 16, + [10030] = 4, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + ACTIONS(380), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(382), 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, + [10072] = 2, + ACTIONS(429), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10365,21 +10338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_select, anon_sym_insert, - anon_sym_into, anon_sym_if, + anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [10096] = 2, - ACTIONS(433), 16, + [10109] = 2, + ACTIONS(433), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10407,16 +10378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10135] = 2, - ACTIONS(437), 16, + [10146] = 2, + ACTIONS(437), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10444,16 +10413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10174] = 2, - ACTIONS(441), 16, + [10183] = 2, + ACTIONS(441), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10481,16 +10448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10213] = 2, - ACTIONS(445), 16, + [10220] = 3, + ACTIONS(445), 1, + anon_sym_where, + ACTIONS(404), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10499,7 +10466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(447), 18, + ACTIONS(406), 17, sym_identifier, sym_float, sym_integer, @@ -10514,22 +10481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_insert, anon_sym_if, - anon_sym_else, anon_sym_while, anon_sym_loop, anon_sym_match, - [10252] = 3, - STATE(151), 1, - aux_sym_yield_repeat1, - ACTIONS(421), 16, + [10259] = 3, + ACTIONS(447), 1, + anon_sym_where, + ACTIONS(421), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10556,16 +10520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10293] = 2, - ACTIONS(449), 16, + [10298] = 3, + STATE(149), 1, + aux_sym_yield_repeat1, + ACTIONS(412), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10574,7 +10538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(451), 18, + ACTIONS(414), 17, sym_identifier, sym_float, sym_integer, @@ -10589,33 +10553,176 @@ 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, - [10332] = 6, + [10337] = 3, ACTIONS(453), 1, + anon_sym_else, + ACTIONS(449), 14, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(85), 1, - sym_logic_operator, - STATE(86), 1, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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, + [10376] = 2, + ACTIONS(441), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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_into, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10413] = 4, + ACTIONS(455), 1, + anon_sym_DASH_GT, + STATE(149), 1, + aux_sym_yield_repeat1, + ACTIONS(380), 13, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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(382), 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, + [10454] = 9, + ACTIONS(372), 1, + anon_sym_DASH, + ACTIONS(458), 1, + anon_sym_DASH_GT, + STATE(75), 1, sym_math_operator, - STATE(193), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 12, + STATE(76), 1, + sym_logic_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(390), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(392), 14, + sym_identifier, + sym_float, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [10505] = 2, + ACTIONS(390), 14, + 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, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(370), 18, + ACTIONS(392), 18, sym_identifier, sym_float, sym_integer, @@ -10634,16 +10741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10379] = 2, - ACTIONS(455), 16, + [10542] = 2, + ACTIONS(460), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10652,7 +10757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(457), 18, + ACTIONS(462), 18, sym_identifier, sym_float, sym_integer, @@ -10671,16 +10776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10418] = 2, - ACTIONS(459), 16, + [10579] = 2, + ACTIONS(464), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10689,7 +10792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(461), 18, + ACTIONS(466), 18, sym_identifier, sym_float, sym_integer, @@ -10708,18 +10811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10457] = 3, - ACTIONS(467), 1, - anon_sym_else, - ACTIONS(463), 16, + [10616] = 2, + ACTIONS(468), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10728,43 +10827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(465), 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, - [10498] = 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), 18, + ACTIONS(470), 18, sym_identifier, sym_float, sym_integer, @@ -10783,19 +10846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10537] = 4, - ACTIONS(473), 1, - anon_sym_DASH_GT, - STATE(151), 1, - aux_sym_yield_repeat1, - ACTIONS(394), 15, + [10653] = 2, + ACTIONS(472), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10804,7 +10862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(396), 17, + ACTIONS(474), 18, sym_identifier, sym_float, sym_integer, @@ -10819,19 +10877,18 @@ 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, - [10580] = 2, - ACTIONS(476), 16, + [10690] = 2, + ACTIONS(476), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10859,16 +10916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10619] = 2, - ACTIONS(480), 16, + [10727] = 2, + ACTIONS(480), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10896,16 +10951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10658] = 2, - ACTIONS(484), 16, + [10764] = 2, + ACTIONS(484), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10933,16 +10986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10697] = 2, - ACTIONS(488), 16, + [10801] = 2, + ACTIONS(488), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -10970,94 +11021,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10736] = 3, - ACTIONS(492), 1, + [10838] = 2, + ACTIONS(492), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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(494), 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, - 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, - 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, - [10777] = 3, - ACTIONS(494), 1, - anon_sym_where, - ACTIONS(406), 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(408), 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, - [10818] = 3, + [10875] = 3, ACTIONS(496), 1, - anon_sym_where, - ACTIONS(412), 16, + anon_sym_else, + ACTIONS(449), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11066,7 +11074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(414), 17, + ACTIONS(451), 17, sym_identifier, sym_float, sym_integer, @@ -11084,16 +11092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10859] = 2, - ACTIONS(498), 16, + [10914] = 2, + ACTIONS(498), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11121,16 +11127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10898] = 2, - ACTIONS(502), 16, + [10951] = 2, + ACTIONS(502), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11158,16 +11162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10937] = 2, - ACTIONS(506), 16, + [10988] = 2, + ACTIONS(506), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11195,16 +11197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [10976] = 2, - ACTIONS(510), 16, + [11025] = 2, + ACTIONS(510), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11232,16 +11232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11015] = 2, - ACTIONS(388), 16, - ts_builtin_sym_end, - anon_sym_POUND, + [11062] = 6, + ACTIONS(514), 1, anon_sym_DASH_GT, + STATE(108), 1, + sym_logic_operator, + STATE(111), 1, + sym_math_operator, + STATE(199), 1, + aux_sym_yield_repeat1, + ACTIONS(352), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11250,7 +11253,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(390), 18, + ACTIONS(354), 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, + [11107] = 2, + ACTIONS(516), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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(518), 18, sym_identifier, sym_float, sym_integer, @@ -11269,16 +11306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11054] = 2, - ACTIONS(429), 16, + [11144] = 2, + ACTIONS(520), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11287,7 +11322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(431), 18, + ACTIONS(522), 18, sym_identifier, sym_float, sym_integer, @@ -11306,16 +11341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11093] = 2, - ACTIONS(514), 16, + [11181] = 2, + ACTIONS(524), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11324,7 +11357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(516), 18, + ACTIONS(526), 18, sym_identifier, sym_float, sym_integer, @@ -11343,16 +11376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11132] = 2, - ACTIONS(518), 16, + [11218] = 2, + ACTIONS(528), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11361,7 +11392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(520), 18, + ACTIONS(530), 18, sym_identifier, sym_float, sym_integer, @@ -11380,16 +11411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11171] = 2, - ACTIONS(522), 16, + [11255] = 2, + ACTIONS(429), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11398,44 +11427,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(431), 17, sym_identifier, sym_float, sym_integer, @@ -11453,52 +11445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11248] = 2, - ACTIONS(455), 16, + [11291] = 2, + ACTIONS(510), 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_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, @@ -11525,35 +11479,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11324] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(526), 1, + [11327] = 2, + ACTIONS(472), 14, + ts_builtin_sym_end, + anon_sym_POUND, 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_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(474), 17, sym_identifier, sym_float, sym_integer, @@ -11561,6 +11503,116 @@ static const uint16_t ts_small_parse_table[] = { 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, + [11363] = 2, + ACTIONS(437), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + 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, + [11399] = 5, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(532), 1, + anon_sym_EQ, + ACTIONS(534), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(356), 9, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(358), 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, + [11441] = 4, + ACTIONS(410), 1, + anon_sym_DASH_GT, + STATE(133), 1, + aux_sym_yield_repeat1, + ACTIONS(412), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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(414), 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, @@ -11568,16 +11620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11376] = 2, - ACTIONS(469), 16, + [11481] = 2, + ACTIONS(464), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -11586,7 +11636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(471), 17, + ACTIONS(466), 17, sym_identifier, sym_float, sym_integer, @@ -11604,130 +11654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11414] = 2, - ACTIONS(388), 16, + [11517] = 2, + ACTIONS(502), 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_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, @@ -11754,196 +11688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11578] = 2, - ACTIONS(449), 16, + [11553] = 2, + ACTIONS(488), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_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, @@ -11970,55 +11722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11806] = 5, - ACTIONS(362), 1, - anon_sym_LT, - ACTIONS(528), 1, - anon_sym_EQ, - ACTIONS(530), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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(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, - [11850] = 2, - ACTIONS(484), 16, + [11589] = 2, + ACTIONS(484), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -12045,56 +11756,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [11625] = 2, + ACTIONS(520), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -12103,7 +11772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(478), 17, + ACTIONS(522), 17, sym_identifier, sym_float, sym_integer, @@ -12121,16 +11790,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [11972] = 2, - ACTIONS(498), 16, + [11661] = 2, + ACTIONS(524), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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(526), 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, + [11697] = 2, + ACTIONS(528), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(530), 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, + [11733] = 2, + ACTIONS(516), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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(518), 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, + [11769] = 2, + ACTIONS(492), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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(494), 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, + [11805] = 2, + ACTIONS(498), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -12157,16 +11960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12010] = 2, - ACTIONS(522), 16, + [11841] = 2, + ACTIONS(476), 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_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, @@ -12175,7 +11976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(524), 17, + ACTIONS(478), 17, sym_identifier, sym_float, sym_integer, @@ -12193,36 +11994,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12048] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(534), 1, + [11877] = 2, + ACTIONS(468), 14, + ts_builtin_sym_end, + anon_sym_POUND, anon_sym_DASH_GT, - STATE(81), 1, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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(470), 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, + [11913] = 2, + ACTIONS(480), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + [11949] = 2, + ACTIONS(460), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(462), 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, + [11985] = 2, + ACTIONS(506), 14, + 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, + 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, + [12021] = 2, + ACTIONS(390), 14, + 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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(392), 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, + [12057] = 9, + ACTIONS(372), 1, + anon_sym_DASH, + ACTIONS(536), 1, + anon_sym_DASH_GT, + STATE(108), 1, sym_logic_operator, - STATE(82), 1, + STATE(111), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(374), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(376), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(388), 7, - ts_builtin_sym_end, - anon_sym_POUND, + ACTIONS(390), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(390), 13, + ACTIONS(392), 13, sym_identifier, sym_float, sym_integer, @@ -12236,52 +12205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12100] = 2, - ACTIONS(518), 16, + [12107] = 2, + ACTIONS(433), 14, ts_builtin_sym_end, anon_sym_POUND, anon_sym_DASH_GT, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_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, @@ -12308,25 +12239,32 @@ static const uint16_t ts_small_parse_table[] = { 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, + [12143] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(73), 1, + sym_logic_operator, + STATE(86), 1, + sym_math_operator, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(396), 5, 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, + ACTIONS(398), 13, sym_identifier, sym_float, sym_integer, @@ -12334,82 +12272,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12214] = 4, - ACTIONS(453), 1, - anon_sym_DASH_GT, - STATE(132), 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), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, + [12190] = 8, + ACTIONS(372), 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_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12255] = 9, - ACTIONS(378), 1, - anon_sym_DASH, - ACTIONS(536), 1, - anon_sym_DASH_GT, - STATE(81), 1, + STATE(73), 1, sym_logic_operator, - STATE(82), 1, + STATE(86), 1, sym_math_operator, - ACTIONS(380), 2, + ACTIONS(374), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(376), 3, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(376), 4, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(388), 6, + ACTIONS(366), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LBRACE, - ACTIONS(390), 13, + anon_sym_RBRACE, + ACTIONS(368), 13, sym_identifier, sym_float, sym_integer, @@ -12423,179 +12317,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12306] = 8, - ACTIONS(378), 1, + [12237] = 8, + ACTIONS(372), 1, anon_sym_DASH, - STATE(100), 1, - sym_math_operator, - STATE(103), 1, + STATE(73), 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, + STATE(86), 1, sym_math_operator, - STATE(103), 1, + ACTIONS(374), 2, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + ACTIONS(376), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(400), 5, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(402), 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, + [12284] = 8, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(73), 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, + STATE(86), 1, sym_math_operator, - STATE(103), 1, - sym_logic_operator, - ACTIONS(380), 2, + ACTIONS(374), 2, anon_sym_EQ_EQ, anon_sym_AMP_AMP, - ACTIONS(382), 3, + ACTIONS(376), 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(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, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -12604,8 +12379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_GT, anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(538), 13, sym_identifier, sym_float, @@ -12620,90 +12395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12540] = 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(398), 6, + [12331] = 4, + ACTIONS(514), 1, + anon_sym_DASH_GT, + STATE(149), 1, + aux_sym_yield_repeat1, + ACTIONS(412), 11, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - 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, - [12588] = 3, - ACTIONS(544), 1, - anon_sym_where, - 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(408), 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, - [12625] = 3, - ACTIONS(546), 1, - 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_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -12728,23 +12430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12662] = 3, - ACTIONS(548), 1, + [12370] = 3, + ACTIONS(542), 1, anon_sym_else, - ACTIONS(463), 12, + ACTIONS(449), 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(465), 17, + ACTIONS(451), 17, sym_identifier, sym_float, sym_integer, @@ -12762,12 +12463,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12699] = 4, - ACTIONS(550), 1, + [12406] = 3, + ACTIONS(544), 1, + anon_sym_where, + ACTIONS(421), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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, + [12442] = 3, + ACTIONS(546), 1, + anon_sym_where, + ACTIONS(404), 11, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + 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(406), 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, + [12478] = 4, + ACTIONS(378), 1, anon_sym_DASH_GT, STATE(204), 1, aux_sym_yield_repeat1, - ACTIONS(394), 7, + ACTIONS(412), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, @@ -12775,7 +12542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(396), 13, + ACTIONS(414), 13, sym_identifier, sym_float, sym_integer, @@ -12789,12 +12556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12730] = 4, - ACTIONS(427), 1, + [12509] = 4, + ACTIONS(548), 1, anon_sym_DASH_GT, STATE(204), 1, aux_sym_yield_repeat1, - ACTIONS(421), 7, + ACTIONS(380), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, @@ -12802,7 +12569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(423), 13, + ACTIONS(382), 13, sym_identifier, sym_float, sym_integer, @@ -12816,21 +12583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12761] = 5, + [12540] = 5, + ACTIONS(551), 1, + anon_sym_LBRACE, ACTIONS(553), 1, - anon_sym_LT, - ACTIONS(555), 1, anon_sym_EQ, - ACTIONS(354), 2, + ACTIONS(358), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(557), 2, + ACTIONS(555), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(352), 15, + ACTIONS(356), 14, anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, @@ -12843,8 +12609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12793] = 2, - ACTIONS(388), 7, + [12571] = 2, + ACTIONS(390), 7, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, @@ -12852,7 +12618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(390), 13, + ACTIONS(392), 13, sym_identifier, sym_float, sym_integer, @@ -12866,16 +12632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [12818] = 5, - ACTIONS(370), 1, + [12596] = 5, + ACTIONS(354), 1, anon_sym_DASH, - STATE(109), 1, + STATE(82), 1, sym_math_operator, - STATE(110), 1, + STATE(83), 1, sym_logic_operator, - STATE(219), 1, + STATE(221), 1, aux_sym_yield_repeat1, - ACTIONS(368), 16, + ACTIONS(352), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12892,92 +12658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [12849] = 6, - ACTIONS(370), 1, + [12627] = 4, + ACTIONS(382), 1, anon_sym_DASH, - ACTIONS(559), 1, - anon_sym_DASH_GT, - STATE(109), 1, + STATE(82), 1, sym_math_operator, - STATE(110), 1, + STATE(83), 1, sym_logic_operator, - STATE(256), 1, - aux_sym_yield_repeat1, - ACTIONS(368), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12881] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, - sym_logic_operator, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(402), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12913] = 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(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, + ACTIONS(380), 16, anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, @@ -12994,94 +12682,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [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, + [12655] = 2, + ACTIONS(557), 6, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, 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, + ACTIONS(559), 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, + [12679] = 7, + ACTIONS(372), 1, anon_sym_DASH, ACTIONS(561), 1, anon_sym_DASH_GT, - STATE(109), 1, + STATE(82), 1, sym_math_operator, - STATE(110), 1, + STATE(83), 1, sym_logic_operator, - ACTIONS(376), 4, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - ACTIONS(388), 6, + ACTIONS(390), 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, + [12713] = 6, + ACTIONS(354), 1, + anon_sym_DASH, + ACTIONS(563), 1, + anon_sym_DASH_GT, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + STATE(253), 1, + aux_sym_yield_repeat1, + ACTIONS(352), 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, + [12745] = 2, + ACTIONS(565), 6, ts_builtin_sym_end, anon_sym_POUND, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(565), 13, + ACTIONS(567), 13, sym_identifier, sym_float, sym_integer, @@ -13095,14 +12779,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13095] = 2, - ACTIONS(567), 6, - ts_builtin_sym_end, - anon_sym_POUND, + [12769] = 6, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(400), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12801] = 6, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(366), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12833] = 6, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(396), 7, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12865] = 2, + ACTIONS(571), 5, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(569), 13, sym_identifier, sym_float, @@ -13117,32 +12878,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13119] = 2, - ACTIONS(573), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, + [12888] = 7, + ACTIONS(372), 1, + anon_sym_DASH, + ACTIONS(573), 1, + anon_sym_DASH_GT, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(390), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [12921] = 4, + ACTIONS(382), 1, + anon_sym_DASH, + ACTIONS(575), 1, + anon_sym_DASH_GT, + STATE(218), 1, + aux_sym_yield_repeat1, + ACTIONS(380), 15, + anon_sym_RPAREN, 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, + 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, + [12948] = 3, ACTIONS(423), 1, anon_sym_DASH, - STATE(220), 1, - aux_sym_yield_repeat1, + ACTIONS(578), 1, + anon_sym_where, ACTIONS(421), 16, anon_sym_DASH_GT, anon_sym_RPAREN, @@ -13160,56 +12949,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_where, - ACTIONS(406), 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, - [13219] = 3, - ACTIONS(414), 1, + [12973] = 3, + ACTIONS(406), 1, anon_sym_DASH, ACTIONS(580), 1, anon_sym_where, + ACTIONS(404), 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, + [12998] = 3, + ACTIONS(414), 1, + anon_sym_DASH, + STATE(218), 1, + aux_sym_yield_repeat1, ACTIONS(412), 16, anon_sym_DASH_GT, anon_sym_RPAREN, @@ -13227,12 +12993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [13244] = 2, - ACTIONS(275), 5, + [13023] = 2, + ACTIONS(584), 4, anon_sym_LPAREN, sym_string, anon_sym_LBRACK, - anon_sym_GT, anon_sym_LBRACE, ACTIONS(582), 13, sym_identifier, @@ -13248,20 +13013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_loop, anon_sym_match, - [13267] = 5, - ACTIONS(553), 1, - anon_sym_LT, - ACTIONS(584), 1, - anon_sym_EQ, - ACTIONS(354), 2, - anon_sym_PLUS, + [13045] = 2, + ACTIONS(392), 1, anon_sym_DASH, - ACTIONS(586), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(352), 12, + ACTIONS(390), 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, @@ -13271,54 +13031,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_then, + anon_sym_else, anon_sym_EQ_GT, - [13296] = 7, - ACTIONS(378), 1, - anon_sym_DASH, + [13067] = 11, ACTIONS(588), 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), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13329] = 11, - ACTIONS(592), 1, sym_integer, - ACTIONS(596), 1, + ACTIONS(592), 1, anon_sym_LBRACK, + ACTIONS(594), 1, + anon_sym_RBRACK, + ACTIONS(596), 1, + anon_sym_function, ACTIONS(598), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(604), 1, anon_sym_table, - STATE(232), 1, + STATE(243), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(290), 1, sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, ACTIONS(590), 2, - sym_float, - sym_string, - ACTIONS(594), 2, anon_sym_true, anon_sym_false, STATE(299), 5, @@ -13327,613 +13062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_table, sym_map, - [13369] = 2, - ACTIONS(435), 1, - anon_sym_DASH, - ACTIONS(433), 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, - [13391] = 2, - ACTIONS(504), 1, - anon_sym_DASH, - ACTIONS(502), 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, - [13413] = 2, - ACTIONS(461), 1, - anon_sym_DASH, - ACTIONS(459), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13435] = 2, - ACTIONS(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, - 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, - [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, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_function, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(604), 1, - 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(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, - [14077] = 2, + [13107] = 2, ACTIONS(500), 1, anon_sym_DASH, ACTIONS(498), 16, @@ -13953,16 +13082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14099] = 4, - ACTIONS(423), 1, + [13129] = 2, + ACTIONS(504), 1, anon_sym_DASH, - ACTIONS(559), 1, + ACTIONS(502), 16, anon_sym_DASH_GT, - STATE(220), 1, - aux_sym_yield_repeat1, - ACTIONS(421), 14, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -13975,96 +13102,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_then, anon_sym_else, anon_sym_EQ_GT, - [14125] = 5, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, - sym_math_operator, - ACTIONS(398), 4, + [13151] = 2, + ACTIONS(439), 1, + anon_sym_DASH, + ACTIONS(437), 16, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(376), 5, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14152] = 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(254), 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, - [14189] = 5, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, - sym_math_operator, - ACTIONS(384), 4, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13173] = 2, + ACTIONS(526), 1, + anon_sym_DASH, + ACTIONS(524), 16, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(376), 5, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14216] = 10, - ACTIONS(592), 1, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13195] = 11, + ACTIONS(588), 1, sym_integer, - ACTIONS(596), 1, + ACTIONS(592), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(596), 1, anon_sym_function, - ACTIONS(602), 1, + ACTIONS(598), 1, anon_sym_LBRACE, - ACTIONS(604), 1, + ACTIONS(600), 1, anon_sym_table, - STATE(249), 1, + ACTIONS(602), 1, + anon_sym_RBRACK, + STATE(243), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(290), 1, sym_value, - ACTIONS(590), 2, + ACTIONS(586), 2, sym_float, sym_string, - ACTIONS(594), 2, + ACTIONS(590), 2, anon_sym_true, anon_sym_false, STATE(299), 5, @@ -14073,25 +13171,27 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_table, sym_map, - [14253] = 10, - ACTIONS(592), 1, + [13235] = 11, + ACTIONS(588), 1, sym_integer, - ACTIONS(596), 1, + ACTIONS(592), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(596), 1, anon_sym_function, - ACTIONS(602), 1, + ACTIONS(598), 1, anon_sym_LBRACE, - ACTIONS(604), 1, + ACTIONS(600), 1, anon_sym_table, - STATE(226), 1, + ACTIONS(604), 1, + anon_sym_RBRACK, + STATE(243), 1, aux_sym_list_repeat1, - STATE(294), 1, + STATE(290), 1, sym_value, - ACTIONS(590), 2, + ACTIONS(586), 2, sym_float, sym_string, - ACTIONS(594), 2, + ACTIONS(590), 2, anon_sym_true, anon_sym_false, STATE(299), 5, @@ -14100,112 +13200,488 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_table, sym_map, - [14290] = 5, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, - sym_math_operator, - ACTIONS(372), 4, + [13275] = 2, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(528), 16, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(376), 5, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [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, - 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(244), 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, - [14391] = 5, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, - sym_math_operator, - ACTIONS(402), 4, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13297] = 2, + ACTIONS(508), 1, + anon_sym_DASH, + ACTIONS(506), 16, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(376), 5, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14418] = 2, - ACTIONS(647), 1, - anon_sym_where, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13319] = 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, + [13341] = 11, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_table, + ACTIONS(606), 1, + anon_sym_RBRACK, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13381] = 11, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_table, + ACTIONS(608), 1, + anon_sym_RBRACK, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13421] = 2, + ACTIONS(474), 1, + anon_sym_DASH, + ACTIONS(472), 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, + [13443] = 3, + ACTIONS(451), 1, + anon_sym_DASH, + ACTIONS(610), 1, + anon_sym_else, + ACTIONS(449), 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, + [13467] = 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, + [13489] = 2, + ACTIONS(522), 1, + anon_sym_DASH, + ACTIONS(520), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13511] = 2, + ACTIONS(614), 4, + anon_sym_LPAREN, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(612), 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, + [13533] = 2, + ACTIONS(470), 1, + anon_sym_DASH, + ACTIONS(468), 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, + [13555] = 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, + [13577] = 11, + ACTIONS(619), 1, + sym_integer, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(628), 1, + anon_sym_RBRACK, + ACTIONS(630), 1, + anon_sym_function, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_table, + STATE(243), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(616), 2, + sym_float, + sym_string, + ACTIONS(622), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [13617] = 2, + ACTIONS(518), 1, + anon_sym_DASH, + ACTIONS(516), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13639] = 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, + [13661] = 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, + [13683] = 2, + ACTIONS(435), 1, + anon_sym_DASH, + ACTIONS(433), 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, + [13705] = 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, + [13727] = 2, + ACTIONS(494), 1, + anon_sym_DASH, + ACTIONS(492), 16, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + anon_sym_EQ_GT, + [13749] = 2, + ACTIONS(462), 1, + anon_sym_DASH, + ACTIONS(460), 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, + [13771] = 5, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(639), 1, + anon_sym_EQ, + ACTIONS(358), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(641), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(356), 11, + anon_sym_RPAREN, + 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, + [13799] = 2, + ACTIONS(466), 1, + anon_sym_DASH, + ACTIONS(464), 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, + [13821] = 4, + ACTIONS(414), 1, + anon_sym_DASH, + ACTIONS(563), 1, + anon_sym_DASH_GT, + STATE(218), 1, + aux_sym_yield_repeat1, ACTIONS(412), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -14215,54 +13691,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_then, + anon_sym_else, anon_sym_EQ_GT, - [14438] = 2, - ACTIONS(649), 1, - anon_sym_where, - ACTIONS(406), 14, + [13847] = 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, + [13869] = 5, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(396), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [14458] = 9, - ACTIONS(653), 1, + [13896] = 10, + ACTIONS(588), 1, sym_integer, - ACTIONS(657), 1, + ACTIONS(592), 1, anon_sym_LBRACK, - ACTIONS(659), 1, + ACTIONS(596), 1, anon_sym_function, - ACTIONS(661), 1, + ACTIONS(598), 1, anon_sym_LBRACE, - ACTIONS(663), 1, + ACTIONS(600), 1, anon_sym_table, - STATE(354), 1, + STATE(235), 1, + aux_sym_list_repeat1, + STATE(290), 1, sym_value, - ACTIONS(651), 2, + ACTIONS(586), 2, sym_float, sym_string, - ACTIONS(655), 2, + ACTIONS(590), 2, anon_sym_true, anon_sym_false, - STATE(373), 5, + STATE(299), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14492] = 2, - ACTIONS(665), 1, - anon_sym_else, - ACTIONS(463), 14, + [13933] = 5, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(366), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [13960] = 5, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(400), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_then, + anon_sym_EQ_GT, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [13987] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_table, + STATE(224), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14024] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_table, + STATE(229), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14061] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_table, + STATE(234), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14098] = 10, + ACTIONS(588), 1, + sym_integer, + ACTIONS(592), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_function, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_table, + STATE(230), 1, + aux_sym_list_repeat1, + STATE(290), 1, + sym_value, + ACTIONS(586), 2, + sym_float, + sym_string, + ACTIONS(590), 2, + anon_sym_true, + anon_sym_false, + STATE(299), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14135] = 2, + ACTIONS(643), 1, + anon_sym_where, + ACTIONS(404), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, @@ -14277,322 +13932,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_then, anon_sym_EQ_GT, - [14512] = 8, - ACTIONS(368), 1, + [14155] = 9, + ACTIONS(647), 1, + sym_integer, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(653), 1, + anon_sym_function, + ACTIONS(655), 1, + anon_sym_LBRACE, + ACTIONS(657), 1, + anon_sym_table, + STATE(354), 1, + sym_value, + ACTIONS(645), 2, + sym_float, + sym_string, + ACTIONS(649), 2, + anon_sym_true, + anon_sym_false, + STATE(366), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [14189] = 8, + ACTIONS(352), 1, anon_sym_RBRACE, - ACTIONS(378), 1, + ACTIONS(372), 1, anon_sym_DASH, - ACTIONS(667), 1, + ACTIONS(659), 1, anon_sym_DASH_GT, - STATE(109), 1, + STATE(82), 1, sym_math_operator, - STATE(110), 1, + STATE(83), 1, sym_logic_operator, - STATE(327), 1, + STATE(329), 1, aux_sym_yield_repeat1, - ACTIONS(376), 4, + ACTIONS(370), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14544] = 7, - ACTIONS(378), 1, + [14221] = 2, + ACTIONS(661), 1, + anon_sym_else, + ACTIONS(449), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 1, - anon_sym_RBRACE, - ACTIONS(669), 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, - [14573] = 6, - ACTIONS(378), 1, - anon_sym_DASH, - STATE(109), 1, - sym_math_operator, - STATE(110), 1, - sym_logic_operator, - ACTIONS(394), 2, - anon_sym_DASH_GT, - anon_sym_RBRACE, - ACTIONS(376), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14600] = 5, - ACTIONS(671), 1, + anon_sym_then, anon_sym_EQ_GT, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, - sym_math_operator, - ACTIONS(376), 5, + [14241] = 2, + ACTIONS(663), 1, + anon_sym_where, + ACTIONS(421), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14624] = 5, + anon_sym_then, + anon_sym_EQ_GT, + [14261] = 6, + ACTIONS(372), 1, + anon_sym_DASH, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + ACTIONS(380), 2, + anon_sym_DASH_GT, + anon_sym_RBRACE, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14288] = 7, + ACTIONS(372), 1, + anon_sym_DASH, + ACTIONS(390), 1, + anon_sym_RBRACE, + ACTIONS(665), 1, + anon_sym_DASH_GT, + STATE(82), 1, + sym_math_operator, + STATE(83), 1, + sym_logic_operator, + ACTIONS(370), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14317] = 5, + ACTIONS(667), 1, + anon_sym_LBRACE, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14341] = 5, + ACTIONS(669), 1, + anon_sym_then, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14365] = 5, + ACTIONS(671), 1, + anon_sym_LBRACE, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14389] = 5, ACTIONS(673), 1, anon_sym_then, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14648] = 5, + [14413] = 5, ACTIONS(675), 1, - anon_sym_then, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + anon_sym_LBRACE, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14672] = 5, + [14437] = 5, ACTIONS(677), 1, - anon_sym_then, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + anon_sym_LBRACE, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14696] = 5, + [14461] = 5, ACTIONS(679), 1, anon_sym_then, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14720] = 5, + [14485] = 5, ACTIONS(681), 1, - anon_sym_LBRACE, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, - sym_math_operator, - ACTIONS(376), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14744] = 5, - ACTIONS(683), 1, anon_sym_then, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14768] = 5, + [14509] = 5, + ACTIONS(683), 1, + anon_sym_EQ_GT, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14533] = 5, ACTIONS(685), 1, anon_sym_LBRACE, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14792] = 5, + [14557] = 5, ACTIONS(687), 1, - anon_sym_LBRACE, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + anon_sym_then, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14816] = 5, + [14581] = 5, ACTIONS(689), 1, anon_sym_LBRACE, - STATE(126), 1, - sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14840] = 5, - ACTIONS(691), 1, - anon_sym_LBRACE, - STATE(126), 1, + [14605] = 4, + STATE(76), 1, sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14864] = 5, - ACTIONS(693), 1, - anon_sym_LBRACE, - STATE(126), 1, + [14626] = 4, + STATE(83), 1, sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14888] = 4, - STATE(126), 1, + [14647] = 4, + STATE(73), 1, sym_logic_operator, - STATE(127), 1, + STATE(116), 1, sym_math_operator, - ACTIONS(376), 5, + ACTIONS(370), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(380), 5, + ACTIONS(374), 5, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14909] = 2, - ACTIONS(695), 1, - anon_sym_RPAREN, + [14668] = 4, + STATE(116), 1, + sym_math_operator, + STATE(117), 1, + sym_logic_operator, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14689] = 4, + STATE(108), 1, + sym_logic_operator, + STATE(116), 1, + sym_math_operator, + ACTIONS(370), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(374), 5, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [14710] = 2, + ACTIONS(486), 1, + sym_integer, ACTIONS(484), 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, + [14726] = 2, + ACTIONS(494), 1, + sym_integer, + ACTIONS(492), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [14742] = 2, + ACTIONS(691), 1, + anon_sym_RPAREN, + ACTIONS(498), 10, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -14603,63 +14415,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_and, anon_sym_or, - [14925] = 2, - ACTIONS(451), 1, + [14758] = 3, + ACTIONS(695), 1, sym_integer, - ACTIONS(449), 10, + ACTIONS(697), 1, + anon_sym_COMMA, + ACTIONS(693), 9, 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(457), 1, - sym_integer, - ACTIONS(455), 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, - [14957] = 2, - ACTIONS(447), 1, - sym_integer, - ACTIONS(445), 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, - [14973] = 2, - ACTIONS(471), 1, - sym_integer, - ACTIONS(469), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14989] = 2, + [14776] = 2, + ACTIONS(699), 1, + anon_sym_RPAREN, + ACTIONS(498), 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, + [14792] = 2, ACTIONS(431), 1, sym_integer, ACTIONS(429), 10, @@ -14673,21 +14458,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [14808] = 2, ACTIONS(439), 1, sym_integer, ACTIONS(437), 10, @@ -14701,25 +14472,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_LBRACE, anon_sym_table, - [15037] = 3, - ACTIONS(699), 1, + [14824] = 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, + [14840] = 2, + ACTIONS(470), 1, + sym_integer, + ACTIONS(468), 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, + [14856] = 2, ACTIONS(701), 1, - anon_sym_COMMA, - ACTIONS(697), 9, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [15055] = 2, - ACTIONS(524), 1, + anon_sym_RPAREN, + ACTIONS(498), 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, + [14872] = 2, + ACTIONS(512), 1, sym_integer, - ACTIONS(522), 10, + ACTIONS(510), 10, sym_float, sym_string, anon_sym_true, @@ -14730,697 +14528,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_LBRACE, anon_sym_table, - [15071] = 2, + [14888] = 2, + ACTIONS(474), 1, + sym_integer, + ACTIONS(472), 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, + [14904] = 2, + ACTIONS(522), 1, + sym_integer, + ACTIONS(520), 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, + [14920] = 2, + ACTIONS(490), 1, + sym_integer, + ACTIONS(488), 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, + [14936] = 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, + ACTIONS(628), 9, 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, + [14951] = 3, 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, - [15135] = 2, - ACTIONS(707), 1, - sym_integer, - ACTIONS(618), 9, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [15150] = 3, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(712), 2, + ACTIONS(708), 2, anon_sym_RBRACE, anon_sym_into, - STATE(301), 2, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15162] = 3, + [14963] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, + anon_sym_RBRACE, + STATE(308), 2, + sym_list, + aux_sym_table_repeat1, + [14974] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(712), 1, + anon_sym_into, + STATE(302), 2, + sym_list, + aux_sym_table_repeat1, + [14985] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(714), 1, anon_sym_into, - STATE(301), 2, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15173] = 3, + [14996] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(716), 1, anon_sym_RBRACE, - STATE(301), 2, + STATE(313), 2, sym_list, aux_sym_table_repeat1, - [15184] = 3, + [15007] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(718), 1, anon_sym_RBRACE, - STATE(306), 2, + STATE(315), 2, sym_list, aux_sym_table_repeat1, - [15195] = 3, + [15018] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(720), 1, anon_sym_RBRACE, - STATE(307), 2, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15206] = 3, + [15029] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(722), 1, - anon_sym_RBRACE, - STATE(301), 2, + anon_sym_into, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15217] = 3, + [15040] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(724), 1, anon_sym_RBRACE, - STATE(301), 2, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15228] = 3, + [15051] = 3, ACTIONS(15), 1, anon_sym_LBRACK, ACTIONS(726), 1, - anon_sym_into, - STATE(301), 2, - sym_list, - aux_sym_table_repeat1, - [15239] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(728), 1, - anon_sym_RBRACE, - STATE(311), 2, - sym_list, - aux_sym_table_repeat1, - [15250] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, - anon_sym_RBRACE, - STATE(301), 2, - sym_list, - aux_sym_table_repeat1, - [15261] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(732), 1, - anon_sym_RBRACE, - STATE(301), 2, - sym_list, - aux_sym_table_repeat1, - [15272] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_RBRACE, - STATE(303), 2, - sym_list, - aux_sym_table_repeat1, - [15283] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(736), 1, - anon_sym_into, - STATE(301), 2, - sym_list, - aux_sym_table_repeat1, - [15294] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(738), 1, anon_sym_RBRACE, STATE(310), 2, sym_list, aux_sym_table_repeat1, - [15305] = 3, + [15062] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(728), 1, anon_sym_into, - STATE(301), 2, - sym_list, - aux_sym_table_repeat1, - [15316] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(742), 1, - anon_sym_into, - STATE(301), 2, - sym_list, - aux_sym_table_repeat1, - [15327] = 3, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(746), 1, - anon_sym_GT, - STATE(324), 1, - aux_sym_function_repeat1, - [15337] = 3, - ACTIONS(744), 1, - sym_identifier, - 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_RBRACE, - STATE(339), 1, - aux_sym_map_repeat1, - [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(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, - [15395] = 3, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(765), 1, - anon_sym_GT, - STATE(345), 1, - aux_sym_function_repeat1, - [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(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(326), 1, - aux_sym_function_repeat1, - [15485] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15493] = 3, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(781), 1, - anon_sym_GT, - STATE(345), 1, - aux_sym_function_repeat1, - [15503] = 3, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(783), 1, - anon_sym_GT, - STATE(345), 1, - aux_sym_function_repeat1, - [15513] = 2, + [15073] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(316), 2, + ACTIONS(730), 1, + anon_sym_RBRACE, + STATE(302), 2, sym_list, aux_sym_table_repeat1, - [15521] = 3, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(785), 1, - anon_sym_RBRACE, - STATE(330), 1, - aux_sym_map_repeat1, - [15531] = 2, + [15084] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(308), 2, + ACTIONS(732), 1, + anon_sym_into, + STATE(302), 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, - 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, + [15095] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(315), 2, + ACTIONS(734), 1, + anon_sym_RBRACE, + STATE(302), 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, + [15106] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, anon_sym_RBRACE, - STATE(344), 1, - aux_sym_map_repeat1, - [15637] = 3, - ACTIONS(744), 1, + STATE(317), 2, + sym_list, + aux_sym_table_repeat1, + [15117] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(738), 1, + anon_sym_RBRACE, + STATE(302), 2, + sym_list, + aux_sym_table_repeat1, + [15128] = 3, + ACTIONS(380), 1, + anon_sym_RBRACE, + ACTIONS(740), 1, + anon_sym_DASH_GT, + STATE(318), 1, + aux_sym_yield_repeat1, + [15138] = 3, + ACTIONS(743), 1, sym_identifier, - ACTIONS(811), 1, + ACTIONS(746), 1, anon_sym_GT, - STATE(345), 1, + STATE(319), 1, aux_sym_function_repeat1, - [15647] = 3, - ACTIONS(753), 1, + [15148] = 2, + ACTIONS(750), 1, + anon_sym_COMMA, + ACTIONS(748), 2, sym_identifier, - ACTIONS(813), 1, + anon_sym_GT, + [15156] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(754), 1, anon_sym_RBRACE, STATE(328), 1, aux_sym_map_repeat1, - [15657] = 2, + [15166] = 2, ACTIONS(15), 1, anon_sym_LBRACK, - STATE(313), 2, + STATE(314), 2, sym_list, aux_sym_table_repeat1, - [15665] = 2, - ACTIONS(744), 1, + [15174] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(756), 1, + anon_sym_RBRACE, + STATE(321), 1, + aux_sym_map_repeat1, + [15184] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(758), 1, + anon_sym_RBRACE, + STATE(326), 1, + aux_sym_map_repeat1, + [15194] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(312), 2, + sym_list, + aux_sym_table_repeat1, + [15202] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(760), 1, + anon_sym_RBRACE, + STATE(328), 1, + aux_sym_map_repeat1, + [15212] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15222] = 3, + ACTIONS(766), 1, + sym_identifier, + ACTIONS(769), 1, + anon_sym_RBRACE, + STATE(328), 1, + aux_sym_map_repeat1, + [15232] = 3, + ACTIONS(412), 1, + anon_sym_RBRACE, + ACTIONS(659), 1, + anon_sym_DASH_GT, + STATE(318), 1, + aux_sym_yield_repeat1, + [15242] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(771), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15252] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(773), 1, + anon_sym_GT, + STATE(330), 1, + aux_sym_function_repeat1, + [15262] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_RBRACE, + STATE(328), 1, + aux_sym_map_repeat1, + [15272] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(777), 1, + anon_sym_GT, + STATE(347), 1, + aux_sym_function_repeat1, + [15282] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(779), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15292] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_GT, + STATE(334), 1, + aux_sym_function_repeat1, + [15302] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(783), 1, + anon_sym_RBRACE, + STATE(328), 1, + aux_sym_map_repeat1, + [15312] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(785), 1, + anon_sym_RBRACE, + STATE(336), 1, + aux_sym_map_repeat1, + [15322] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(787), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15332] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(305), 2, + sym_list, + aux_sym_table_repeat1, + [15340] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(309), 2, + sym_list, + aux_sym_table_repeat1, + [15348] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(789), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15358] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(791), 1, + anon_sym_GT, + STATE(341), 1, + aux_sym_function_repeat1, + [15368] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(793), 1, + anon_sym_RBRACE, + STATE(328), 1, + aux_sym_map_repeat1, + [15378] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15388] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15398] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(799), 1, + anon_sym_GT, + STATE(338), 1, + aux_sym_function_repeat1, + [15408] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(801), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15418] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_RBRACE, + STATE(343), 1, + aux_sym_map_repeat1, + [15428] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(805), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15438] = 3, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_GT, + STATE(319), 1, + aux_sym_function_repeat1, + [15448] = 3, + ACTIONS(752), 1, + sym_identifier, + ACTIONS(809), 1, + anon_sym_RBRACE, + STATE(332), 1, + aux_sym_map_repeat1, + [15458] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(304), 2, + sym_list, + aux_sym_table_repeat1, + [15466] = 1, + ACTIONS(468), 2, + sym_identifier, + anon_sym_RBRACE, + [15471] = 1, + ACTIONS(811), 2, + sym_identifier, + anon_sym_RBRACE, + [15476] = 2, + ACTIONS(813), 1, + anon_sym_LT, + ACTIONS(815), 1, + anon_sym_LBRACE, + [15483] = 1, + ACTIONS(746), 2, + sym_identifier, + anon_sym_GT, + [15488] = 2, + ACTIONS(762), 1, sym_identifier, STATE(349), 1, aux_sym_function_repeat1, - [15672] = 2, - ACTIONS(815), 1, - anon_sym_LT, + [15495] = 2, + ACTIONS(762), 1, + sym_identifier, + STATE(350), 1, + aux_sym_function_repeat1, + [15502] = 2, + ACTIONS(762), 1, + sym_identifier, + STATE(327), 1, + aux_sym_function_repeat1, + [15509] = 2, ACTIONS(817), 1, + anon_sym_LT, + ACTIONS(819), 1, anon_sym_LBRACE, - [15679] = 1, - ACTIONS(819), 2, + [15516] = 2, + ACTIONS(762), 1, + sym_identifier, + STATE(344), 1, + aux_sym_function_repeat1, + [15523] = 1, + ACTIONS(510), 2, sym_identifier, anon_sym_RBRACE, - [15684] = 1, - ACTIONS(437), 2, - sym_identifier, - anon_sym_RBRACE, - [15689] = 1, - ACTIONS(445), 2, - sym_identifier, - anon_sym_RBRACE, - [15694] = 2, + [15528] = 2, ACTIONS(821), 1, anon_sym_LT, ACTIONS(823), 1, anon_sym_LBRACE, - [15701] = 1, - ACTIONS(449), 2, - sym_identifier, - anon_sym_RBRACE, - [15706] = 2, + [15535] = 2, ACTIONS(825), 1, anon_sym_LT, ACTIONS(827), 1, anon_sym_LBRACE, - [15713] = 1, - ACTIONS(455), 2, - sym_identifier, - anon_sym_RBRACE, - [15718] = 1, - ACTIONS(805), 2, - sym_identifier, - anon_sym_GT, - [15723] = 2, + [15542] = 2, ACTIONS(829), 1, anon_sym_LT, ACTIONS(831), 1, anon_sym_LBRACE, - [15730] = 1, - ACTIONS(441), 2, + [15549] = 1, + ACTIONS(520), 2, sym_identifier, anon_sym_RBRACE, - [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, + [15554] = 1, ACTIONS(429), 2, sym_identifier, anon_sym_RBRACE, - [15773] = 2, - ACTIONS(744), 1, + [15559] = 1, + ACTIONS(492), 2, sym_identifier, - STATE(341), 1, + anon_sym_RBRACE, + [15564] = 1, + ACTIONS(488), 2, + sym_identifier, + anon_sym_RBRACE, + [15569] = 1, + ACTIONS(484), 2, + sym_identifier, + anon_sym_RBRACE, + [15574] = 1, + ACTIONS(472), 2, + sym_identifier, + anon_sym_RBRACE, + [15579] = 1, + ACTIONS(441), 2, + sym_identifier, + anon_sym_RBRACE, + [15584] = 2, + ACTIONS(762), 1, + sym_identifier, + STATE(345), 1, aux_sym_function_repeat1, - [15780] = 1, - ACTIONS(459), 2, + [15591] = 1, + ACTIONS(437), 2, sym_identifier, anon_sym_RBRACE, - [15785] = 1, - ACTIONS(522), 2, - sym_identifier, - anon_sym_RBRACE, - [15790] = 1, - ACTIONS(518), 2, - sym_identifier, - anon_sym_RBRACE, - [15795] = 1, + [15596] = 1, + ACTIONS(833), 1, + anon_sym_LT, + [15600] = 1, + ACTIONS(835), 1, + anon_sym_LBRACE, + [15604] = 1, ACTIONS(837), 1, - sym_identifier, - [15799] = 1, + anon_sym_LBRACE, + [15608] = 1, ACTIONS(839), 1, ts_builtin_sym_end, - [15803] = 1, + [15612] = 1, ACTIONS(841), 1, - anon_sym_LBRACE, - [15807] = 1, + anon_sym_EQ, + [15616] = 1, ACTIONS(843), 1, - anon_sym_RBRACE, - [15811] = 1, - ACTIONS(845), 1, - anon_sym_RBRACE, - [15815] = 1, - ACTIONS(847), 1, - sym_identifier, - [15819] = 1, - ACTIONS(849), 1, anon_sym_LBRACE, - [15823] = 1, + [15620] = 1, + ACTIONS(845), 1, + anon_sym_LBRACE, + [15624] = 1, + ACTIONS(847), 1, + anon_sym_LBRACE, + [15628] = 1, + ACTIONS(849), 1, + aux_sym_comment_token1, + [15632] = 1, ACTIONS(851), 1, - anon_sym_RBRACE, - [15827] = 1, + anon_sym_LBRACE, + [15636] = 1, ACTIONS(853), 1, sym_identifier, - [15831] = 1, + [15640] = 1, ACTIONS(855), 1, - anon_sym_LBRACE, - [15835] = 1, - ACTIONS(857), 1, - anon_sym_LBRACE, - [15839] = 1, - ACTIONS(859), 1, sym_identifier, - [15843] = 1, + [15644] = 1, + ACTIONS(857), 1, + anon_sym_from, + [15648] = 1, + ACTIONS(859), 1, + anon_sym_RBRACE, + [15652] = 1, ACTIONS(861), 1, - anon_sym_LT, - [15847] = 1, + sym_identifier, + [15656] = 1, ACTIONS(863), 1, - anon_sym_LBRACE, - [15851] = 1, + anon_sym_RBRACE, + [15660] = 1, ACTIONS(865), 1, anon_sym_LBRACE, - [15855] = 1, + [15664] = 1, ACTIONS(867), 1, anon_sym_LBRACE, - [15859] = 1, + [15668] = 1, ACTIONS(869), 1, anon_sym_LBRACE, - [15863] = 1, + [15672] = 1, ACTIONS(871), 1, anon_sym_LBRACE, - [15867] = 1, + [15676] = 1, ACTIONS(873), 1, anon_sym_LBRACE, - [15871] = 1, + [15680] = 1, ACTIONS(875), 1, - sym_identifier, - [15875] = 1, + anon_sym_LBRACE, + [15684] = 1, ACTIONS(877), 1, - sym_identifier, - [15879] = 1, + anon_sym_from, + [15688] = 1, ACTIONS(879), 1, - sym_identifier, - [15883] = 1, + anon_sym_LBRACE, + [15692] = 1, ACTIONS(881), 1, - anon_sym_RBRACE, - [15887] = 1, + anon_sym_LBRACE, + [15696] = 1, ACTIONS(883), 1, anon_sym_RBRACE, - [15891] = 1, + [15700] = 1, ACTIONS(885), 1, anon_sym_LBRACE, - [15895] = 1, + [15704] = 1, ACTIONS(887), 1, - anon_sym_LBRACE, - [15899] = 1, + sym_identifier, + [15708] = 1, ACTIONS(889), 1, - anon_sym_LBRACE, - [15903] = 1, + anon_sym_LT, + [15712] = 1, ACTIONS(891), 1, anon_sym_LBRACE, - [15907] = 1, + [15716] = 1, ACTIONS(893), 1, - anon_sym_EQ, - [15911] = 1, + anon_sym_LBRACE, + [15720] = 1, ACTIONS(895), 1, - anon_sym_LBRACE, - [15915] = 1, + sym_identifier, + [15724] = 1, ACTIONS(897), 1, - anon_sym_LBRACE, - [15919] = 1, + sym_identifier, + [15728] = 1, ACTIONS(899), 1, - anon_sym_LT, - [15923] = 1, - ACTIONS(901), 1, - aux_sym_comment_token1, - [15927] = 1, - ACTIONS(903), 1, - anon_sym_from, - [15931] = 1, - ACTIONS(905), 1, - anon_sym_LBRACE, - [15935] = 1, - ACTIONS(907), 1, anon_sym_RBRACE, - [15939] = 1, - ACTIONS(909), 1, - anon_sym_LBRACE, - [15943] = 1, - ACTIONS(911), 1, + [15732] = 1, + ACTIONS(901), 1, sym_identifier, - [15947] = 1, - ACTIONS(913), 1, + [15736] = 1, + ACTIONS(903), 1, sym_identifier, - [15951] = 1, - ACTIONS(915), 1, + [15740] = 1, + ACTIONS(905), 1, anon_sym_from, - [15955] = 1, + [15744] = 1, + ACTIONS(907), 1, + sym_identifier, + [15748] = 1, + ACTIONS(909), 1, + anon_sym_LT, + [15752] = 1, + ACTIONS(911), 1, + anon_sym_LT, + [15756] = 1, + ACTIONS(913), 1, + anon_sym_LT, + [15760] = 1, + ACTIONS(915), 1, + sym_identifier, + [15764] = 1, ACTIONS(917), 1, sym_identifier, - [15959] = 1, + [15768] = 1, ACTIONS(919), 1, - sym_identifier, - [15963] = 1, + anon_sym_RBRACE, + [15772] = 1, ACTIONS(921), 1, sym_identifier, - [15967] = 1, + [15776] = 1, ACTIONS(923), 1, - anon_sym_LT, - [15971] = 1, + sym_identifier, + [15780] = 1, ACTIONS(925), 1, - anon_sym_LT, - [15975] = 1, + anon_sym_from, + [15784] = 1, ACTIONS(927), 1, - anon_sym_LT, - [15979] = 1, + anon_sym_from, + [15788] = 1, ACTIONS(929), 1, sym_identifier, - [15983] = 1, + [15792] = 1, ACTIONS(931), 1, sym_identifier, - [15987] = 1, + [15796] = 1, ACTIONS(933), 1, - anon_sym_from, - [15991] = 1, + anon_sym_RBRACE, + [15800] = 1, ACTIONS(935), 1, - anon_sym_from, - [15995] = 1, - ACTIONS(937), 1, - sym_identifier, - [15999] = 1, - ACTIONS(939), 1, - anon_sym_from, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -15488,800 +15272,799 @@ static const uint32_t ts_small_parse_table_map[] = { [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)] = 5468, - [SMALL_STATE(72)] = 5516, - [SMALL_STATE(73)] = 5594, - [SMALL_STATE(74)] = 5642, - [SMALL_STATE(75)] = 5717, - [SMALL_STATE(76)] = 5792, - [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)] = 9578, - [SMALL_STATE(130)] = 9620, - [SMALL_STATE(131)] = 9662, - [SMALL_STATE(132)] = 9714, - [SMALL_STATE(133)] = 9758, - [SMALL_STATE(134)] = 9800, - [SMALL_STATE(135)] = 9852, - [SMALL_STATE(136)] = 9906, - [SMALL_STATE(137)] = 9950, - [SMALL_STATE(138)] = 10002, - [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, - [SMALL_STATE(162)] = 10976, - [SMALL_STATE(163)] = 11015, - [SMALL_STATE(164)] = 11054, - [SMALL_STATE(165)] = 11093, - [SMALL_STATE(166)] = 11132, - [SMALL_STATE(167)] = 11171, - [SMALL_STATE(168)] = 11210, - [SMALL_STATE(169)] = 11248, - [SMALL_STATE(170)] = 11286, - [SMALL_STATE(171)] = 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, - [SMALL_STATE(178)] = 11616, - [SMALL_STATE(179)] = 11654, - [SMALL_STATE(180)] = 11692, - [SMALL_STATE(181)] = 11730, - [SMALL_STATE(182)] = 11768, - [SMALL_STATE(183)] = 11806, - [SMALL_STATE(184)] = 11850, - [SMALL_STATE(185)] = 11888, - [SMALL_STATE(186)] = 11934, - [SMALL_STATE(187)] = 11972, - [SMALL_STATE(188)] = 12010, - [SMALL_STATE(189)] = 12048, - [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)] = 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, - [SMALL_STATE(203)] = 12662, - [SMALL_STATE(204)] = 12699, - [SMALL_STATE(205)] = 12730, - [SMALL_STATE(206)] = 12761, - [SMALL_STATE(207)] = 12793, - [SMALL_STATE(208)] = 12818, - [SMALL_STATE(209)] = 12849, - [SMALL_STATE(210)] = 12881, - [SMALL_STATE(211)] = 12913, - [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)] = 13167, - [SMALL_STATE(221)] = 13194, - [SMALL_STATE(222)] = 13219, - [SMALL_STATE(223)] = 13244, - [SMALL_STATE(224)] = 13267, - [SMALL_STATE(225)] = 13296, - [SMALL_STATE(226)] = 13329, - [SMALL_STATE(227)] = 13369, - [SMALL_STATE(228)] = 13391, - [SMALL_STATE(229)] = 13413, - [SMALL_STATE(230)] = 13435, - [SMALL_STATE(231)] = 13457, - [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)] = 14037, - [SMALL_STATE(255)] = 14077, - [SMALL_STATE(256)] = 14099, - [SMALL_STATE(257)] = 14125, - [SMALL_STATE(258)] = 14152, - [SMALL_STATE(259)] = 14189, - [SMALL_STATE(260)] = 14216, - [SMALL_STATE(261)] = 14253, - [SMALL_STATE(262)] = 14290, - [SMALL_STATE(263)] = 14317, - [SMALL_STATE(264)] = 14354, - [SMALL_STATE(265)] = 14391, - [SMALL_STATE(266)] = 14418, - [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, - [SMALL_STATE(274)] = 14624, - [SMALL_STATE(275)] = 14648, - [SMALL_STATE(276)] = 14672, - [SMALL_STATE(277)] = 14696, - [SMALL_STATE(278)] = 14720, - [SMALL_STATE(279)] = 14744, - [SMALL_STATE(280)] = 14768, - [SMALL_STATE(281)] = 14792, - [SMALL_STATE(282)] = 14816, - [SMALL_STATE(283)] = 14840, - [SMALL_STATE(284)] = 14864, - [SMALL_STATE(285)] = 14888, - [SMALL_STATE(286)] = 14909, - [SMALL_STATE(287)] = 14925, - [SMALL_STATE(288)] = 14941, - [SMALL_STATE(289)] = 14957, - [SMALL_STATE(290)] = 14973, - [SMALL_STATE(291)] = 14989, - [SMALL_STATE(292)] = 15005, - [SMALL_STATE(293)] = 15021, - [SMALL_STATE(294)] = 15037, - [SMALL_STATE(295)] = 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, - [SMALL_STATE(303)] = 15173, - [SMALL_STATE(304)] = 15184, - [SMALL_STATE(305)] = 15195, - [SMALL_STATE(306)] = 15206, - [SMALL_STATE(307)] = 15217, - [SMALL_STATE(308)] = 15228, - [SMALL_STATE(309)] = 15239, - [SMALL_STATE(310)] = 15250, - [SMALL_STATE(311)] = 15261, - [SMALL_STATE(312)] = 15272, - [SMALL_STATE(313)] = 15283, - [SMALL_STATE(314)] = 15294, - [SMALL_STATE(315)] = 15305, - [SMALL_STATE(316)] = 15316, - [SMALL_STATE(317)] = 15327, - [SMALL_STATE(318)] = 15337, - [SMALL_STATE(319)] = 15347, - [SMALL_STATE(320)] = 15357, - [SMALL_STATE(321)] = 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)] = 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)] = 15609, - [SMALL_STATE(347)] = 15617, - [SMALL_STATE(348)] = 15627, - [SMALL_STATE(349)] = 15637, - [SMALL_STATE(350)] = 15647, - [SMALL_STATE(351)] = 15657, - [SMALL_STATE(352)] = 15665, - [SMALL_STATE(353)] = 15672, - [SMALL_STATE(354)] = 15679, - [SMALL_STATE(355)] = 15684, - [SMALL_STATE(356)] = 15689, - [SMALL_STATE(357)] = 15694, - [SMALL_STATE(358)] = 15701, - [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)] = 15768, - [SMALL_STATE(370)] = 15773, - [SMALL_STATE(371)] = 15780, - [SMALL_STATE(372)] = 15785, - [SMALL_STATE(373)] = 15790, - [SMALL_STATE(374)] = 15795, - [SMALL_STATE(375)] = 15799, - [SMALL_STATE(376)] = 15803, - [SMALL_STATE(377)] = 15807, - [SMALL_STATE(378)] = 15811, - [SMALL_STATE(379)] = 15815, - [SMALL_STATE(380)] = 15819, - [SMALL_STATE(381)] = 15823, - [SMALL_STATE(382)] = 15827, - [SMALL_STATE(383)] = 15831, - [SMALL_STATE(384)] = 15835, - [SMALL_STATE(385)] = 15839, - [SMALL_STATE(386)] = 15843, - [SMALL_STATE(387)] = 15847, - [SMALL_STATE(388)] = 15851, - [SMALL_STATE(389)] = 15855, - [SMALL_STATE(390)] = 15859, - [SMALL_STATE(391)] = 15863, - [SMALL_STATE(392)] = 15867, - [SMALL_STATE(393)] = 15871, - [SMALL_STATE(394)] = 15875, - [SMALL_STATE(395)] = 15879, - [SMALL_STATE(396)] = 15883, - [SMALL_STATE(397)] = 15887, - [SMALL_STATE(398)] = 15891, - [SMALL_STATE(399)] = 15895, - [SMALL_STATE(400)] = 15899, - [SMALL_STATE(401)] = 15903, - [SMALL_STATE(402)] = 15907, - [SMALL_STATE(403)] = 15911, - [SMALL_STATE(404)] = 15915, - [SMALL_STATE(405)] = 15919, - [SMALL_STATE(406)] = 15923, - [SMALL_STATE(407)] = 15927, - [SMALL_STATE(408)] = 15931, - [SMALL_STATE(409)] = 15935, - [SMALL_STATE(410)] = 15939, - [SMALL_STATE(411)] = 15943, - [SMALL_STATE(412)] = 15947, - [SMALL_STATE(413)] = 15951, - [SMALL_STATE(414)] = 15955, - [SMALL_STATE(415)] = 15959, - [SMALL_STATE(416)] = 15963, - [SMALL_STATE(417)] = 15967, - [SMALL_STATE(418)] = 15971, - [SMALL_STATE(419)] = 15975, - [SMALL_STATE(420)] = 15979, - [SMALL_STATE(421)] = 15983, - [SMALL_STATE(422)] = 15987, - [SMALL_STATE(423)] = 15991, - [SMALL_STATE(424)] = 15995, - [SMALL_STATE(425)] = 15999, + [SMALL_STATE(68)] = 5263, + [SMALL_STATE(69)] = 5341, + [SMALL_STATE(70)] = 5419, + [SMALL_STATE(71)] = 5497, + [SMALL_STATE(72)] = 5572, + [SMALL_STATE(73)] = 5647, + [SMALL_STATE(74)] = 5722, + [SMALL_STATE(75)] = 5797, + [SMALL_STATE(76)] = 5872, + [SMALL_STATE(77)] = 5947, + [SMALL_STATE(78)] = 6022, + [SMALL_STATE(79)] = 6097, + [SMALL_STATE(80)] = 6174, + [SMALL_STATE(81)] = 6249, + [SMALL_STATE(82)] = 6324, + [SMALL_STATE(83)] = 6399, + [SMALL_STATE(84)] = 6474, + [SMALL_STATE(85)] = 6549, + [SMALL_STATE(86)] = 6624, + [SMALL_STATE(87)] = 6699, + [SMALL_STATE(88)] = 6774, + [SMALL_STATE(89)] = 6849, + [SMALL_STATE(90)] = 6924, + [SMALL_STATE(91)] = 6999, + [SMALL_STATE(92)] = 7074, + [SMALL_STATE(93)] = 7149, + [SMALL_STATE(94)] = 7226, + [SMALL_STATE(95)] = 7301, + [SMALL_STATE(96)] = 7376, + [SMALL_STATE(97)] = 7451, + [SMALL_STATE(98)] = 7526, + [SMALL_STATE(99)] = 7603, + [SMALL_STATE(100)] = 7678, + [SMALL_STATE(101)] = 7753, + [SMALL_STATE(102)] = 7828, + [SMALL_STATE(103)] = 7903, + [SMALL_STATE(104)] = 7978, + [SMALL_STATE(105)] = 8055, + [SMALL_STATE(106)] = 8132, + [SMALL_STATE(107)] = 8207, + [SMALL_STATE(108)] = 8282, + [SMALL_STATE(109)] = 8357, + [SMALL_STATE(110)] = 8432, + [SMALL_STATE(111)] = 8507, + [SMALL_STATE(112)] = 8582, + [SMALL_STATE(113)] = 8657, + [SMALL_STATE(114)] = 8732, + [SMALL_STATE(115)] = 8807, + [SMALL_STATE(116)] = 8882, + [SMALL_STATE(117)] = 8957, + [SMALL_STATE(118)] = 9032, + [SMALL_STATE(119)] = 9078, + [SMALL_STATE(120)] = 9124, + [SMALL_STATE(121)] = 9175, + [SMALL_STATE(122)] = 9230, + [SMALL_STATE(123)] = 9273, + [SMALL_STATE(124)] = 9318, + [SMALL_STATE(125)] = 9371, + [SMALL_STATE(126)] = 9416, + [SMALL_STATE(127)] = 9467, + [SMALL_STATE(128)] = 9518, + [SMALL_STATE(129)] = 9558, + [SMALL_STATE(130)] = 9604, + [SMALL_STATE(131)] = 9644, + [SMALL_STATE(132)] = 9696, + [SMALL_STATE(133)] = 9746, + [SMALL_STATE(134)] = 9788, + [SMALL_STATE(135)] = 9838, + [SMALL_STATE(136)] = 9888, + [SMALL_STATE(137)] = 9938, + [SMALL_STATE(138)] = 9978, + [SMALL_STATE(139)] = 10030, + [SMALL_STATE(140)] = 10072, + [SMALL_STATE(141)] = 10109, + [SMALL_STATE(142)] = 10146, + [SMALL_STATE(143)] = 10183, + [SMALL_STATE(144)] = 10220, + [SMALL_STATE(145)] = 10259, + [SMALL_STATE(146)] = 10298, + [SMALL_STATE(147)] = 10337, + [SMALL_STATE(148)] = 10376, + [SMALL_STATE(149)] = 10413, + [SMALL_STATE(150)] = 10454, + [SMALL_STATE(151)] = 10505, + [SMALL_STATE(152)] = 10542, + [SMALL_STATE(153)] = 10579, + [SMALL_STATE(154)] = 10616, + [SMALL_STATE(155)] = 10653, + [SMALL_STATE(156)] = 10690, + [SMALL_STATE(157)] = 10727, + [SMALL_STATE(158)] = 10764, + [SMALL_STATE(159)] = 10801, + [SMALL_STATE(160)] = 10838, + [SMALL_STATE(161)] = 10875, + [SMALL_STATE(162)] = 10914, + [SMALL_STATE(163)] = 10951, + [SMALL_STATE(164)] = 10988, + [SMALL_STATE(165)] = 11025, + [SMALL_STATE(166)] = 11062, + [SMALL_STATE(167)] = 11107, + [SMALL_STATE(168)] = 11144, + [SMALL_STATE(169)] = 11181, + [SMALL_STATE(170)] = 11218, + [SMALL_STATE(171)] = 11255, + [SMALL_STATE(172)] = 11291, + [SMALL_STATE(173)] = 11327, + [SMALL_STATE(174)] = 11363, + [SMALL_STATE(175)] = 11399, + [SMALL_STATE(176)] = 11441, + [SMALL_STATE(177)] = 11481, + [SMALL_STATE(178)] = 11517, + [SMALL_STATE(179)] = 11553, + [SMALL_STATE(180)] = 11589, + [SMALL_STATE(181)] = 11625, + [SMALL_STATE(182)] = 11661, + [SMALL_STATE(183)] = 11697, + [SMALL_STATE(184)] = 11733, + [SMALL_STATE(185)] = 11769, + [SMALL_STATE(186)] = 11805, + [SMALL_STATE(187)] = 11841, + [SMALL_STATE(188)] = 11877, + [SMALL_STATE(189)] = 11913, + [SMALL_STATE(190)] = 11949, + [SMALL_STATE(191)] = 11985, + [SMALL_STATE(192)] = 12021, + [SMALL_STATE(193)] = 12057, + [SMALL_STATE(194)] = 12107, + [SMALL_STATE(195)] = 12143, + [SMALL_STATE(196)] = 12190, + [SMALL_STATE(197)] = 12237, + [SMALL_STATE(198)] = 12284, + [SMALL_STATE(199)] = 12331, + [SMALL_STATE(200)] = 12370, + [SMALL_STATE(201)] = 12406, + [SMALL_STATE(202)] = 12442, + [SMALL_STATE(203)] = 12478, + [SMALL_STATE(204)] = 12509, + [SMALL_STATE(205)] = 12540, + [SMALL_STATE(206)] = 12571, + [SMALL_STATE(207)] = 12596, + [SMALL_STATE(208)] = 12627, + [SMALL_STATE(209)] = 12655, + [SMALL_STATE(210)] = 12679, + [SMALL_STATE(211)] = 12713, + [SMALL_STATE(212)] = 12745, + [SMALL_STATE(213)] = 12769, + [SMALL_STATE(214)] = 12801, + [SMALL_STATE(215)] = 12833, + [SMALL_STATE(216)] = 12865, + [SMALL_STATE(217)] = 12888, + [SMALL_STATE(218)] = 12921, + [SMALL_STATE(219)] = 12948, + [SMALL_STATE(220)] = 12973, + [SMALL_STATE(221)] = 12998, + [SMALL_STATE(222)] = 13023, + [SMALL_STATE(223)] = 13045, + [SMALL_STATE(224)] = 13067, + [SMALL_STATE(225)] = 13107, + [SMALL_STATE(226)] = 13129, + [SMALL_STATE(227)] = 13151, + [SMALL_STATE(228)] = 13173, + [SMALL_STATE(229)] = 13195, + [SMALL_STATE(230)] = 13235, + [SMALL_STATE(231)] = 13275, + [SMALL_STATE(232)] = 13297, + [SMALL_STATE(233)] = 13319, + [SMALL_STATE(234)] = 13341, + [SMALL_STATE(235)] = 13381, + [SMALL_STATE(236)] = 13421, + [SMALL_STATE(237)] = 13443, + [SMALL_STATE(238)] = 13467, + [SMALL_STATE(239)] = 13489, + [SMALL_STATE(240)] = 13511, + [SMALL_STATE(241)] = 13533, + [SMALL_STATE(242)] = 13555, + [SMALL_STATE(243)] = 13577, + [SMALL_STATE(244)] = 13617, + [SMALL_STATE(245)] = 13639, + [SMALL_STATE(246)] = 13661, + [SMALL_STATE(247)] = 13683, + [SMALL_STATE(248)] = 13705, + [SMALL_STATE(249)] = 13727, + [SMALL_STATE(250)] = 13749, + [SMALL_STATE(251)] = 13771, + [SMALL_STATE(252)] = 13799, + [SMALL_STATE(253)] = 13821, + [SMALL_STATE(254)] = 13847, + [SMALL_STATE(255)] = 13869, + [SMALL_STATE(256)] = 13896, + [SMALL_STATE(257)] = 13933, + [SMALL_STATE(258)] = 13960, + [SMALL_STATE(259)] = 13987, + [SMALL_STATE(260)] = 14024, + [SMALL_STATE(261)] = 14061, + [SMALL_STATE(262)] = 14098, + [SMALL_STATE(263)] = 14135, + [SMALL_STATE(264)] = 14155, + [SMALL_STATE(265)] = 14189, + [SMALL_STATE(266)] = 14221, + [SMALL_STATE(267)] = 14241, + [SMALL_STATE(268)] = 14261, + [SMALL_STATE(269)] = 14288, + [SMALL_STATE(270)] = 14317, + [SMALL_STATE(271)] = 14341, + [SMALL_STATE(272)] = 14365, + [SMALL_STATE(273)] = 14389, + [SMALL_STATE(274)] = 14413, + [SMALL_STATE(275)] = 14437, + [SMALL_STATE(276)] = 14461, + [SMALL_STATE(277)] = 14485, + [SMALL_STATE(278)] = 14509, + [SMALL_STATE(279)] = 14533, + [SMALL_STATE(280)] = 14557, + [SMALL_STATE(281)] = 14581, + [SMALL_STATE(282)] = 14605, + [SMALL_STATE(283)] = 14626, + [SMALL_STATE(284)] = 14647, + [SMALL_STATE(285)] = 14668, + [SMALL_STATE(286)] = 14689, + [SMALL_STATE(287)] = 14710, + [SMALL_STATE(288)] = 14726, + [SMALL_STATE(289)] = 14742, + [SMALL_STATE(290)] = 14758, + [SMALL_STATE(291)] = 14776, + [SMALL_STATE(292)] = 14792, + [SMALL_STATE(293)] = 14808, + [SMALL_STATE(294)] = 14824, + [SMALL_STATE(295)] = 14840, + [SMALL_STATE(296)] = 14856, + [SMALL_STATE(297)] = 14872, + [SMALL_STATE(298)] = 14888, + [SMALL_STATE(299)] = 14904, + [SMALL_STATE(300)] = 14920, + [SMALL_STATE(301)] = 14936, + [SMALL_STATE(302)] = 14951, + [SMALL_STATE(303)] = 14963, + [SMALL_STATE(304)] = 14974, + [SMALL_STATE(305)] = 14985, + [SMALL_STATE(306)] = 14996, + [SMALL_STATE(307)] = 15007, + [SMALL_STATE(308)] = 15018, + [SMALL_STATE(309)] = 15029, + [SMALL_STATE(310)] = 15040, + [SMALL_STATE(311)] = 15051, + [SMALL_STATE(312)] = 15062, + [SMALL_STATE(313)] = 15073, + [SMALL_STATE(314)] = 15084, + [SMALL_STATE(315)] = 15095, + [SMALL_STATE(316)] = 15106, + [SMALL_STATE(317)] = 15117, + [SMALL_STATE(318)] = 15128, + [SMALL_STATE(319)] = 15138, + [SMALL_STATE(320)] = 15148, + [SMALL_STATE(321)] = 15156, + [SMALL_STATE(322)] = 15166, + [SMALL_STATE(323)] = 15174, + [SMALL_STATE(324)] = 15184, + [SMALL_STATE(325)] = 15194, + [SMALL_STATE(326)] = 15202, + [SMALL_STATE(327)] = 15212, + [SMALL_STATE(328)] = 15222, + [SMALL_STATE(329)] = 15232, + [SMALL_STATE(330)] = 15242, + [SMALL_STATE(331)] = 15252, + [SMALL_STATE(332)] = 15262, + [SMALL_STATE(333)] = 15272, + [SMALL_STATE(334)] = 15282, + [SMALL_STATE(335)] = 15292, + [SMALL_STATE(336)] = 15302, + [SMALL_STATE(337)] = 15312, + [SMALL_STATE(338)] = 15322, + [SMALL_STATE(339)] = 15332, + [SMALL_STATE(340)] = 15340, + [SMALL_STATE(341)] = 15348, + [SMALL_STATE(342)] = 15358, + [SMALL_STATE(343)] = 15368, + [SMALL_STATE(344)] = 15378, + [SMALL_STATE(345)] = 15388, + [SMALL_STATE(346)] = 15398, + [SMALL_STATE(347)] = 15408, + [SMALL_STATE(348)] = 15418, + [SMALL_STATE(349)] = 15428, + [SMALL_STATE(350)] = 15438, + [SMALL_STATE(351)] = 15448, + [SMALL_STATE(352)] = 15458, + [SMALL_STATE(353)] = 15466, + [SMALL_STATE(354)] = 15471, + [SMALL_STATE(355)] = 15476, + [SMALL_STATE(356)] = 15483, + [SMALL_STATE(357)] = 15488, + [SMALL_STATE(358)] = 15495, + [SMALL_STATE(359)] = 15502, + [SMALL_STATE(360)] = 15509, + [SMALL_STATE(361)] = 15516, + [SMALL_STATE(362)] = 15523, + [SMALL_STATE(363)] = 15528, + [SMALL_STATE(364)] = 15535, + [SMALL_STATE(365)] = 15542, + [SMALL_STATE(366)] = 15549, + [SMALL_STATE(367)] = 15554, + [SMALL_STATE(368)] = 15559, + [SMALL_STATE(369)] = 15564, + [SMALL_STATE(370)] = 15569, + [SMALL_STATE(371)] = 15574, + [SMALL_STATE(372)] = 15579, + [SMALL_STATE(373)] = 15584, + [SMALL_STATE(374)] = 15591, + [SMALL_STATE(375)] = 15596, + [SMALL_STATE(376)] = 15600, + [SMALL_STATE(377)] = 15604, + [SMALL_STATE(378)] = 15608, + [SMALL_STATE(379)] = 15612, + [SMALL_STATE(380)] = 15616, + [SMALL_STATE(381)] = 15620, + [SMALL_STATE(382)] = 15624, + [SMALL_STATE(383)] = 15628, + [SMALL_STATE(384)] = 15632, + [SMALL_STATE(385)] = 15636, + [SMALL_STATE(386)] = 15640, + [SMALL_STATE(387)] = 15644, + [SMALL_STATE(388)] = 15648, + [SMALL_STATE(389)] = 15652, + [SMALL_STATE(390)] = 15656, + [SMALL_STATE(391)] = 15660, + [SMALL_STATE(392)] = 15664, + [SMALL_STATE(393)] = 15668, + [SMALL_STATE(394)] = 15672, + [SMALL_STATE(395)] = 15676, + [SMALL_STATE(396)] = 15680, + [SMALL_STATE(397)] = 15684, + [SMALL_STATE(398)] = 15688, + [SMALL_STATE(399)] = 15692, + [SMALL_STATE(400)] = 15696, + [SMALL_STATE(401)] = 15700, + [SMALL_STATE(402)] = 15704, + [SMALL_STATE(403)] = 15708, + [SMALL_STATE(404)] = 15712, + [SMALL_STATE(405)] = 15716, + [SMALL_STATE(406)] = 15720, + [SMALL_STATE(407)] = 15724, + [SMALL_STATE(408)] = 15728, + [SMALL_STATE(409)] = 15732, + [SMALL_STATE(410)] = 15736, + [SMALL_STATE(411)] = 15740, + [SMALL_STATE(412)] = 15744, + [SMALL_STATE(413)] = 15748, + [SMALL_STATE(414)] = 15752, + [SMALL_STATE(415)] = 15756, + [SMALL_STATE(416)] = 15760, + [SMALL_STATE(417)] = 15764, + [SMALL_STATE(418)] = 15768, + [SMALL_STATE(419)] = 15772, + [SMALL_STATE(420)] = 15776, + [SMALL_STATE(421)] = 15780, + [SMALL_STATE(422)] = 15784, + [SMALL_STATE(423)] = 15788, + [SMALL_STATE(424)] = 15792, + [SMALL_STATE(425)] = 15796, + [SMALL_STATE(426)] = 15800, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(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), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), [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(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), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [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(123), + [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(383), + [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(110), + [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(181), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(181), + [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(262), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(363), + [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(337), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(375), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(385), + [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(78), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(77), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(381), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(84), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(123), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(110), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(181), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(181), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(171), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(262), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(363), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(337), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(375), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(385), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(340), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(78), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(77), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(381), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(84), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), [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(183), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), [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(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_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), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(175), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(110), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(181), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(181), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(171), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(262), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(363), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(337), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(375), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(424), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(322), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(96), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(77), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(381), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(84), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(251), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(101), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(239), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(239), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(246), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(261), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(365), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(351), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(403), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(386), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(339), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(81), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(99), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(384), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(91), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(113), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4, .production_id = 1), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4, .production_id = 1), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(100), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6, .production_id = 2), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6, .production_id = 2), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), [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(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(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), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(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(260), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [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), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(92), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(88), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(299), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(299), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(292), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(256), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(355), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(323), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(413), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(262), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(102), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(320), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(379), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [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), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), }; #ifdef __cplusplus diff --git a/tests/dust_examples.rs b/tests/dust_examples.rs index 3b67480..0daea19 100644 --- a/tests/dust_examples.rs +++ b/tests/dust_examples.rs @@ -1,6 +1,6 @@ use std::fs::read_to_string; -use dust_lib::*; +use dust::*; #[test] fn collections() {