From 191970fabbd559b4170adba0d24771fa9ffe405a Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 30 Sep 2023 16:17:09 -0400 Subject: [PATCH] Implement insert expression --- corpus/tables.txt | 22 +- grammar.js | 18 +- src/grammar.json | 75 +- src/node-types.json | 27 + src/parser.c | 12404 +++++++++++++++++++++--------------------- 5 files changed, 6426 insertions(+), 6120 deletions(-) diff --git a/corpus/tables.txt b/corpus/tables.txt index 903bcac..8c14623 100644 --- a/corpus/tables.txt +++ b/corpus/tables.txt @@ -92,20 +92,10 @@ insert ['bob was here', 0] into foobar (statement (open_statement (expression - (identifier))))) - (item - (statement - (open_statement - (expression - (operation - (expression + (insert + (list (value - (list - (value - (string)) - (value - (integer))))) - (operator) - (expression - (identifier)))))))) - + (string)) + (value + (integer))) + (identifier))))))) diff --git a/grammar.js b/grammar.js index a74df67..cd1cc68 100644 --- a/grammar.js +++ b/grammar.js @@ -18,7 +18,7 @@ module.exports = grammar({ $.yield_statement, )), - open_statement: $ => prec.left($.expression), + open_statement: $ => prec.right($.expression), yield_statement: $ => seq($.open_statement, '->', $.open_statement), @@ -29,6 +29,7 @@ module.exports = grammar({ $.control_flow, $.tool, $.select, + $.insert, ), identifier: $ => /[a-z|_|.]+[0-9]?/, @@ -101,11 +102,6 @@ module.exports = grammar({ '||', 'and', 'or', - 'insert', - 'into', - 'select', - 'from', - 'where', ), operation: $ => prec.right(seq( @@ -124,6 +120,16 @@ module.exports = grammar({ ), )), + insert: $ => prec.right(seq( + 'insert', + repeat1($.list), + 'into', + $.identifier, + optional( + seq('where', $.expression) + ), + )), + control_flow: $ => prec.right(seq( 'if', $.expression, diff --git a/src/grammar.json b/src/grammar.json index 4fd5b02..ea2fa2a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -60,7 +60,7 @@ } }, "open_statement": { - "type": "PREC_LEFT", + "type": "PREC_RIGHT", "value": 0, "content": { "type": "SYMBOL", @@ -110,6 +110,10 @@ { "type": "SYMBOL", "name": "select" + }, + { + "type": "SYMBOL", + "name": "insert" } ] }, @@ -445,26 +449,6 @@ { "type": "STRING", "value": "or" - }, - { - "type": "STRING", - "value": "insert" - }, - { - "type": "STRING", - "value": "into" - }, - { - "type": "STRING", - "value": "select" - }, - { - "type": "STRING", - "value": "from" - }, - { - "type": "STRING", - "value": "where" } ] }, @@ -535,6 +519,55 @@ ] } }, + "insert": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "insert" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "list" + } + }, + { + "type": "STRING", + "value": "into" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "where" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, "control_flow": { "type": "PREC_RIGHT", "value": 0, diff --git a/src/node-types.json b/src/node-types.json index 2fbad81..6d75e09 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -44,6 +44,10 @@ "type": "identifier", "named": true }, + { + "type": "insert", + "named": true + }, { "type": "operation", "named": true @@ -82,6 +86,29 @@ ] } }, + { + "type": "insert", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "list", + "named": true + } + ] + } + }, { "type": "item", "named": true, diff --git a/src/parser.c b/src/parser.c index ea623e5..114dde4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 217 -#define LARGE_STATE_COUNT 45 -#define SYMBOL_COUNT 67 +#define STATE_COUNT 234 +#define LARGE_STATE_COUNT 5 +#define SYMBOL_COUNT 68 #define ALIAS_COUNT 0 #define TOKEN_COUNT 43 #define EXTERNAL_TOKEN_COUNT 0 @@ -50,11 +50,11 @@ enum { anon_sym_PIPE_PIPE = 31, anon_sym_and = 32, anon_sym_or = 33, - anon_sym_insert = 34, - anon_sym_into = 35, - anon_sym_select = 36, - anon_sym_from = 37, - anon_sym_where = 38, + anon_sym_select = 34, + anon_sym_from = 35, + anon_sym_where = 36, + anon_sym_insert = 37, + anon_sym_into = 38, anon_sym_if = 39, anon_sym_then = 40, anon_sym_else = 41, @@ -75,14 +75,15 @@ enum { sym_operator = 56, sym_operation = 57, sym_select = 58, - sym_control_flow = 59, - sym_tool = 60, - aux_sym_root_repeat1 = 61, - aux_sym_list_repeat1 = 62, - aux_sym_function_repeat1 = 63, - aux_sym_function_repeat2 = 64, - aux_sym_table_repeat1 = 65, - aux_sym_map_repeat1 = 66, + sym_insert = 59, + sym_control_flow = 60, + sym_tool = 61, + aux_sym_root_repeat1 = 62, + aux_sym_list_repeat1 = 63, + aux_sym_function_repeat1 = 64, + aux_sym_function_repeat2 = 65, + aux_sym_table_repeat1 = 66, + aux_sym_map_repeat1 = 67, }; static const char * const ts_symbol_names[] = { @@ -120,11 +121,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE_PIPE] = "||", [anon_sym_and] = "and", [anon_sym_or] = "or", - [anon_sym_insert] = "insert", - [anon_sym_into] = "into", [anon_sym_select] = "select", [anon_sym_from] = "from", [anon_sym_where] = "where", + [anon_sym_insert] = "insert", + [anon_sym_into] = "into", [anon_sym_if] = "if", [anon_sym_then] = "then", [anon_sym_else] = "else", @@ -145,6 +146,7 @@ static const char * const ts_symbol_names[] = { [sym_operator] = "operator", [sym_operation] = "operation", [sym_select] = "select", + [sym_insert] = "insert", [sym_control_flow] = "control_flow", [sym_tool] = "tool", [aux_sym_root_repeat1] = "root_repeat1", @@ -190,11 +192,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_and] = anon_sym_and, [anon_sym_or] = anon_sym_or, - [anon_sym_insert] = anon_sym_insert, - [anon_sym_into] = anon_sym_into, [anon_sym_select] = anon_sym_select, [anon_sym_from] = anon_sym_from, [anon_sym_where] = anon_sym_where, + [anon_sym_insert] = anon_sym_insert, + [anon_sym_into] = anon_sym_into, [anon_sym_if] = anon_sym_if, [anon_sym_then] = anon_sym_then, [anon_sym_else] = anon_sym_else, @@ -215,6 +217,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_operator] = sym_operator, [sym_operation] = sym_operation, [sym_select] = sym_select, + [sym_insert] = sym_insert, [sym_control_flow] = sym_control_flow, [sym_tool] = sym_tool, [aux_sym_root_repeat1] = aux_sym_root_repeat1, @@ -362,14 +365,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_insert] = { - .visible = true, - .named = false, - }, - [anon_sym_into] = { - .visible = true, - .named = false, - }, [anon_sym_select] = { .visible = true, .named = false, @@ -382,6 +377,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_insert] = { + .visible = true, + .named = false, + }, + [anon_sym_into] = { + .visible = true, + .named = false, + }, [anon_sym_if] = { .visible = true, .named = false, @@ -462,6 +465,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_insert] = { + .visible = true, + .named = true, + }, [sym_control_flow] = { .visible = true, .named = true, @@ -520,208 +527,225 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 13, + [15] = 15, [16] = 16, [17] = 17, - [18] = 2, - [19] = 7, - [20] = 20, - [21] = 10, + [18] = 18, + [19] = 19, + [20] = 9, + [21] = 13, [22] = 22, - [23] = 8, - [24] = 9, - [25] = 25, - [26] = 2, - [27] = 14, - [28] = 6, - [29] = 29, + [23] = 12, + [24] = 5, + [25] = 19, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 8, [30] = 30, - [31] = 16, - [32] = 3, - [33] = 4, - [34] = 11, - [35] = 35, - [36] = 5, - [37] = 12, - [38] = 22, - [39] = 30, - [40] = 20, - [41] = 35, - [42] = 17, - [43] = 29, - [44] = 25, + [31] = 30, + [32] = 17, + [33] = 16, + [34] = 34, + [35] = 3, + [36] = 18, + [37] = 6, + [38] = 7, + [39] = 39, + [40] = 15, + [41] = 10, + [42] = 11, + [43] = 14, + [44] = 22, [45] = 45, [46] = 46, - [47] = 47, - [48] = 48, - [49] = 48, - [50] = 48, - [51] = 47, - [52] = 52, - [53] = 53, - [54] = 53, - [55] = 53, - [56] = 47, - [57] = 53, - [58] = 48, - [59] = 47, - [60] = 60, - [61] = 61, - [62] = 61, + [47] = 28, + [48] = 39, + [49] = 45, + [50] = 50, + [51] = 34, + [52] = 46, + [53] = 50, + [54] = 26, + [55] = 46, + [56] = 56, + [57] = 45, + [58] = 45, + [59] = 50, + [60] = 50, + [61] = 27, + [62] = 46, [63] = 63, - [64] = 60, - [65] = 63, - [66] = 60, - [67] = 63, - [68] = 60, + [64] = 64, + [65] = 65, + [66] = 64, + [67] = 65, + [68] = 64, [69] = 63, - [70] = 61, - [71] = 61, - [72] = 72, - [73] = 73, - [74] = 73, - [75] = 72, - [76] = 72, - [77] = 73, - [78] = 78, - [79] = 78, - [80] = 78, - [81] = 78, - [82] = 82, - [83] = 82, - [84] = 84, - [85] = 84, + [70] = 65, + [71] = 63, + [72] = 65, + [73] = 63, + [74] = 64, + [75] = 75, + [76] = 76, + [77] = 76, + [78] = 75, + [79] = 75, + [80] = 76, + [81] = 81, + [82] = 81, + [83] = 81, + [84] = 81, + [85] = 85, [86] = 86, - [87] = 82, - [88] = 86, - [89] = 86, - [90] = 84, - [91] = 7, - [92] = 2, - [93] = 14, - [94] = 10, - [95] = 3, - [96] = 9, - [97] = 8, - [98] = 17, - [99] = 12, - [100] = 13, - [101] = 5, - [102] = 35, - [103] = 22, - [104] = 20, - [105] = 6, - [106] = 16, - [107] = 30, - [108] = 29, - [109] = 25, - [110] = 4, - [111] = 11, - [112] = 112, - [113] = 112, - [114] = 112, + [87] = 85, + [88] = 88, + [89] = 88, + [90] = 90, + [91] = 86, + [92] = 85, + [93] = 90, + [94] = 90, + [95] = 86, + [96] = 88, + [97] = 26, + [98] = 98, + [99] = 98, + [100] = 100, + [101] = 22, + [102] = 98, + [103] = 27, + [104] = 98, + [105] = 17, + [106] = 106, + [107] = 15, + [108] = 19, + [109] = 5, + [110] = 110, + [111] = 110, + [112] = 110, + [113] = 16, + [114] = 110, [115] = 115, - [116] = 115, - [117] = 115, - [118] = 115, - [119] = 22, - [120] = 120, + [116] = 12, + [117] = 7, + [118] = 10, + [119] = 26, + [120] = 22, [121] = 121, - [122] = 20, - [123] = 121, - [124] = 121, - [125] = 25, - [126] = 121, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 130, - [131] = 131, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 133, - [136] = 134, - [137] = 134, - [138] = 134, - [139] = 133, + [122] = 30, + [123] = 28, + [124] = 27, + [125] = 11, + [126] = 14, + [127] = 8, + [128] = 18, + [129] = 9, + [130] = 6, + [131] = 34, + [132] = 39, + [133] = 3, + [134] = 13, + [135] = 135, + [136] = 135, + [137] = 135, + [138] = 138, + [139] = 139, [140] = 140, - [141] = 133, + [141] = 141, [142] = 142, [143] = 143, - [144] = 144, - [145] = 145, + [144] = 143, + [145] = 142, [146] = 146, - [147] = 143, - [148] = 148, - [149] = 149, - [150] = 148, - [151] = 144, + [147] = 146, + [148] = 142, + [149] = 146, + [150] = 143, + [151] = 142, [152] = 143, - [153] = 146, - [154] = 145, - [155] = 144, + [153] = 153, + [154] = 154, + [155] = 155, [156] = 156, - [157] = 148, - [158] = 148, - [159] = 144, - [160] = 146, - [161] = 146, - [162] = 145, - [163] = 145, - [164] = 143, - [165] = 12, - [166] = 13, - [167] = 167, - [168] = 6, - [169] = 169, - [170] = 170, - [171] = 10, - [172] = 9, - [173] = 169, - [174] = 169, - [175] = 167, - [176] = 8, - [177] = 167, - [178] = 4, + [157] = 157, + [158] = 155, + [159] = 156, + [160] = 153, + [161] = 161, + [162] = 156, + [163] = 163, + [164] = 154, + [165] = 153, + [166] = 163, + [167] = 161, + [168] = 168, + [169] = 163, + [170] = 155, + [171] = 163, + [172] = 156, + [173] = 154, + [174] = 154, + [175] = 161, + [176] = 155, + [177] = 161, + [178] = 178, [179] = 179, - [180] = 3, - [181] = 11, - [182] = 5, - [183] = 169, - [184] = 167, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 187, - [190] = 188, - [191] = 191, - [192] = 192, - [193] = 186, - [194] = 194, - [195] = 195, - [196] = 187, - [197] = 192, - [198] = 198, - [199] = 194, - [200] = 188, - [201] = 192, - [202] = 185, - [203] = 194, - [204] = 186, - [205] = 185, - [206] = 192, - [207] = 188, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 182, + [184] = 182, + [185] = 182, + [186] = 8, + [187] = 180, + [188] = 9, + [189] = 3, + [190] = 180, + [191] = 18, + [192] = 14, + [193] = 6, + [194] = 13, + [195] = 180, + [196] = 11, + [197] = 7, + [198] = 10, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 201, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 205, [208] = 208, - [209] = 209, - [210] = 194, - [211] = 209, - [212] = 186, - [213] = 209, - [214] = 191, - [215] = 191, - [216] = 191, + [209] = 201, + [210] = 200, + [211] = 211, + [212] = 205, + [213] = 201, + [214] = 208, + [215] = 215, + [216] = 204, + [217] = 199, + [218] = 208, + [219] = 204, + [220] = 200, + [221] = 208, + [222] = 222, + [223] = 223, + [224] = 211, + [225] = 215, + [226] = 211, + [227] = 200, + [228] = 204, + [229] = 215, + [230] = 199, + [231] = 203, + [232] = 203, + [233] = 203, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -729,739 +753,551 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(38); + if (eof) ADVANCE(25); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(34); - if (lookahead == '#') ADVANCE(39); - if (lookahead == '%') ADVANCE(89); + lookahead == '`') ADVANCE(19); + if (lookahead == '#') ADVANCE(26); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(2); if (lookahead == '(') ADVANCE(3); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(78); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '<') ADVANCE(80); - if (lookahead == '=') ADVANCE(84); - if (lookahead == '>') ADVANCE(81); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(79); - if (lookahead == 'a') ADVANCE(58); - if (lookahead == 'e') ADVANCE(55); - if (lookahead == 'f') ADVANCE(63); - if (lookahead == 'i') ADVANCE(59); - if (lookahead == 'o') ADVANCE(64); - if (lookahead == 's') ADVANCE(49); - if (lookahead == 't') ADVANCE(53); - if (lookahead == 'w') ADVANCE(54); - if (lookahead == '{') ADVANCE(82); - if (lookahead == '|') ADVANCE(71); - if (lookahead == '}') ADVANCE(83); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(51); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '/') ADVANCE(61); + if (lookahead == '<') ADVANCE(53); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '>') ADVANCE(54); + if (lookahead == '[') ADVANCE(50); + if (lookahead == ']') ADVANCE(52); + if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == 't') ADVANCE(36); + if (lookahead == 'w') ADVANCE(37); + if (lookahead == '{') ADVANCE(55); + if (lookahead == '|') ADVANCE(44); + if (lookahead == '}') ADVANCE(56); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == '.' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(72); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 1: - if (lookahead == '%') ADVANCE(89); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(2); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(85); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '=') ADVANCE(84); - if (lookahead == 'a') ADVANCE(19); - if (lookahead == 'e') ADVANCE(16); - if (lookahead == 'f') ADVANCE(24); - if (lookahead == 'i') ADVANCE(20); - if (lookahead == 'o') ADVANCE(25); - if (lookahead == 's') ADVANCE(10); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'w') ADVANCE(15); - if (lookahead == '|') ADVANCE(32); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(58); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '/') ADVANCE(61); + if (lookahead == '=') ADVANCE(57); + if (lookahead == 'a') ADVANCE(13); + if (lookahead == 'e') ADVANCE(12); + if (lookahead == 'o') ADVANCE(15); + if (lookahead == 't') ADVANCE(10); + if (lookahead == 'w') ADVANCE(11); + if (lookahead == '|') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) END_STATE(); case 2: - if (lookahead == '&') ADVANCE(93); + if (lookahead == '&') ADVANCE(66); END_STATE(); case 3: - if (lookahead == ')') ADVANCE(76); + if (lookahead == ')') ADVANCE(49); END_STATE(); case 4: - if (lookahead == '>') ADVANCE(42); + if (lookahead == '>') ADVANCE(29); END_STATE(); case 5: - if (lookahead == 'c') ADVANCE(31); + if (lookahead == 'd') ADVANCE(69); END_STATE(); case 6: - if (lookahead == 'd') ADVANCE(96); + if (lookahead == 'e') ADVANCE(77); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(112); + if (lookahead == 'e') ADVANCE(73); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(5); + if (lookahead == 'e') ADVANCE(14); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 'e') ADVANCE(16); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(17); + if (lookahead == 'h') ADVANCE(8); END_STATE(); case 11: - if (lookahead == 'e') ADVANCE(21); + if (lookahead == 'h') ADVANCE(9); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(27); + if (lookahead == 'l') ADVANCE(17); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'n') ADVANCE(5); END_STATE(); case 14: - if (lookahead == 'h') ADVANCE(11); + if (lookahead == 'n') ADVANCE(75); END_STATE(); case 15: - if (lookahead == 'h') ADVANCE(12); + if (lookahead == 'r') ADVANCE(71); END_STATE(); case 16: - if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'r') ADVANCE(7); END_STATE(); case 17: - if (lookahead == 'l') ADVANCE(8); + if (lookahead == 's') ADVANCE(6); END_STATE(); case 18: - if (lookahead == 'm') ADVANCE(106); + if (lookahead == '|') ADVANCE(67); END_STATE(); case 19: - if (lookahead == 'n') ADVANCE(6); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(48); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(19); END_STATE(); case 20: - if (lookahead == 'n') ADVANCE(29); + if (eof) ADVANCE(25); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(19); + if (lookahead == '#') ADVANCE(26); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '&') ADVANCE(2); + if (lookahead == '(') ADVANCE(3); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(51); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '/') ADVANCE(61); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '[') ADVANCE(50); + if (lookahead == ']') ADVANCE(52); + if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == '|') ADVANCE(44); + if (lookahead == '}') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); + if (lookahead == '.' || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 21: - if (lookahead == 'n') ADVANCE(110); + if (eof) ADVANCE(25); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(19); + if (lookahead == '#') ADVANCE(26); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '&') ADVANCE(2); + if (lookahead == '(') ADVANCE(3); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(58); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '/') ADVANCE(61); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '[') ADVANCE(50); + if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == 'w') ADVANCE(37); + if (lookahead == '|') ADVANCE(44); + if (lookahead == '}') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(21) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); + if (lookahead == '.' || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(18); + if (eof) ADVANCE(25); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(19); + if (lookahead == '#') ADVANCE(26); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '&') ADVANCE(2); + if (lookahead == '(') ADVANCE(3); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(58); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '/') ADVANCE(61); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '[') ADVANCE(50); + if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == '|') ADVANCE(44); + if (lookahead == '}') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(22) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); + if (lookahead == '.' || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(102); + if (eof) ADVANCE(25); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(19); + if (lookahead == '#') ADVANCE(26); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '&') ADVANCE(2); + if (lookahead == '(') ADVANCE(3); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(58); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '/') ADVANCE(61); + if (lookahead == '=') ADVANCE(57); + if (lookahead == '[') ADVANCE(50); + if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == 'w') ADVANCE(37); + if (lookahead == '|') ADVANCE(44); + if (lookahead == '}') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); + if (lookahead == '.' || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 24: - if (lookahead == 'r') ADVANCE(22); + if (eof) ADVANCE(25); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(19); + if (lookahead == '#') ADVANCE(26); + if (lookahead == '(') ADVANCE(3); + if (lookahead == ',') ADVANCE(51); + if (lookahead == '-') ADVANCE(4); + if (lookahead == '>') ADVANCE(54); + if (lookahead == '[') ADVANCE(50); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '}') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(24) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); + if (lookahead == '.' || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); END_STATE(); case 25: - if (lookahead == 'r') ADVANCE(98); - END_STATE(); - case 26: - if (lookahead == 'r') ADVANCE(30); - END_STATE(); - case 27: - if (lookahead == 'r') ADVANCE(9); - END_STATE(); - case 28: - if (lookahead == 's') ADVANCE(7); - END_STATE(); - case 29: - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(23); - END_STATE(); - case 30: - if (lookahead == 't') ADVANCE(100); - END_STATE(); - case 31: - if (lookahead == 't') ADVANCE(104); - END_STATE(); - case 32: - if (lookahead == '|') ADVANCE(94); - END_STATE(); - case 33: - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(34); - if (lookahead == '(') ADVANCE(3); - if (lookahead == ',') ADVANCE(78); - if (lookahead == '>') ADVANCE(81); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(79); - if (lookahead == '}') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(33) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); - if (lookahead == '.' || - ('_' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 34: - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(75); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(34); - END_STATE(); - case 35: - if (eof) ADVANCE(38); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(34); - if (lookahead == '#') ADVANCE(39); - if (lookahead == '%') ADVANCE(89); - if (lookahead == '&') ADVANCE(2); - if (lookahead == '(') ADVANCE(3); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(78); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '=') ADVANCE(84); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(79); - if (lookahead == 'a') ADVANCE(58); - if (lookahead == 'f') ADVANCE(63); - if (lookahead == 'i') ADVANCE(59); - if (lookahead == 'o') ADVANCE(64); - if (lookahead == 's') ADVANCE(49); - if (lookahead == 'w') ADVANCE(54); - if (lookahead == '|') ADVANCE(71); - if (lookahead == '}') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); - if (lookahead == '.' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(72); - END_STATE(); - case 36: - if (eof) ADVANCE(38); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(34); - if (lookahead == '#') ADVANCE(39); - if (lookahead == '%') ADVANCE(89); - if (lookahead == '&') ADVANCE(2); - if (lookahead == '(') ADVANCE(3); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(85); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '=') ADVANCE(84); - if (lookahead == '[') ADVANCE(77); - if (lookahead == 'a') ADVANCE(58); - if (lookahead == 'e') ADVANCE(55); - if (lookahead == 'f') ADVANCE(63); - if (lookahead == 'i') ADVANCE(59); - if (lookahead == 'o') ADVANCE(64); - if (lookahead == 's') ADVANCE(49); - if (lookahead == 'w') ADVANCE(54); - if (lookahead == '|') ADVANCE(71); - if (lookahead == '}') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); - if (lookahead == '.' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(72); - END_STATE(); - case 37: - if (eof) ADVANCE(38); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(34); - if (lookahead == '#') ADVANCE(39); - if (lookahead == '(') ADVANCE(3); - if (lookahead == '-') ADVANCE(4); - if (lookahead == '[') ADVANCE(77); - if (lookahead == 's') ADVANCE(49); - if (lookahead == '}') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); - if (lookahead == '.' || - ('_' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 38: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 39: + case 26: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 40: + case 27: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(40); + lookahead == ' ') ADVANCE(27); if (lookahead != 0 && - lookahead != '\n') ADVANCE(41); + lookahead != '\n') ADVANCE(28); END_STATE(); - case 41: + case 28: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(41); + lookahead != '\n') ADVANCE(28); + END_STATE(); + case 29: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 30: + ACCEPT_TOKEN(sym_identifier); + END_STATE(); + case 31: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 32: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 33: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 34: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 35: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 36: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 37: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 38: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 39: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 40: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); + END_STATE(); + case 41: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); END_STATE(); case 43: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(45); END_STATE(); case 44: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (lookahead == '|') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 45: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(97); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); case 46: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); END_STATE(); case 47: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(44); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 48: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 49: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 50: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 51: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 52: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 53: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 54: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 55: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 56: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 57: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 58: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 59: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 60: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 61: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 62: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 63: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 64: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 65: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 66: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 67: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 68: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(52); - if (lookahead == 't') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 69: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 70: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 71: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '|') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - END_STATE(); - case 72: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 73: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); - END_STATE(); - case 74: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); - END_STATE(); - case 75: ACCEPT_TOKEN(sym_string); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(75); + lookahead == '`') ADVANCE(48); if (lookahead != 0 && - lookahead != '\n') ADVANCE(34); + lookahead != '\n') ADVANCE(19); END_STATE(); - case 76: + case 49: ACCEPT_TOKEN(sym_empty); END_STATE(); - case 77: + case 50: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 78: + case 51: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 79: + case 52: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 80: + case 53: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 81: + case 54: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 82: + case 55: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 83: + case 56: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 84: + case 57: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(90); + if (lookahead == '=') ADVANCE(63); END_STATE(); - case 85: + case 58: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(91); + if (lookahead == '=') ADVANCE(64); END_STATE(); - case 86: + case 59: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(42); + if (lookahead == '=') ADVANCE(65); + if (lookahead == '>') ADVANCE(29); END_STATE(); - case 87: + case 60: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 88: + case 61: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 89: + case 62: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 90: + case 63: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 91: + case 64: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 92: + case 65: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 93: + case 66: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 94: + case 67: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 95: + case 68: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); - case 96: + case 69: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 97: + case 70: ACCEPT_TOKEN(anon_sym_and); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); - case 98: + case 71: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 99: + case 72: ACCEPT_TOKEN(anon_sym_or); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_insert); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_insert); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_into); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_into); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_select); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_select); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_from); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_from); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); - END_STATE(); - case 108: + case 73: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 109: + case 74: ACCEPT_TOKEN(anon_sym_where); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); - case 110: + case 75: ACCEPT_TOKEN(anon_sym_then); END_STATE(); - case 111: + case 76: ACCEPT_TOKEN(anon_sym_then); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); - case 112: + case 77: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 113: + case 78: ACCEPT_TOKEN(anon_sym_else); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(72); + lookahead == '|') ADVANCE(45); END_STATE(); default: return false; @@ -1477,105 +1313,157 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(2); if (lookahead == 'm') ADVANCE(3); if (lookahead == 'o') ADVANCE(4); - if (lookahead == 't') ADVANCE(5); + if (lookahead == 's') ADVANCE(5); + if (lookahead == 't') ADVANCE(6); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'a') ADVANCE(6); - if (lookahead == 'u') ADVANCE(7); + if (lookahead == 'a') ADVANCE(7); + if (lookahead == 'r') ADVANCE(8); + if (lookahead == 'u') ADVANCE(9); END_STATE(); case 2: - if (lookahead == 'f') ADVANCE(8); + if (lookahead == 'f') ADVANCE(10); + if (lookahead == 'n') ADVANCE(11); END_STATE(); case 3: - if (lookahead == 'a') ADVANCE(9); + if (lookahead == 'a') ADVANCE(12); END_STATE(); case 4: - if (lookahead == 'u') ADVANCE(10); + if (lookahead == 'u') ADVANCE(13); END_STATE(); case 5: - if (lookahead == 'a') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); + if (lookahead == 'e') ADVANCE(14); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'a') ADVANCE(15); + if (lookahead == 'r') ADVANCE(16); END_STATE(); case 7: - if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'l') ADVANCE(17); END_STATE(); case 8: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'o') ADVANCE(18); END_STATE(); case 9: - if (lookahead == 'p') ADVANCE(15); + if (lookahead == 'n') ADVANCE(19); END_STATE(); case 10: - if (lookahead == 't') ADVANCE(16); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 11: - if (lookahead == 'b') ADVANCE(17); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 't') ADVANCE(21); END_STATE(); case 12: - if (lookahead == 'u') ADVANCE(18); + if (lookahead == 'p') ADVANCE(22); END_STATE(); case 13: - if (lookahead == 's') ADVANCE(19); + if (lookahead == 't') ADVANCE(23); END_STATE(); case 14: - if (lookahead == 'c') ADVANCE(20); + if (lookahead == 'l') ADVANCE(24); END_STATE(); case 15: - ACCEPT_TOKEN(anon_sym_map); + if (lookahead == 'b') ADVANCE(25); END_STATE(); case 16: - if (lookahead == 'p') ADVANCE(21); - END_STATE(); - case 17: - if (lookahead == 'l') ADVANCE(22); - END_STATE(); - case 18: - if (lookahead == 'e') ADVANCE(23); - END_STATE(); - case 19: - if (lookahead == 'e') ADVANCE(24); - END_STATE(); - case 20: - if (lookahead == 't') ADVANCE(25); - END_STATE(); - case 21: if (lookahead == 'u') ADVANCE(26); END_STATE(); + case 17: + if (lookahead == 's') ADVANCE(27); + END_STATE(); + case 18: + if (lookahead == 'm') ADVANCE(28); + END_STATE(); + case 19: + if (lookahead == 'c') ADVANCE(29); + END_STATE(); + case 20: + if (lookahead == 'e') ADVANCE(30); + END_STATE(); + case 21: + if (lookahead == 'o') ADVANCE(31); + END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(27); + ACCEPT_TOKEN(anon_sym_map); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'p') ADVANCE(32); END_STATE(); case 24: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'e') ADVANCE(33); END_STATE(); case 25: - if (lookahead == 'i') ADVANCE(28); + if (lookahead == 'l') ADVANCE(34); END_STATE(); case 26: - if (lookahead == 't') ADVANCE(29); + if (lookahead == 'e') ADVANCE(35); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_table); + if (lookahead == 'e') ADVANCE(36); END_STATE(); case 28: - if (lookahead == 'o') ADVANCE(30); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_output); + if (lookahead == 't') ADVANCE(37); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(31); + if (lookahead == 'r') ADVANCE(38); END_STATE(); case 31: + ACCEPT_TOKEN(anon_sym_into); + END_STATE(); + case 32: + if (lookahead == 'u') ADVANCE(39); + END_STATE(); + case 33: + if (lookahead == 'c') ADVANCE(40); + END_STATE(); + case 34: + if (lookahead == 'e') ADVANCE(41); + END_STATE(); + case 35: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 37: + if (lookahead == 'i') ADVANCE(42); + END_STATE(); + case 38: + if (lookahead == 't') ADVANCE(43); + END_STATE(); + case 39: + if (lookahead == 't') ADVANCE(44); + END_STATE(); + case 40: + if (lookahead == 't') ADVANCE(45); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_table); + END_STATE(); + case 42: + if (lookahead == 'o') ADVANCE(46); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_insert); + END_STATE(); + case 44: + ACCEPT_TOKEN(anon_sym_output); + END_STATE(); + case 45: + ACCEPT_TOKEN(anon_sym_select); + END_STATE(); + case 46: + if (lookahead == 'n') ADVANCE(47); + END_STATE(); + case 47: ACCEPT_TOKEN(anon_sym_function); END_STATE(); default: @@ -1585,222 +1473,239 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 37}, - [2] = {.lex_state = 36}, - [3] = {.lex_state = 35}, - [4] = {.lex_state = 35}, - [5] = {.lex_state = 35}, - [6] = {.lex_state = 35}, - [7] = {.lex_state = 36}, - [8] = {.lex_state = 35}, - [9] = {.lex_state = 35}, - [10] = {.lex_state = 35}, - [11] = {.lex_state = 35}, - [12] = {.lex_state = 35}, - [13] = {.lex_state = 35}, - [14] = {.lex_state = 36}, - [15] = {.lex_state = 36}, - [16] = {.lex_state = 36}, - [17] = {.lex_state = 36}, - [18] = {.lex_state = 35}, - [19] = {.lex_state = 35}, - [20] = {.lex_state = 36}, - [21] = {.lex_state = 36}, - [22] = {.lex_state = 36}, - [23] = {.lex_state = 36}, - [24] = {.lex_state = 36}, - [25] = {.lex_state = 36}, - [26] = {.lex_state = 35}, - [27] = {.lex_state = 35}, - [28] = {.lex_state = 36}, - [29] = {.lex_state = 36}, - [30] = {.lex_state = 36}, - [31] = {.lex_state = 36}, - [32] = {.lex_state = 36}, - [33] = {.lex_state = 36}, - [34] = {.lex_state = 36}, - [35] = {.lex_state = 36}, - [36] = {.lex_state = 36}, - [37] = {.lex_state = 36}, - [38] = {.lex_state = 35}, - [39] = {.lex_state = 35}, - [40] = {.lex_state = 35}, - [41] = {.lex_state = 35}, - [42] = {.lex_state = 35}, - [43] = {.lex_state = 35}, - [44] = {.lex_state = 35}, - [45] = {.lex_state = 37}, - [46] = {.lex_state = 37}, - [47] = {.lex_state = 37}, - [48] = {.lex_state = 37}, - [49] = {.lex_state = 37}, - [50] = {.lex_state = 37}, - [51] = {.lex_state = 37}, - [52] = {.lex_state = 37}, - [53] = {.lex_state = 37}, - [54] = {.lex_state = 37}, - [55] = {.lex_state = 37}, - [56] = {.lex_state = 37}, - [57] = {.lex_state = 37}, - [58] = {.lex_state = 37}, - [59] = {.lex_state = 37}, - [60] = {.lex_state = 37}, - [61] = {.lex_state = 37}, - [62] = {.lex_state = 37}, - [63] = {.lex_state = 37}, - [64] = {.lex_state = 37}, - [65] = {.lex_state = 37}, - [66] = {.lex_state = 37}, - [67] = {.lex_state = 37}, - [68] = {.lex_state = 37}, - [69] = {.lex_state = 37}, - [70] = {.lex_state = 37}, - [71] = {.lex_state = 37}, - [72] = {.lex_state = 37}, - [73] = {.lex_state = 37}, - [74] = {.lex_state = 37}, - [75] = {.lex_state = 37}, - [76] = {.lex_state = 37}, - [77] = {.lex_state = 37}, - [78] = {.lex_state = 37}, - [79] = {.lex_state = 37}, - [80] = {.lex_state = 37}, - [81] = {.lex_state = 37}, - [82] = {.lex_state = 37}, - [83] = {.lex_state = 37}, - [84] = {.lex_state = 37}, - [85] = {.lex_state = 37}, - [86] = {.lex_state = 37}, - [87] = {.lex_state = 37}, - [88] = {.lex_state = 37}, - [89] = {.lex_state = 37}, - [90] = {.lex_state = 37}, - [91] = {.lex_state = 1}, - [92] = {.lex_state = 1}, - [93] = {.lex_state = 1}, - [94] = {.lex_state = 1}, - [95] = {.lex_state = 1}, - [96] = {.lex_state = 1}, - [97] = {.lex_state = 1}, - [98] = {.lex_state = 1}, - [99] = {.lex_state = 1}, - [100] = {.lex_state = 1}, - [101] = {.lex_state = 1}, - [102] = {.lex_state = 1}, - [103] = {.lex_state = 1}, - [104] = {.lex_state = 1}, + [1] = {.lex_state = 24}, + [2] = {.lex_state = 24}, + [3] = {.lex_state = 20}, + [4] = {.lex_state = 24}, + [5] = {.lex_state = 22}, + [6] = {.lex_state = 20}, + [7] = {.lex_state = 20}, + [8] = {.lex_state = 20}, + [9] = {.lex_state = 20}, + [10] = {.lex_state = 20}, + [11] = {.lex_state = 20}, + [12] = {.lex_state = 22}, + [13] = {.lex_state = 20}, + [14] = {.lex_state = 20}, + [15] = {.lex_state = 22}, + [16] = {.lex_state = 21}, + [17] = {.lex_state = 21}, + [18] = {.lex_state = 20}, + [19] = {.lex_state = 22}, + [20] = {.lex_state = 22}, + [21] = {.lex_state = 22}, + [22] = {.lex_state = 22}, + [23] = {.lex_state = 20}, + [24] = {.lex_state = 20}, + [25] = {.lex_state = 20}, + [26] = {.lex_state = 22}, + [27] = {.lex_state = 22}, + [28] = {.lex_state = 22}, + [29] = {.lex_state = 22}, + [30] = {.lex_state = 22}, + [31] = {.lex_state = 22}, + [32] = {.lex_state = 23}, + [33] = {.lex_state = 23}, + [34] = {.lex_state = 22}, + [35] = {.lex_state = 22}, + [36] = {.lex_state = 22}, + [37] = {.lex_state = 22}, + [38] = {.lex_state = 22}, + [39] = {.lex_state = 22}, + [40] = {.lex_state = 20}, + [41] = {.lex_state = 22}, + [42] = {.lex_state = 22}, + [43] = {.lex_state = 22}, + [44] = {.lex_state = 20}, + [45] = {.lex_state = 24}, + [46] = {.lex_state = 24}, + [47] = {.lex_state = 20}, + [48] = {.lex_state = 20}, + [49] = {.lex_state = 24}, + [50] = {.lex_state = 24}, + [51] = {.lex_state = 20}, + [52] = {.lex_state = 24}, + [53] = {.lex_state = 24}, + [54] = {.lex_state = 20}, + [55] = {.lex_state = 24}, + [56] = {.lex_state = 24}, + [57] = {.lex_state = 24}, + [58] = {.lex_state = 24}, + [59] = {.lex_state = 24}, + [60] = {.lex_state = 24}, + [61] = {.lex_state = 20}, + [62] = {.lex_state = 24}, + [63] = {.lex_state = 24}, + [64] = {.lex_state = 24}, + [65] = {.lex_state = 24}, + [66] = {.lex_state = 24}, + [67] = {.lex_state = 24}, + [68] = {.lex_state = 24}, + [69] = {.lex_state = 24}, + [70] = {.lex_state = 24}, + [71] = {.lex_state = 24}, + [72] = {.lex_state = 24}, + [73] = {.lex_state = 24}, + [74] = {.lex_state = 24}, + [75] = {.lex_state = 24}, + [76] = {.lex_state = 24}, + [77] = {.lex_state = 24}, + [78] = {.lex_state = 24}, + [79] = {.lex_state = 24}, + [80] = {.lex_state = 24}, + [81] = {.lex_state = 24}, + [82] = {.lex_state = 24}, + [83] = {.lex_state = 24}, + [84] = {.lex_state = 24}, + [85] = {.lex_state = 24}, + [86] = {.lex_state = 24}, + [87] = {.lex_state = 24}, + [88] = {.lex_state = 24}, + [89] = {.lex_state = 24}, + [90] = {.lex_state = 24}, + [91] = {.lex_state = 24}, + [92] = {.lex_state = 24}, + [93] = {.lex_state = 24}, + [94] = {.lex_state = 24}, + [95] = {.lex_state = 24}, + [96] = {.lex_state = 24}, + [97] = {.lex_state = 24}, + [98] = {.lex_state = 24}, + [99] = {.lex_state = 24}, + [100] = {.lex_state = 24}, + [101] = {.lex_state = 24}, + [102] = {.lex_state = 24}, + [103] = {.lex_state = 24}, + [104] = {.lex_state = 24}, [105] = {.lex_state = 1}, - [106] = {.lex_state = 1}, + [106] = {.lex_state = 24}, [107] = {.lex_state = 1}, [108] = {.lex_state = 1}, [109] = {.lex_state = 1}, - [110] = {.lex_state = 1}, - [111] = {.lex_state = 1}, - [112] = {.lex_state = 1}, + [110] = {.lex_state = 24}, + [111] = {.lex_state = 24}, + [112] = {.lex_state = 24}, [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 33}, - [116] = {.lex_state = 33}, - [117] = {.lex_state = 33}, - [118] = {.lex_state = 33}, - [119] = {.lex_state = 37}, - [120] = {.lex_state = 33}, - [121] = {.lex_state = 33}, - [122] = {.lex_state = 37}, - [123] = {.lex_state = 33}, - [124] = {.lex_state = 33}, - [125] = {.lex_state = 37}, - [126] = {.lex_state = 33}, - [127] = {.lex_state = 33}, - [128] = {.lex_state = 37}, - [129] = {.lex_state = 37}, - [130] = {.lex_state = 37}, - [131] = {.lex_state = 33}, - [132] = {.lex_state = 33}, - [133] = {.lex_state = 0}, - [134] = {.lex_state = 0}, - [135] = {.lex_state = 0}, - [136] = {.lex_state = 0}, - [137] = {.lex_state = 0}, - [138] = {.lex_state = 0}, - [139] = {.lex_state = 0}, - [140] = {.lex_state = 0}, - [141] = {.lex_state = 0}, - [142] = {.lex_state = 33}, - [143] = {.lex_state = 33}, - [144] = {.lex_state = 33}, - [145] = {.lex_state = 33}, - [146] = {.lex_state = 33}, - [147] = {.lex_state = 33}, - [148] = {.lex_state = 33}, - [149] = {.lex_state = 33}, - [150] = {.lex_state = 33}, - [151] = {.lex_state = 33}, - [152] = {.lex_state = 33}, - [153] = {.lex_state = 33}, - [154] = {.lex_state = 33}, - [155] = {.lex_state = 33}, - [156] = {.lex_state = 33}, - [157] = {.lex_state = 33}, - [158] = {.lex_state = 33}, - [159] = {.lex_state = 33}, - [160] = {.lex_state = 33}, - [161] = {.lex_state = 33}, - [162] = {.lex_state = 33}, - [163] = {.lex_state = 33}, - [164] = {.lex_state = 33}, - [165] = {.lex_state = 33}, - [166] = {.lex_state = 33}, - [167] = {.lex_state = 33}, - [168] = {.lex_state = 33}, - [169] = {.lex_state = 0}, - [170] = {.lex_state = 33}, - [171] = {.lex_state = 33}, - [172] = {.lex_state = 33}, - [173] = {.lex_state = 0}, - [174] = {.lex_state = 0}, - [175] = {.lex_state = 33}, - [176] = {.lex_state = 33}, - [177] = {.lex_state = 33}, - [178] = {.lex_state = 33}, - [179] = {.lex_state = 33}, - [180] = {.lex_state = 33}, - [181] = {.lex_state = 33}, - [182] = {.lex_state = 33}, - [183] = {.lex_state = 0}, - [184] = {.lex_state = 33}, - [185] = {.lex_state = 1}, - [186] = {.lex_state = 0}, - [187] = {.lex_state = 33}, - [188] = {.lex_state = 0}, - [189] = {.lex_state = 33}, + [114] = {.lex_state = 24}, + [115] = {.lex_state = 24}, + [116] = {.lex_state = 1}, + [117] = {.lex_state = 1}, + [118] = {.lex_state = 1}, + [119] = {.lex_state = 1}, + [120] = {.lex_state = 1}, + [121] = {.lex_state = 24}, + [122] = {.lex_state = 1}, + [123] = {.lex_state = 1}, + [124] = {.lex_state = 1}, + [125] = {.lex_state = 1}, + [126] = {.lex_state = 1}, + [127] = {.lex_state = 1}, + [128] = {.lex_state = 1}, + [129] = {.lex_state = 1}, + [130] = {.lex_state = 1}, + [131] = {.lex_state = 1}, + [132] = {.lex_state = 1}, + [133] = {.lex_state = 1}, + [134] = {.lex_state = 1}, + [135] = {.lex_state = 1}, + [136] = {.lex_state = 1}, + [137] = {.lex_state = 1}, + [138] = {.lex_state = 24}, + [139] = {.lex_state = 24}, + [140] = {.lex_state = 24}, + [141] = {.lex_state = 24}, + [142] = {.lex_state = 0}, + [143] = {.lex_state = 0}, + [144] = {.lex_state = 0}, + [145] = {.lex_state = 0}, + [146] = {.lex_state = 24}, + [147] = {.lex_state = 24}, + [148] = {.lex_state = 0}, + [149] = {.lex_state = 24}, + [150] = {.lex_state = 0}, + [151] = {.lex_state = 0}, + [152] = {.lex_state = 0}, + [153] = {.lex_state = 0}, + [154] = {.lex_state = 24}, + [155] = {.lex_state = 24}, + [156] = {.lex_state = 24}, + [157] = {.lex_state = 24}, + [158] = {.lex_state = 24}, + [159] = {.lex_state = 24}, + [160] = {.lex_state = 0}, + [161] = {.lex_state = 24}, + [162] = {.lex_state = 24}, + [163] = {.lex_state = 24}, + [164] = {.lex_state = 24}, + [165] = {.lex_state = 0}, + [166] = {.lex_state = 24}, + [167] = {.lex_state = 24}, + [168] = {.lex_state = 24}, + [169] = {.lex_state = 24}, + [170] = {.lex_state = 24}, + [171] = {.lex_state = 24}, + [172] = {.lex_state = 24}, + [173] = {.lex_state = 24}, + [174] = {.lex_state = 24}, + [175] = {.lex_state = 24}, + [176] = {.lex_state = 24}, + [177] = {.lex_state = 24}, + [178] = {.lex_state = 24}, + [179] = {.lex_state = 24}, + [180] = {.lex_state = 0}, + [181] = {.lex_state = 24}, + [182] = {.lex_state = 24}, + [183] = {.lex_state = 24}, + [184] = {.lex_state = 24}, + [185] = {.lex_state = 24}, + [186] = {.lex_state = 24}, + [187] = {.lex_state = 0}, + [188] = {.lex_state = 24}, + [189] = {.lex_state = 24}, [190] = {.lex_state = 0}, - [191] = {.lex_state = 0}, - [192] = {.lex_state = 0}, - [193] = {.lex_state = 0}, - [194] = {.lex_state = 0}, + [191] = {.lex_state = 24}, + [192] = {.lex_state = 24}, + [193] = {.lex_state = 24}, + [194] = {.lex_state = 24}, [195] = {.lex_state = 0}, - [196] = {.lex_state = 33}, - [197] = {.lex_state = 0}, - [198] = {.lex_state = 40}, - [199] = {.lex_state = 0}, + [196] = {.lex_state = 24}, + [197] = {.lex_state = 24}, + [198] = {.lex_state = 24}, + [199] = {.lex_state = 24}, [200] = {.lex_state = 0}, [201] = {.lex_state = 0}, - [202] = {.lex_state = 1}, + [202] = {.lex_state = 0}, [203] = {.lex_state = 0}, [204] = {.lex_state = 0}, - [205] = {.lex_state = 1}, - [206] = {.lex_state = 0}, - [207] = {.lex_state = 0}, + [205] = {.lex_state = 24}, + [206] = {.lex_state = 27}, + [207] = {.lex_state = 24}, [208] = {.lex_state = 0}, - [209] = {.lex_state = 33}, + [209] = {.lex_state = 0}, [210] = {.lex_state = 0}, - [211] = {.lex_state = 33}, - [212] = {.lex_state = 0}, - [213] = {.lex_state = 33}, + [211] = {.lex_state = 24}, + [212] = {.lex_state = 24}, + [213] = {.lex_state = 0}, [214] = {.lex_state = 0}, - [215] = {.lex_state = 0}, + [215] = {.lex_state = 24}, [216] = {.lex_state = 0}, + [217] = {.lex_state = 24}, + [218] = {.lex_state = 0}, + [219] = {.lex_state = 0}, + [220] = {.lex_state = 0}, + [221] = {.lex_state = 0}, + [222] = {.lex_state = 0}, + [223] = {.lex_state = 0}, + [224] = {.lex_state = 24}, + [225] = {.lex_state = 24}, + [226] = {.lex_state = 24}, + [227] = {.lex_state = 0}, + [228] = {.lex_state = 0}, + [229] = {.lex_state = 24}, + [230] = {.lex_state = 24}, + [231] = {.lex_state = 0}, + [232] = {.lex_state = 0}, + [233] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -1838,35 +1743,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_and] = ACTIONS(1), [anon_sym_or] = ACTIONS(1), - [anon_sym_insert] = ACTIONS(1), - [anon_sym_into] = ACTIONS(1), [anon_sym_select] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), [anon_sym_where] = ACTIONS(1), + [anon_sym_insert] = ACTIONS(1), + [anon_sym_into] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_output] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(195), - [sym_item] = STATE(46), - [sym_comment] = STATE(128), - [sym_statement] = STATE(128), - [sym_open_statement] = STATE(119), - [sym_yield_statement] = STATE(122), - [sym_expression] = STATE(18), - [sym_value] = STATE(43), - [sym_boolean] = STATE(4), - [sym_list] = STATE(4), - [sym_function] = STATE(4), - [sym_table] = STATE(4), - [sym_map] = STATE(4), - [sym_operation] = STATE(43), - [sym_select] = STATE(43), - [sym_control_flow] = STATE(43), - [sym_tool] = STATE(43), - [aux_sym_root_repeat1] = STATE(46), + [sym_root] = STATE(223), + [sym_item] = STATE(4), + [sym_comment] = STATE(115), + [sym_statement] = STATE(115), + [sym_open_statement] = STATE(97), + [sym_yield_statement] = STATE(101), + [sym_expression] = STATE(23), + [sym_value] = STATE(47), + [sym_boolean] = STATE(8), + [sym_list] = STATE(8), + [sym_function] = STATE(8), + [sym_table] = STATE(8), + [sym_map] = STATE(8), + [sym_operation] = STATE(47), + [sym_select] = STATE(47), + [sym_insert] = STATE(47), + [sym_control_flow] = STATE(47), + [sym_tool] = STATE(47), + [aux_sym_root_repeat1] = STATE(4), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), [sym_float] = ACTIONS(7), @@ -1880,2398 +1786,1610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_table] = ACTIONS(17), [anon_sym_map] = ACTIONS(19), [anon_sym_select] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_output] = ACTIONS(25), + [anon_sym_insert] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_output] = ACTIONS(27), }, [2] = { - [sym_operator] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(27), - [sym_identifier] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_DASH_GT] = ACTIONS(27), - [sym_float] = ACTIONS(27), - [sym_integer] = ACTIONS(29), - [sym_string] = ACTIONS(27), - [sym_empty] = ACTIONS(27), - [anon_sym_true] = ACTIONS(29), - [anon_sym_false] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_function] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(27), - [anon_sym_table] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_EQ_EQ] = ACTIONS(27), - [anon_sym_PLUS_EQ] = ACTIONS(27), - [anon_sym_DASH_EQ] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_and] = ACTIONS(29), - [anon_sym_or] = ACTIONS(29), - [anon_sym_insert] = ACTIONS(29), - [anon_sym_into] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_from] = ACTIONS(29), - [anon_sym_where] = ACTIONS(29), - [anon_sym_if] = ACTIONS(29), - [anon_sym_else] = ACTIONS(29), - [anon_sym_output] = ACTIONS(29), + [sym_item] = STATE(2), + [sym_comment] = STATE(115), + [sym_statement] = STATE(115), + [sym_open_statement] = STATE(97), + [sym_yield_statement] = STATE(101), + [sym_expression] = STATE(23), + [sym_value] = STATE(47), + [sym_boolean] = STATE(8), + [sym_list] = STATE(8), + [sym_function] = STATE(8), + [sym_table] = STATE(8), + [sym_map] = STATE(8), + [sym_operation] = STATE(47), + [sym_select] = STATE(47), + [sym_insert] = STATE(47), + [sym_control_flow] = STATE(47), + [sym_tool] = STATE(47), + [aux_sym_root_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(29), + [sym_identifier] = ACTIONS(31), + [anon_sym_POUND] = ACTIONS(34), + [sym_float] = ACTIONS(37), + [sym_integer] = ACTIONS(40), + [sym_string] = ACTIONS(37), + [sym_empty] = ACTIONS(37), + [anon_sym_true] = ACTIONS(43), + [anon_sym_false] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(46), + [anon_sym_function] = ACTIONS(49), + [anon_sym_table] = ACTIONS(52), + [anon_sym_map] = ACTIONS(55), + [anon_sym_select] = ACTIONS(58), + [anon_sym_insert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(64), + [anon_sym_output] = ACTIONS(67), }, [3] = { - [ts_builtin_sym_end] = ACTIONS(31), - [sym_identifier] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(31), - [sym_float] = ACTIONS(31), - [sym_integer] = ACTIONS(33), - [sym_string] = ACTIONS(31), - [sym_empty] = ACTIONS(31), - [anon_sym_true] = ACTIONS(33), - [anon_sym_false] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(31), - [anon_sym_function] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(31), - [anon_sym_table] = ACTIONS(33), - [anon_sym_map] = ACTIONS(33), - [anon_sym_EQ] = ACTIONS(33), - [anon_sym_PLUS] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(33), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_SLASH] = ACTIONS(31), - [anon_sym_PERCENT] = ACTIONS(31), - [anon_sym_EQ_EQ] = ACTIONS(31), - [anon_sym_PLUS_EQ] = ACTIONS(31), - [anon_sym_DASH_EQ] = ACTIONS(31), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_PIPE_PIPE] = ACTIONS(33), - [anon_sym_and] = ACTIONS(33), - [anon_sym_or] = ACTIONS(33), - [anon_sym_insert] = ACTIONS(33), - [anon_sym_into] = ACTIONS(33), - [anon_sym_select] = ACTIONS(33), - [anon_sym_from] = ACTIONS(33), - [anon_sym_where] = ACTIONS(33), - [anon_sym_if] = ACTIONS(33), - [anon_sym_output] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(70), + [sym_identifier] = ACTIONS(72), + [anon_sym_POUND] = ACTIONS(70), + [anon_sym_DASH_GT] = ACTIONS(70), + [sym_float] = ACTIONS(70), + [sym_integer] = ACTIONS(72), + [sym_string] = ACTIONS(70), + [sym_empty] = ACTIONS(70), + [anon_sym_true] = ACTIONS(72), + [anon_sym_false] = ACTIONS(72), + [anon_sym_LBRACK] = ACTIONS(70), + [anon_sym_COMMA] = ACTIONS(70), + [anon_sym_RBRACK] = ACTIONS(70), + [anon_sym_function] = ACTIONS(72), + [anon_sym_RBRACE] = ACTIONS(70), + [anon_sym_table] = ACTIONS(72), + [anon_sym_map] = ACTIONS(72), + [anon_sym_EQ] = ACTIONS(72), + [anon_sym_PLUS] = ACTIONS(72), + [anon_sym_DASH] = ACTIONS(72), + [anon_sym_STAR] = ACTIONS(70), + [anon_sym_SLASH] = ACTIONS(70), + [anon_sym_PERCENT] = ACTIONS(70), + [anon_sym_EQ_EQ] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(70), + [anon_sym_DASH_EQ] = ACTIONS(70), + [anon_sym_AMP_AMP] = ACTIONS(70), + [anon_sym_PIPE_PIPE] = ACTIONS(72), + [anon_sym_and] = ACTIONS(72), + [anon_sym_or] = ACTIONS(72), + [anon_sym_select] = ACTIONS(72), + [anon_sym_insert] = ACTIONS(72), + [anon_sym_into] = ACTIONS(72), + [anon_sym_if] = ACTIONS(72), + [anon_sym_output] = ACTIONS(72), }, [4] = { - [ts_builtin_sym_end] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), - [anon_sym_POUND] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [sym_float] = ACTIONS(35), - [sym_integer] = ACTIONS(37), - [sym_string] = ACTIONS(35), - [sym_empty] = ACTIONS(35), - [anon_sym_true] = ACTIONS(37), - [anon_sym_false] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_function] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(35), - [anon_sym_table] = ACTIONS(37), - [anon_sym_map] = ACTIONS(37), - [anon_sym_EQ] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_PLUS_EQ] = ACTIONS(35), - [anon_sym_DASH_EQ] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(37), - [anon_sym_and] = ACTIONS(37), - [anon_sym_or] = ACTIONS(37), - [anon_sym_insert] = ACTIONS(37), - [anon_sym_into] = ACTIONS(37), - [anon_sym_select] = ACTIONS(37), - [anon_sym_from] = ACTIONS(37), - [anon_sym_where] = ACTIONS(37), - [anon_sym_if] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - }, - [5] = { - [ts_builtin_sym_end] = ACTIONS(39), - [sym_identifier] = ACTIONS(41), - [anon_sym_POUND] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [sym_float] = ACTIONS(39), - [sym_integer] = ACTIONS(41), - [sym_string] = ACTIONS(39), - [sym_empty] = ACTIONS(39), - [anon_sym_true] = ACTIONS(41), - [anon_sym_false] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_RBRACK] = ACTIONS(39), - [anon_sym_function] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(39), - [anon_sym_table] = ACTIONS(41), - [anon_sym_map] = ACTIONS(41), - [anon_sym_EQ] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_PLUS_EQ] = ACTIONS(39), - [anon_sym_DASH_EQ] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(41), - [anon_sym_and] = ACTIONS(41), - [anon_sym_or] = ACTIONS(41), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_into] = ACTIONS(41), - [anon_sym_select] = ACTIONS(41), - [anon_sym_from] = ACTIONS(41), - [anon_sym_where] = ACTIONS(41), - [anon_sym_if] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - }, - [6] = { - [ts_builtin_sym_end] = ACTIONS(43), - [sym_identifier] = ACTIONS(45), - [anon_sym_POUND] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(43), - [sym_float] = ACTIONS(43), - [sym_integer] = ACTIONS(45), - [sym_string] = ACTIONS(43), - [sym_empty] = ACTIONS(43), - [anon_sym_true] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(43), - [anon_sym_function] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(43), - [anon_sym_table] = ACTIONS(45), - [anon_sym_map] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_EQ_EQ] = ACTIONS(43), - [anon_sym_PLUS_EQ] = ACTIONS(43), - [anon_sym_DASH_EQ] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_PIPE_PIPE] = ACTIONS(45), - [anon_sym_and] = ACTIONS(45), - [anon_sym_or] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(45), - [anon_sym_into] = ACTIONS(45), - [anon_sym_select] = ACTIONS(45), - [anon_sym_from] = ACTIONS(45), - [anon_sym_where] = ACTIONS(45), - [anon_sym_if] = ACTIONS(45), - [anon_sym_output] = ACTIONS(45), - }, - [7] = { - [sym_operator] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(47), - [sym_identifier] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(47), - [anon_sym_DASH_GT] = ACTIONS(47), - [sym_float] = ACTIONS(47), - [sym_integer] = ACTIONS(49), - [sym_string] = ACTIONS(47), - [sym_empty] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(47), - [anon_sym_function] = ACTIONS(49), - [anon_sym_RBRACE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_map] = ACTIONS(49), - [anon_sym_EQ] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_SLASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(53), - [anon_sym_EQ_EQ] = ACTIONS(53), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(53), - [anon_sym_PIPE_PIPE] = ACTIONS(51), - [anon_sym_and] = ACTIONS(51), - [anon_sym_or] = ACTIONS(51), - [anon_sym_insert] = ACTIONS(51), - [anon_sym_into] = ACTIONS(51), - [anon_sym_select] = ACTIONS(51), - [anon_sym_from] = ACTIONS(51), - [anon_sym_where] = ACTIONS(51), - [anon_sym_if] = ACTIONS(49), - [anon_sym_else] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - }, - [8] = { - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(57), - [anon_sym_POUND] = ACTIONS(55), - [anon_sym_DASH_GT] = ACTIONS(55), - [sym_float] = ACTIONS(55), - [sym_integer] = ACTIONS(57), - [sym_string] = ACTIONS(55), - [sym_empty] = ACTIONS(55), - [anon_sym_true] = ACTIONS(57), - [anon_sym_false] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_COMMA] = ACTIONS(55), - [anon_sym_RBRACK] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_table] = ACTIONS(57), - [anon_sym_map] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_DASH] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(55), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_EQ_EQ] = ACTIONS(55), - [anon_sym_PLUS_EQ] = ACTIONS(55), - [anon_sym_DASH_EQ] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(55), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_and] = ACTIONS(57), - [anon_sym_or] = ACTIONS(57), - [anon_sym_insert] = ACTIONS(57), - [anon_sym_into] = ACTIONS(57), - [anon_sym_select] = ACTIONS(57), - [anon_sym_from] = ACTIONS(57), - [anon_sym_where] = ACTIONS(57), - [anon_sym_if] = ACTIONS(57), - [anon_sym_output] = ACTIONS(57), - }, - [9] = { - [ts_builtin_sym_end] = ACTIONS(59), - [sym_identifier] = ACTIONS(61), - [anon_sym_POUND] = ACTIONS(59), - [anon_sym_DASH_GT] = ACTIONS(59), - [sym_float] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_string] = ACTIONS(59), - [sym_empty] = ACTIONS(59), - [anon_sym_true] = ACTIONS(61), - [anon_sym_false] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_COMMA] = ACTIONS(59), - [anon_sym_RBRACK] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_RBRACE] = ACTIONS(59), - [anon_sym_table] = ACTIONS(61), - [anon_sym_map] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(59), - [anon_sym_EQ_EQ] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(59), - [anon_sym_DASH_EQ] = ACTIONS(59), - [anon_sym_AMP_AMP] = ACTIONS(59), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_and] = ACTIONS(61), - [anon_sym_or] = ACTIONS(61), - [anon_sym_insert] = ACTIONS(61), - [anon_sym_into] = ACTIONS(61), - [anon_sym_select] = ACTIONS(61), - [anon_sym_from] = ACTIONS(61), - [anon_sym_where] = ACTIONS(61), - [anon_sym_if] = ACTIONS(61), - [anon_sym_output] = ACTIONS(61), - }, - [10] = { - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(63), - [anon_sym_DASH_GT] = ACTIONS(63), - [sym_float] = ACTIONS(63), - [sym_integer] = ACTIONS(65), - [sym_string] = ACTIONS(63), - [sym_empty] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_table] = ACTIONS(65), - [anon_sym_map] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(63), - [anon_sym_SLASH] = ACTIONS(63), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_DASH_EQ] = ACTIONS(63), - [anon_sym_AMP_AMP] = ACTIONS(63), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_and] = ACTIONS(65), - [anon_sym_or] = ACTIONS(65), - [anon_sym_insert] = ACTIONS(65), - [anon_sym_into] = ACTIONS(65), - [anon_sym_select] = ACTIONS(65), - [anon_sym_from] = ACTIONS(65), - [anon_sym_where] = ACTIONS(65), - [anon_sym_if] = ACTIONS(65), - [anon_sym_output] = ACTIONS(65), - }, - [11] = { - [ts_builtin_sym_end] = ACTIONS(67), - [sym_identifier] = ACTIONS(69), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DASH_GT] = ACTIONS(67), - [sym_float] = ACTIONS(67), - [sym_integer] = ACTIONS(69), - [sym_string] = ACTIONS(67), - [sym_empty] = ACTIONS(67), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COMMA] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_RBRACE] = ACTIONS(67), - [anon_sym_table] = ACTIONS(69), - [anon_sym_map] = ACTIONS(69), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_PERCENT] = ACTIONS(67), - [anon_sym_EQ_EQ] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(67), - [anon_sym_DASH_EQ] = ACTIONS(67), - [anon_sym_AMP_AMP] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(69), - [anon_sym_and] = ACTIONS(69), - [anon_sym_or] = ACTIONS(69), - [anon_sym_insert] = ACTIONS(69), - [anon_sym_into] = ACTIONS(69), - [anon_sym_select] = ACTIONS(69), - [anon_sym_from] = ACTIONS(69), - [anon_sym_where] = ACTIONS(69), - [anon_sym_if] = ACTIONS(69), - [anon_sym_output] = ACTIONS(69), - }, - [12] = { - [ts_builtin_sym_end] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [anon_sym_POUND] = ACTIONS(71), - [anon_sym_DASH_GT] = ACTIONS(71), - [sym_float] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_string] = ACTIONS(71), - [sym_empty] = ACTIONS(71), - [anon_sym_true] = ACTIONS(73), - [anon_sym_false] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_COMMA] = ACTIONS(71), - [anon_sym_RBRACK] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_RBRACE] = ACTIONS(71), - [anon_sym_table] = ACTIONS(73), - [anon_sym_map] = ACTIONS(73), - [anon_sym_EQ] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(71), - [anon_sym_PERCENT] = ACTIONS(71), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(71), - [anon_sym_DASH_EQ] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(71), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_and] = ACTIONS(73), - [anon_sym_or] = ACTIONS(73), - [anon_sym_insert] = ACTIONS(73), - [anon_sym_into] = ACTIONS(73), - [anon_sym_select] = ACTIONS(73), - [anon_sym_from] = ACTIONS(73), - [anon_sym_where] = ACTIONS(73), - [anon_sym_if] = ACTIONS(73), - [anon_sym_output] = ACTIONS(73), - }, - [13] = { - [ts_builtin_sym_end] = ACTIONS(75), - [sym_identifier] = ACTIONS(77), - [anon_sym_POUND] = ACTIONS(75), - [anon_sym_DASH_GT] = ACTIONS(75), - [sym_float] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_string] = ACTIONS(75), - [sym_empty] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_COMMA] = ACTIONS(75), - [anon_sym_RBRACK] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(75), - [anon_sym_table] = ACTIONS(77), - [anon_sym_map] = ACTIONS(77), - [anon_sym_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(75), - [anon_sym_PLUS_EQ] = ACTIONS(75), - [anon_sym_DASH_EQ] = ACTIONS(75), - [anon_sym_AMP_AMP] = ACTIONS(75), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_and] = ACTIONS(77), - [anon_sym_or] = ACTIONS(77), - [anon_sym_insert] = ACTIONS(77), - [anon_sym_into] = ACTIONS(77), - [anon_sym_select] = ACTIONS(77), - [anon_sym_from] = ACTIONS(77), - [anon_sym_where] = ACTIONS(77), - [anon_sym_if] = ACTIONS(77), - [anon_sym_output] = ACTIONS(77), - }, - [14] = { - [sym_operator] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(79), - [sym_identifier] = ACTIONS(81), - [anon_sym_POUND] = ACTIONS(79), - [anon_sym_DASH_GT] = ACTIONS(79), - [sym_float] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_string] = ACTIONS(79), - [sym_empty] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_RBRACE] = ACTIONS(79), - [anon_sym_table] = ACTIONS(81), - [anon_sym_map] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_SLASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(53), - [anon_sym_EQ_EQ] = ACTIONS(53), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(53), - [anon_sym_PIPE_PIPE] = ACTIONS(51), - [anon_sym_and] = ACTIONS(51), - [anon_sym_or] = ACTIONS(51), - [anon_sym_insert] = ACTIONS(51), - [anon_sym_into] = ACTIONS(51), - [anon_sym_select] = ACTIONS(51), - [anon_sym_from] = ACTIONS(51), - [anon_sym_where] = ACTIONS(51), - [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(81), - [anon_sym_output] = ACTIONS(81), - }, - [15] = { - [ts_builtin_sym_end] = ACTIONS(75), - [sym_identifier] = ACTIONS(77), - [anon_sym_POUND] = ACTIONS(75), - [anon_sym_DASH_GT] = ACTIONS(75), - [sym_float] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_string] = ACTIONS(75), - [sym_empty] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(75), - [anon_sym_table] = ACTIONS(77), - [anon_sym_map] = ACTIONS(77), - [anon_sym_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(75), - [anon_sym_PLUS_EQ] = ACTIONS(75), - [anon_sym_DASH_EQ] = ACTIONS(75), - [anon_sym_AMP_AMP] = ACTIONS(75), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_and] = ACTIONS(77), - [anon_sym_or] = ACTIONS(77), - [anon_sym_insert] = ACTIONS(77), - [anon_sym_into] = ACTIONS(77), - [anon_sym_select] = ACTIONS(77), - [anon_sym_from] = ACTIONS(77), - [anon_sym_where] = ACTIONS(77), - [anon_sym_if] = ACTIONS(77), - [anon_sym_else] = ACTIONS(77), - [anon_sym_output] = ACTIONS(77), - }, - [16] = { - [ts_builtin_sym_end] = ACTIONS(83), - [sym_identifier] = ACTIONS(85), - [anon_sym_POUND] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(83), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [sym_string] = ACTIONS(83), - [sym_empty] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_RBRACE] = ACTIONS(83), - [anon_sym_table] = ACTIONS(85), - [anon_sym_map] = ACTIONS(85), - [anon_sym_EQ] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(85), - [anon_sym_STAR] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(83), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_PLUS_EQ] = ACTIONS(83), - [anon_sym_DASH_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(85), - [anon_sym_and] = ACTIONS(85), - [anon_sym_or] = ACTIONS(85), - [anon_sym_insert] = ACTIONS(85), - [anon_sym_into] = ACTIONS(85), - [anon_sym_select] = ACTIONS(85), - [anon_sym_from] = ACTIONS(85), - [anon_sym_where] = ACTIONS(85), - [anon_sym_if] = ACTIONS(85), - [anon_sym_else] = ACTIONS(87), - [anon_sym_output] = ACTIONS(85), - }, - [17] = { - [ts_builtin_sym_end] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym_POUND] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(89), - [sym_float] = ACTIONS(89), - [sym_integer] = ACTIONS(91), - [sym_string] = ACTIONS(89), - [sym_empty] = ACTIONS(89), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_function] = ACTIONS(91), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_table] = ACTIONS(91), - [anon_sym_map] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(91), - [anon_sym_and] = ACTIONS(91), - [anon_sym_or] = ACTIONS(91), - [anon_sym_insert] = ACTIONS(91), - [anon_sym_into] = ACTIONS(91), - [anon_sym_select] = ACTIONS(91), - [anon_sym_from] = ACTIONS(91), - [anon_sym_where] = ACTIONS(91), - [anon_sym_if] = ACTIONS(91), - [anon_sym_else] = ACTIONS(91), - [anon_sym_output] = ACTIONS(91), - }, - [18] = { - [sym_operator] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(27), - [sym_identifier] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_DASH_GT] = ACTIONS(27), - [sym_float] = ACTIONS(27), - [sym_integer] = ACTIONS(29), - [sym_string] = ACTIONS(27), - [sym_empty] = ACTIONS(27), - [anon_sym_true] = ACTIONS(29), - [anon_sym_false] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_function] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(27), - [anon_sym_table] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_SLASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(53), - [anon_sym_EQ_EQ] = ACTIONS(53), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(53), - [anon_sym_PIPE_PIPE] = ACTIONS(51), - [anon_sym_and] = ACTIONS(51), - [anon_sym_or] = ACTIONS(51), - [anon_sym_insert] = ACTIONS(51), - [anon_sym_into] = ACTIONS(51), - [anon_sym_select] = ACTIONS(29), - [anon_sym_from] = ACTIONS(51), - [anon_sym_where] = ACTIONS(51), - [anon_sym_if] = ACTIONS(29), - [anon_sym_output] = ACTIONS(29), - }, - [19] = { - [sym_operator] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(47), - [sym_identifier] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(47), - [anon_sym_DASH_GT] = ACTIONS(47), - [sym_float] = ACTIONS(47), - [sym_integer] = ACTIONS(49), - [sym_string] = ACTIONS(47), - [sym_empty] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(47), - [anon_sym_function] = ACTIONS(49), - [anon_sym_RBRACE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_map] = ACTIONS(49), - [anon_sym_EQ] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_SLASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(53), - [anon_sym_EQ_EQ] = ACTIONS(53), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(53), - [anon_sym_PIPE_PIPE] = ACTIONS(51), - [anon_sym_and] = ACTIONS(51), - [anon_sym_or] = ACTIONS(51), - [anon_sym_insert] = ACTIONS(51), - [anon_sym_into] = ACTIONS(51), - [anon_sym_select] = ACTIONS(51), - [anon_sym_from] = ACTIONS(51), - [anon_sym_where] = ACTIONS(51), - [anon_sym_if] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - }, - [20] = { - [ts_builtin_sym_end] = ACTIONS(93), - [sym_identifier] = ACTIONS(95), - [anon_sym_POUND] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(93), - [sym_float] = ACTIONS(93), - [sym_integer] = ACTIONS(95), - [sym_string] = ACTIONS(93), - [sym_empty] = ACTIONS(93), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_function] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_table] = ACTIONS(95), - [anon_sym_map] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_SLASH] = ACTIONS(93), - [anon_sym_PERCENT] = ACTIONS(93), - [anon_sym_EQ_EQ] = ACTIONS(93), - [anon_sym_PLUS_EQ] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(93), - [anon_sym_PIPE_PIPE] = ACTIONS(95), - [anon_sym_and] = ACTIONS(95), - [anon_sym_or] = ACTIONS(95), - [anon_sym_insert] = ACTIONS(95), - [anon_sym_into] = ACTIONS(95), - [anon_sym_select] = ACTIONS(95), - [anon_sym_from] = ACTIONS(95), - [anon_sym_where] = ACTIONS(95), - [anon_sym_if] = ACTIONS(95), - [anon_sym_else] = ACTIONS(95), - [anon_sym_output] = ACTIONS(95), - }, - [21] = { - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(63), - [anon_sym_DASH_GT] = ACTIONS(63), - [sym_float] = ACTIONS(63), - [sym_integer] = ACTIONS(65), - [sym_string] = ACTIONS(63), - [sym_empty] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_table] = ACTIONS(65), - [anon_sym_map] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(63), - [anon_sym_SLASH] = ACTIONS(63), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_DASH_EQ] = ACTIONS(63), - [anon_sym_AMP_AMP] = ACTIONS(63), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_and] = ACTIONS(65), - [anon_sym_or] = ACTIONS(65), - [anon_sym_insert] = ACTIONS(65), - [anon_sym_into] = ACTIONS(65), - [anon_sym_select] = ACTIONS(65), - [anon_sym_from] = ACTIONS(65), - [anon_sym_where] = ACTIONS(65), - [anon_sym_if] = ACTIONS(65), - [anon_sym_else] = ACTIONS(65), - [anon_sym_output] = ACTIONS(65), - }, - [22] = { - [ts_builtin_sym_end] = ACTIONS(93), - [sym_identifier] = ACTIONS(95), - [anon_sym_POUND] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(97), - [sym_float] = ACTIONS(93), - [sym_integer] = ACTIONS(95), - [sym_string] = ACTIONS(93), - [sym_empty] = ACTIONS(93), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_function] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_table] = ACTIONS(95), - [anon_sym_map] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_SLASH] = ACTIONS(93), - [anon_sym_PERCENT] = ACTIONS(93), - [anon_sym_EQ_EQ] = ACTIONS(93), - [anon_sym_PLUS_EQ] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(93), - [anon_sym_PIPE_PIPE] = ACTIONS(95), - [anon_sym_and] = ACTIONS(95), - [anon_sym_or] = ACTIONS(95), - [anon_sym_insert] = ACTIONS(95), - [anon_sym_into] = ACTIONS(95), - [anon_sym_select] = ACTIONS(95), - [anon_sym_from] = ACTIONS(95), - [anon_sym_where] = ACTIONS(95), - [anon_sym_if] = ACTIONS(95), - [anon_sym_else] = ACTIONS(95), - [anon_sym_output] = ACTIONS(95), - }, - [23] = { - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(57), - [anon_sym_POUND] = ACTIONS(55), - [anon_sym_DASH_GT] = ACTIONS(55), - [sym_float] = ACTIONS(55), - [sym_integer] = ACTIONS(57), - [sym_string] = ACTIONS(55), - [sym_empty] = ACTIONS(55), - [anon_sym_true] = ACTIONS(57), - [anon_sym_false] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_table] = ACTIONS(57), - [anon_sym_map] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_DASH] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(55), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_EQ_EQ] = ACTIONS(55), - [anon_sym_PLUS_EQ] = ACTIONS(55), - [anon_sym_DASH_EQ] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(55), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_and] = ACTIONS(57), - [anon_sym_or] = ACTIONS(57), - [anon_sym_insert] = ACTIONS(57), - [anon_sym_into] = ACTIONS(57), - [anon_sym_select] = ACTIONS(57), - [anon_sym_from] = ACTIONS(57), - [anon_sym_where] = ACTIONS(57), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(57), - [anon_sym_output] = ACTIONS(57), - }, - [24] = { - [ts_builtin_sym_end] = ACTIONS(59), - [sym_identifier] = ACTIONS(61), - [anon_sym_POUND] = ACTIONS(59), - [anon_sym_DASH_GT] = ACTIONS(59), - [sym_float] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_string] = ACTIONS(59), - [sym_empty] = ACTIONS(59), - [anon_sym_true] = ACTIONS(61), - [anon_sym_false] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_RBRACE] = ACTIONS(59), - [anon_sym_table] = ACTIONS(61), - [anon_sym_map] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(59), - [anon_sym_EQ_EQ] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(59), - [anon_sym_DASH_EQ] = ACTIONS(59), - [anon_sym_AMP_AMP] = ACTIONS(59), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_and] = ACTIONS(61), - [anon_sym_or] = ACTIONS(61), - [anon_sym_insert] = ACTIONS(61), - [anon_sym_into] = ACTIONS(61), - [anon_sym_select] = ACTIONS(61), - [anon_sym_from] = ACTIONS(61), - [anon_sym_where] = ACTIONS(61), - [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(61), - [anon_sym_output] = ACTIONS(61), - }, - [25] = { - [ts_builtin_sym_end] = ACTIONS(99), - [sym_identifier] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(99), - [anon_sym_DASH_GT] = ACTIONS(99), - [sym_float] = ACTIONS(99), - [sym_integer] = ACTIONS(101), - [sym_string] = ACTIONS(99), - [sym_empty] = ACTIONS(99), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_function] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_table] = ACTIONS(101), - [anon_sym_map] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_SLASH] = ACTIONS(99), - [anon_sym_PERCENT] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_PLUS_EQ] = ACTIONS(99), - [anon_sym_DASH_EQ] = ACTIONS(99), - [anon_sym_AMP_AMP] = ACTIONS(99), - [anon_sym_PIPE_PIPE] = ACTIONS(101), - [anon_sym_and] = ACTIONS(101), - [anon_sym_or] = ACTIONS(101), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_into] = ACTIONS(101), - [anon_sym_select] = ACTIONS(101), - [anon_sym_from] = ACTIONS(101), - [anon_sym_where] = ACTIONS(101), - [anon_sym_if] = ACTIONS(101), - [anon_sym_else] = ACTIONS(101), - [anon_sym_output] = ACTIONS(101), - }, - [26] = { - [sym_operator] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(27), - [sym_identifier] = ACTIONS(29), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_DASH_GT] = ACTIONS(27), - [sym_float] = ACTIONS(27), - [sym_integer] = ACTIONS(29), - [sym_string] = ACTIONS(27), - [sym_empty] = ACTIONS(27), - [anon_sym_true] = ACTIONS(29), - [anon_sym_false] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_function] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(27), - [anon_sym_table] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_EQ_EQ] = ACTIONS(27), - [anon_sym_PLUS_EQ] = ACTIONS(27), - [anon_sym_DASH_EQ] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_and] = ACTIONS(29), - [anon_sym_or] = ACTIONS(29), - [anon_sym_insert] = ACTIONS(29), - [anon_sym_into] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_from] = ACTIONS(29), - [anon_sym_where] = ACTIONS(29), - [anon_sym_if] = ACTIONS(29), - [anon_sym_output] = ACTIONS(29), - }, - [27] = { - [sym_operator] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(79), - [sym_identifier] = ACTIONS(81), - [anon_sym_POUND] = ACTIONS(79), - [anon_sym_DASH_GT] = ACTIONS(79), - [sym_float] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_string] = ACTIONS(79), - [sym_empty] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_RBRACE] = ACTIONS(79), - [anon_sym_table] = ACTIONS(81), - [anon_sym_map] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_SLASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(53), - [anon_sym_EQ_EQ] = ACTIONS(53), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(53), - [anon_sym_PIPE_PIPE] = ACTIONS(51), - [anon_sym_and] = ACTIONS(51), - [anon_sym_or] = ACTIONS(51), - [anon_sym_insert] = ACTIONS(51), - [anon_sym_into] = ACTIONS(51), - [anon_sym_select] = ACTIONS(51), - [anon_sym_from] = ACTIONS(51), - [anon_sym_where] = ACTIONS(51), - [anon_sym_if] = ACTIONS(81), - [anon_sym_output] = ACTIONS(81), - }, - [28] = { - [ts_builtin_sym_end] = ACTIONS(43), - [sym_identifier] = ACTIONS(45), - [anon_sym_POUND] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(43), - [sym_float] = ACTIONS(43), - [sym_integer] = ACTIONS(45), - [sym_string] = ACTIONS(43), - [sym_empty] = ACTIONS(43), - [anon_sym_true] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_function] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(43), - [anon_sym_table] = ACTIONS(45), - [anon_sym_map] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(43), - [anon_sym_EQ_EQ] = ACTIONS(43), - [anon_sym_PLUS_EQ] = ACTIONS(43), - [anon_sym_DASH_EQ] = ACTIONS(43), - [anon_sym_AMP_AMP] = ACTIONS(43), - [anon_sym_PIPE_PIPE] = ACTIONS(45), - [anon_sym_and] = ACTIONS(45), - [anon_sym_or] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(45), - [anon_sym_into] = ACTIONS(45), - [anon_sym_select] = ACTIONS(45), - [anon_sym_from] = ACTIONS(45), - [anon_sym_where] = ACTIONS(45), - [anon_sym_if] = ACTIONS(45), - [anon_sym_else] = ACTIONS(45), - [anon_sym_output] = ACTIONS(45), - }, - [29] = { - [ts_builtin_sym_end] = ACTIONS(103), - [sym_identifier] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [sym_float] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_string] = ACTIONS(103), - [sym_empty] = ACTIONS(103), - [anon_sym_true] = ACTIONS(105), - [anon_sym_false] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_function] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_table] = ACTIONS(105), - [anon_sym_map] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(105), - [anon_sym_and] = ACTIONS(105), - [anon_sym_or] = ACTIONS(105), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_into] = ACTIONS(105), - [anon_sym_select] = ACTIONS(105), - [anon_sym_from] = ACTIONS(105), - [anon_sym_where] = ACTIONS(105), - [anon_sym_if] = ACTIONS(105), - [anon_sym_else] = ACTIONS(105), - [anon_sym_output] = ACTIONS(105), - }, - [30] = { - [ts_builtin_sym_end] = ACTIONS(107), - [sym_identifier] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(107), - [anon_sym_DASH_GT] = ACTIONS(107), - [sym_float] = ACTIONS(107), - [sym_integer] = ACTIONS(109), - [sym_string] = ACTIONS(107), - [sym_empty] = ACTIONS(107), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_function] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_table] = ACTIONS(109), - [anon_sym_map] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_PERCENT] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_PLUS_EQ] = ACTIONS(107), - [anon_sym_DASH_EQ] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(109), - [anon_sym_into] = ACTIONS(109), - [anon_sym_select] = ACTIONS(109), - [anon_sym_from] = ACTIONS(109), - [anon_sym_where] = ACTIONS(111), - [anon_sym_if] = ACTIONS(109), - [anon_sym_else] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - }, - [31] = { - [ts_builtin_sym_end] = ACTIONS(83), - [sym_identifier] = ACTIONS(85), - [anon_sym_POUND] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(83), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [sym_string] = ACTIONS(83), - [sym_empty] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_RBRACE] = ACTIONS(83), - [anon_sym_table] = ACTIONS(85), - [anon_sym_map] = ACTIONS(85), - [anon_sym_EQ] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(85), - [anon_sym_STAR] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(83), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_PLUS_EQ] = ACTIONS(83), - [anon_sym_DASH_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(85), - [anon_sym_and] = ACTIONS(85), - [anon_sym_or] = ACTIONS(85), - [anon_sym_insert] = ACTIONS(85), - [anon_sym_into] = ACTIONS(85), - [anon_sym_select] = ACTIONS(85), - [anon_sym_from] = ACTIONS(85), - [anon_sym_where] = ACTIONS(85), - [anon_sym_if] = ACTIONS(85), - [anon_sym_else] = ACTIONS(113), - [anon_sym_output] = ACTIONS(85), - }, - [32] = { - [ts_builtin_sym_end] = ACTIONS(31), - [sym_identifier] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(31), - [sym_float] = ACTIONS(31), - [sym_integer] = ACTIONS(33), - [sym_string] = ACTIONS(31), - [sym_empty] = ACTIONS(31), - [anon_sym_true] = ACTIONS(33), - [anon_sym_false] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_function] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(31), - [anon_sym_table] = ACTIONS(33), - [anon_sym_map] = ACTIONS(33), - [anon_sym_EQ] = ACTIONS(33), - [anon_sym_PLUS] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(33), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_SLASH] = ACTIONS(31), - [anon_sym_PERCENT] = ACTIONS(31), - [anon_sym_EQ_EQ] = ACTIONS(31), - [anon_sym_PLUS_EQ] = ACTIONS(31), - [anon_sym_DASH_EQ] = ACTIONS(31), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_PIPE_PIPE] = ACTIONS(33), - [anon_sym_and] = ACTIONS(33), - [anon_sym_or] = ACTIONS(33), - [anon_sym_insert] = ACTIONS(33), - [anon_sym_into] = ACTIONS(33), - [anon_sym_select] = ACTIONS(33), - [anon_sym_from] = ACTIONS(33), - [anon_sym_where] = ACTIONS(33), - [anon_sym_if] = ACTIONS(33), - [anon_sym_else] = ACTIONS(33), - [anon_sym_output] = ACTIONS(33), - }, - [33] = { - [ts_builtin_sym_end] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), - [anon_sym_POUND] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [sym_float] = ACTIONS(35), - [sym_integer] = ACTIONS(37), - [sym_string] = ACTIONS(35), - [sym_empty] = ACTIONS(35), - [anon_sym_true] = ACTIONS(37), - [anon_sym_false] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_function] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(35), - [anon_sym_table] = ACTIONS(37), - [anon_sym_map] = ACTIONS(37), - [anon_sym_EQ] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_PLUS_EQ] = ACTIONS(35), - [anon_sym_DASH_EQ] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(37), - [anon_sym_and] = ACTIONS(37), - [anon_sym_or] = ACTIONS(37), - [anon_sym_insert] = ACTIONS(37), - [anon_sym_into] = ACTIONS(37), - [anon_sym_select] = ACTIONS(37), - [anon_sym_from] = ACTIONS(37), - [anon_sym_where] = ACTIONS(37), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - }, - [34] = { - [ts_builtin_sym_end] = ACTIONS(67), - [sym_identifier] = ACTIONS(69), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DASH_GT] = ACTIONS(67), - [sym_float] = ACTIONS(67), - [sym_integer] = ACTIONS(69), - [sym_string] = ACTIONS(67), - [sym_empty] = ACTIONS(67), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_RBRACE] = ACTIONS(67), - [anon_sym_table] = ACTIONS(69), - [anon_sym_map] = ACTIONS(69), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_PERCENT] = ACTIONS(67), - [anon_sym_EQ_EQ] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(67), - [anon_sym_DASH_EQ] = ACTIONS(67), - [anon_sym_AMP_AMP] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(69), - [anon_sym_and] = ACTIONS(69), - [anon_sym_or] = ACTIONS(69), - [anon_sym_insert] = ACTIONS(69), - [anon_sym_into] = ACTIONS(69), - [anon_sym_select] = ACTIONS(69), - [anon_sym_from] = ACTIONS(69), - [anon_sym_where] = ACTIONS(69), - [anon_sym_if] = ACTIONS(69), - [anon_sym_else] = ACTIONS(69), - [anon_sym_output] = ACTIONS(69), - }, - [35] = { - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_float] = ACTIONS(115), - [sym_integer] = ACTIONS(117), - [sym_string] = ACTIONS(115), - [sym_empty] = ACTIONS(115), - [anon_sym_true] = ACTIONS(117), - [anon_sym_false] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_function] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_table] = ACTIONS(117), - [anon_sym_map] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [anon_sym_insert] = ACTIONS(117), - [anon_sym_into] = ACTIONS(117), - [anon_sym_select] = ACTIONS(117), - [anon_sym_from] = ACTIONS(117), - [anon_sym_where] = ACTIONS(117), - [anon_sym_if] = ACTIONS(117), - [anon_sym_else] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - }, - [36] = { - [ts_builtin_sym_end] = ACTIONS(39), - [sym_identifier] = ACTIONS(41), - [anon_sym_POUND] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [sym_float] = ACTIONS(39), - [sym_integer] = ACTIONS(41), - [sym_string] = ACTIONS(39), - [sym_empty] = ACTIONS(39), - [anon_sym_true] = ACTIONS(41), - [anon_sym_false] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_function] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(39), - [anon_sym_table] = ACTIONS(41), - [anon_sym_map] = ACTIONS(41), - [anon_sym_EQ] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_PLUS_EQ] = ACTIONS(39), - [anon_sym_DASH_EQ] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(41), - [anon_sym_and] = ACTIONS(41), - [anon_sym_or] = ACTIONS(41), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_into] = ACTIONS(41), - [anon_sym_select] = ACTIONS(41), - [anon_sym_from] = ACTIONS(41), - [anon_sym_where] = ACTIONS(41), - [anon_sym_if] = ACTIONS(41), - [anon_sym_else] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - }, - [37] = { - [ts_builtin_sym_end] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [anon_sym_POUND] = ACTIONS(71), - [anon_sym_DASH_GT] = ACTIONS(71), - [sym_float] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_string] = ACTIONS(71), - [sym_empty] = ACTIONS(71), - [anon_sym_true] = ACTIONS(73), - [anon_sym_false] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_RBRACE] = ACTIONS(71), - [anon_sym_table] = ACTIONS(73), - [anon_sym_map] = ACTIONS(73), - [anon_sym_EQ] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(71), - [anon_sym_PERCENT] = ACTIONS(71), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(71), - [anon_sym_DASH_EQ] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(71), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_and] = ACTIONS(73), - [anon_sym_or] = ACTIONS(73), - [anon_sym_insert] = ACTIONS(73), - [anon_sym_into] = ACTIONS(73), - [anon_sym_select] = ACTIONS(73), - [anon_sym_from] = ACTIONS(73), - [anon_sym_where] = ACTIONS(73), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(73), - [anon_sym_output] = ACTIONS(73), - }, - [38] = { - [ts_builtin_sym_end] = ACTIONS(93), - [sym_identifier] = ACTIONS(95), - [anon_sym_POUND] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(119), - [sym_float] = ACTIONS(93), - [sym_integer] = ACTIONS(95), - [sym_string] = ACTIONS(93), - [sym_empty] = ACTIONS(93), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_function] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_table] = ACTIONS(95), - [anon_sym_map] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_SLASH] = ACTIONS(93), - [anon_sym_PERCENT] = ACTIONS(93), - [anon_sym_EQ_EQ] = ACTIONS(93), - [anon_sym_PLUS_EQ] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(93), - [anon_sym_PIPE_PIPE] = ACTIONS(95), - [anon_sym_and] = ACTIONS(95), - [anon_sym_or] = ACTIONS(95), - [anon_sym_insert] = ACTIONS(95), - [anon_sym_into] = ACTIONS(95), - [anon_sym_select] = ACTIONS(95), - [anon_sym_from] = ACTIONS(95), - [anon_sym_where] = ACTIONS(95), - [anon_sym_if] = ACTIONS(95), - [anon_sym_output] = ACTIONS(95), - }, - [39] = { - [ts_builtin_sym_end] = ACTIONS(107), - [sym_identifier] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(107), - [anon_sym_DASH_GT] = ACTIONS(107), - [sym_float] = ACTIONS(107), - [sym_integer] = ACTIONS(109), - [sym_string] = ACTIONS(107), - [sym_empty] = ACTIONS(107), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_function] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_table] = ACTIONS(109), - [anon_sym_map] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_PERCENT] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_PLUS_EQ] = ACTIONS(107), - [anon_sym_DASH_EQ] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(109), - [anon_sym_into] = ACTIONS(109), - [anon_sym_select] = ACTIONS(109), - [anon_sym_from] = ACTIONS(109), - [anon_sym_where] = ACTIONS(121), - [anon_sym_if] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - }, - [40] = { - [ts_builtin_sym_end] = ACTIONS(93), - [sym_identifier] = ACTIONS(95), - [anon_sym_POUND] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(93), - [sym_float] = ACTIONS(93), - [sym_integer] = ACTIONS(95), - [sym_string] = ACTIONS(93), - [sym_empty] = ACTIONS(93), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_function] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_table] = ACTIONS(95), - [anon_sym_map] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_SLASH] = ACTIONS(93), - [anon_sym_PERCENT] = ACTIONS(93), - [anon_sym_EQ_EQ] = ACTIONS(93), - [anon_sym_PLUS_EQ] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(93), - [anon_sym_PIPE_PIPE] = ACTIONS(95), - [anon_sym_and] = ACTIONS(95), - [anon_sym_or] = ACTIONS(95), - [anon_sym_insert] = ACTIONS(95), - [anon_sym_into] = ACTIONS(95), - [anon_sym_select] = ACTIONS(95), - [anon_sym_from] = ACTIONS(95), - [anon_sym_where] = ACTIONS(95), - [anon_sym_if] = ACTIONS(95), - [anon_sym_output] = ACTIONS(95), - }, - [41] = { - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_float] = ACTIONS(115), - [sym_integer] = ACTIONS(117), - [sym_string] = ACTIONS(115), - [sym_empty] = ACTIONS(115), - [anon_sym_true] = ACTIONS(117), - [anon_sym_false] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_function] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_table] = ACTIONS(117), - [anon_sym_map] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [anon_sym_insert] = ACTIONS(117), - [anon_sym_into] = ACTIONS(117), - [anon_sym_select] = ACTIONS(117), - [anon_sym_from] = ACTIONS(117), - [anon_sym_where] = ACTIONS(117), - [anon_sym_if] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - }, - [42] = { - [ts_builtin_sym_end] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym_POUND] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(89), - [sym_float] = ACTIONS(89), - [sym_integer] = ACTIONS(91), - [sym_string] = ACTIONS(89), - [sym_empty] = ACTIONS(89), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_function] = ACTIONS(91), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_table] = ACTIONS(91), - [anon_sym_map] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(91), - [anon_sym_and] = ACTIONS(91), - [anon_sym_or] = ACTIONS(91), - [anon_sym_insert] = ACTIONS(91), - [anon_sym_into] = ACTIONS(91), - [anon_sym_select] = ACTIONS(91), - [anon_sym_from] = ACTIONS(91), - [anon_sym_where] = ACTIONS(91), - [anon_sym_if] = ACTIONS(91), - [anon_sym_output] = ACTIONS(91), - }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(103), - [sym_identifier] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [sym_float] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_string] = ACTIONS(103), - [sym_empty] = ACTIONS(103), - [anon_sym_true] = ACTIONS(105), - [anon_sym_false] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_function] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_table] = ACTIONS(105), - [anon_sym_map] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(105), - [anon_sym_and] = ACTIONS(105), - [anon_sym_or] = ACTIONS(105), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_into] = ACTIONS(105), - [anon_sym_select] = ACTIONS(105), - [anon_sym_from] = ACTIONS(105), - [anon_sym_where] = ACTIONS(105), - [anon_sym_if] = ACTIONS(105), - [anon_sym_output] = ACTIONS(105), - }, - [44] = { - [ts_builtin_sym_end] = ACTIONS(99), - [sym_identifier] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(99), - [anon_sym_DASH_GT] = ACTIONS(99), - [sym_float] = ACTIONS(99), - [sym_integer] = ACTIONS(101), - [sym_string] = ACTIONS(99), - [sym_empty] = ACTIONS(99), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_function] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_table] = ACTIONS(101), - [anon_sym_map] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_SLASH] = ACTIONS(99), - [anon_sym_PERCENT] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_PLUS_EQ] = ACTIONS(99), - [anon_sym_DASH_EQ] = ACTIONS(99), - [anon_sym_AMP_AMP] = ACTIONS(99), - [anon_sym_PIPE_PIPE] = ACTIONS(101), - [anon_sym_and] = ACTIONS(101), - [anon_sym_or] = ACTIONS(101), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_into] = ACTIONS(101), - [anon_sym_select] = ACTIONS(101), - [anon_sym_from] = ACTIONS(101), - [anon_sym_where] = ACTIONS(101), - [anon_sym_if] = ACTIONS(101), - [anon_sym_output] = ACTIONS(101), + [sym_item] = STATE(2), + [sym_comment] = STATE(115), + [sym_statement] = STATE(115), + [sym_open_statement] = STATE(97), + [sym_yield_statement] = STATE(101), + [sym_expression] = STATE(23), + [sym_value] = STATE(47), + [sym_boolean] = STATE(8), + [sym_list] = STATE(8), + [sym_function] = STATE(8), + [sym_table] = STATE(8), + [sym_map] = STATE(8), + [sym_operation] = STATE(47), + [sym_select] = STATE(47), + [sym_insert] = STATE(47), + [sym_control_flow] = STATE(47), + [sym_tool] = STATE(47), + [aux_sym_root_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(74), + [sym_identifier] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5), + [sym_float] = ACTIONS(7), + [sym_integer] = ACTIONS(9), + [sym_string] = ACTIONS(7), + [sym_empty] = ACTIONS(7), + [anon_sym_true] = ACTIONS(11), + [anon_sym_false] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_function] = ACTIONS(15), + [anon_sym_table] = ACTIONS(17), + [anon_sym_map] = ACTIONS(19), + [anon_sym_select] = ACTIONS(21), + [anon_sym_insert] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_output] = ACTIONS(27), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 20, - ACTIONS(123), 1, + [0] = 5, + STATE(87), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(76), 8, ts_builtin_sym_end, - ACTIONS(125), 1, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(78), 12, sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_output, + [45] = 2, + ACTIONS(84), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(86), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [84] = 2, + ACTIONS(88), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(90), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [123] = 2, + ACTIONS(92), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(94), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [162] = 2, + ACTIONS(96), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(98), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [201] = 2, + ACTIONS(100), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(102), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [240] = 2, + ACTIONS(104), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(106), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [279] = 5, + STATE(87), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(108), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(110), 12, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_output, + [324] = 2, + ACTIONS(112), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(114), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [363] = 2, + ACTIONS(116), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(118), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [402] = 5, + STATE(87), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(120), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(122), 12, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_output, + [447] = 3, ACTIONS(128), 1, - anon_sym_POUND, - ACTIONS(134), 1, - sym_integer, - ACTIONS(140), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_function, - ACTIONS(146), 1, - anon_sym_table, - ACTIONS(149), 1, - anon_sym_map, - ACTIONS(152), 1, - anon_sym_select, - ACTIONS(155), 1, - anon_sym_if, - ACTIONS(158), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(137), 2, - anon_sym_true, - anon_sym_false, - STATE(45), 2, - sym_item, - aux_sym_root_repeat1, - STATE(128), 2, - sym_comment, - sym_statement, - ACTIONS(131), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [74] = 20, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(161), 1, + anon_sym_where, + ACTIONS(124), 15, ts_builtin_sym_end, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(45), 2, - sym_item, - aux_sym_root_repeat1, - STATE(128), 2, - sym_comment, - sym_statement, - ACTIONS(7), 3, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [148] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(163), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(126), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [488] = 3, + ACTIONS(134), 1, + anon_sym_where, + ACTIONS(130), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [215] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(165), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(132), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [529] = 2, + ACTIONS(136), 17, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [282] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(167), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(138), 17, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [568] = 5, + STATE(87), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(140), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [349] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(169), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + ACTIONS(142), 12, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_output, + [613] = 2, + ACTIONS(96), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [416] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(171), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(98), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [651] = 2, + ACTIONS(112), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [483] = 18, - ACTIONS(173), 1, - sym_identifier, - ACTIONS(179), 1, - sym_integer, - ACTIONS(185), 1, anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_function, - ACTIONS(191), 1, anon_sym_RBRACE, - ACTIONS(193), 1, - anon_sym_table, - ACTIONS(196), 1, - anon_sym_map, - ACTIONS(199), 1, - anon_sym_select, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(205), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(114), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(176), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [689] = 2, + ACTIONS(144), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [550] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(208), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(146), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [727] = 5, + STATE(92), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(108), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [617] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(210), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + ACTIONS(110), 11, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [771] = 5, + STATE(92), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(76), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [684] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(212), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + ACTIONS(78), 11, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [815] = 5, + STATE(92), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(140), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [751] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(214), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + ACTIONS(142), 11, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [859] = 3, + ACTIONS(148), 1, + anon_sym_DASH_GT, + ACTIONS(144), 14, + ts_builtin_sym_end, + anon_sym_POUND, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [818] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(216), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(146), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [899] = 2, + ACTIONS(150), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [885] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(218), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(152), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [937] = 2, + ACTIONS(154), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [952] = 18, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - ACTIONS(220), 1, anon_sym_RBRACE, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(156), 18, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(52), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [975] = 2, + ACTIONS(92), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, sym_float, sym_string, sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1019] = 17, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(94), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1013] = 3, + ACTIONS(162), 1, + anon_sym_else, + ACTIONS(158), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(160), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1053] = 3, + ACTIONS(164), 1, + anon_sym_else, + ACTIONS(158), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(160), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1093] = 3, + ACTIONS(166), 1, + anon_sym_where, + ACTIONS(130), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(132), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1133] = 3, + ACTIONS(168), 1, + anon_sym_where, + ACTIONS(124), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(126), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1173] = 2, + ACTIONS(170), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(172), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1211] = 2, + ACTIONS(70), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(72), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1249] = 2, + ACTIONS(136), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(138), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1287] = 2, + ACTIONS(84), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(86), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1325] = 2, + ACTIONS(88), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(90), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1363] = 2, + ACTIONS(174), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(176), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1401] = 5, + STATE(92), 1, + sym_operator, + ACTIONS(80), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(82), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(120), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(122), 11, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [1445] = 2, + ACTIONS(100), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(102), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1483] = 2, + ACTIONS(104), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(106), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1521] = 2, + ACTIONS(116), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(118), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1559] = 2, + ACTIONS(144), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(146), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1596] = 19, ACTIONS(3), 1, sym_identifier, ACTIONS(9), 1, @@ -4287,531 +3405,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, anon_sym_select, ACTIONS(23), 1, - anon_sym_if, + anon_sym_insert, ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(53), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1083] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, anon_sym_if, - ACTIONS(25), 1, + ACTIONS(27), 1, anon_sym_output, - STATE(18), 1, + ACTIONS(178), 1, + anon_sym_RBRACE, + STATE(23), 1, sym_expression, - STATE(119), 1, + STATE(97), 1, sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(51), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1147] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(59), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1211] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(58), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1275] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(57), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1339] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(50), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1403] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(54), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1467] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(49), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1531] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(55), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1595] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(48), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1659] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, - sym_yield_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - STATE(47), 2, - sym_statement, - aux_sym_function_repeat2, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [1723] = 17, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(119), 1, - sym_open_statement, - STATE(122), 1, + STATE(101), 1, sym_yield_statement, ACTIONS(11), 2, anon_sym_true, @@ -4823,463 +3428,1804 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, sym_empty, - STATE(4), 5, + STATE(8), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(47), 6, sym_value, sym_operation, sym_select, + sym_insert, sym_control_flow, sym_tool, - [1787] = 17, - ACTIONS(222), 1, + [1667] = 19, + ACTIONS(3), 1, sym_identifier, - ACTIONS(226), 1, + ACTIONS(9), 1, sym_integer, - ACTIONS(230), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(232), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(234), 1, + ACTIONS(17), 1, anon_sym_table, - ACTIONS(236), 1, + ACTIONS(19), 1, anon_sym_map, - ACTIONS(238), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(242), 1, + ACTIONS(27), 1, anon_sym_output, - STATE(2), 1, + ACTIONS(180), 1, + anon_sym_RBRACE, + STATE(23), 1, sym_expression, - STATE(17), 1, - sym_statement, - STATE(20), 1, - sym_yield_statement, - STATE(22), 1, + STATE(97), 1, sym_open_statement, - ACTIONS(228), 2, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - ACTIONS(224), 3, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [1738] = 2, + ACTIONS(154), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(156), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1775] = 2, + ACTIONS(174), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(176), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1812] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(182), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [1883] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(184), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [1954] = 2, + ACTIONS(170), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(172), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [1991] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(186), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2062] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(188), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2133] = 3, + ACTIONS(190), 1, + anon_sym_DASH_GT, + ACTIONS(144), 14, + ts_builtin_sym_end, + anon_sym_POUND, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(146), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [2172] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(192), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2243] = 19, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(200), 1, + sym_integer, + ACTIONS(206), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_function, + ACTIONS(212), 1, + anon_sym_RBRACE, + ACTIONS(214), 1, + anon_sym_table, + ACTIONS(217), 1, + anon_sym_map, + ACTIONS(220), 1, + anon_sym_select, + ACTIONS(223), 1, + anon_sym_insert, + ACTIONS(226), 1, + anon_sym_if, + ACTIONS(229), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(203), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(197), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2314] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(232), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2385] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(234), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2456] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(236), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2527] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(238), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2598] = 2, + ACTIONS(150), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + ACTIONS(152), 17, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_EQ, + 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_output, + [2635] = 19, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + ACTIONS(240), 1, + anon_sym_RBRACE, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(56), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2706] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(50), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2774] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(45), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2842] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(52), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2910] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(57), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [2978] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(55), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3046] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(49), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3114] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(59), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3182] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(46), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3250] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(60), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3318] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(62), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3386] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(53), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3454] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(97), 1, + sym_open_statement, + STATE(101), 1, + sym_yield_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(58), 2, + sym_statement, + aux_sym_function_repeat2, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3522] = 18, + ACTIONS(242), 1, + sym_identifier, + ACTIONS(246), 1, + sym_integer, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(252), 1, + anon_sym_function, + ACTIONS(254), 1, + anon_sym_table, + ACTIONS(256), 1, + anon_sym_map, + ACTIONS(258), 1, + anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, + ACTIONS(262), 1, + anon_sym_if, + ACTIONS(264), 1, + anon_sym_output, + STATE(116), 1, + sym_expression, + STATE(119), 1, + sym_open_statement, + STATE(120), 1, + sym_yield_statement, + STATE(122), 1, + sym_statement, + ACTIONS(248), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 3, + sym_float, + sym_string, + sym_empty, + STATE(127), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3589] = 18, + ACTIONS(242), 1, + sym_identifier, + ACTIONS(246), 1, + sym_integer, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(252), 1, + anon_sym_function, + ACTIONS(254), 1, + anon_sym_table, + ACTIONS(256), 1, + anon_sym_map, + ACTIONS(258), 1, + anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, + ACTIONS(262), 1, + anon_sym_if, + ACTIONS(264), 1, + anon_sym_output, + STATE(116), 1, + sym_expression, + STATE(119), 1, + sym_open_statement, + STATE(120), 1, + sym_yield_statement, + STATE(132), 1, + sym_statement, + ACTIONS(248), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 3, + sym_float, + sym_string, + sym_empty, + STATE(127), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3656] = 18, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(44), 1, + sym_yield_statement, + STATE(48), 1, + sym_statement, + STATE(54), 1, + sym_open_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3723] = 18, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(270), 1, + sym_integer, + ACTIONS(274), 1, + anon_sym_LBRACK, + ACTIONS(276), 1, + anon_sym_function, + ACTIONS(278), 1, + anon_sym_table, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_select, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, + anon_sym_if, + ACTIONS(288), 1, + anon_sym_output, + STATE(12), 1, + sym_expression, + STATE(22), 1, + sym_yield_statement, + STATE(26), 1, + sym_open_statement, + STATE(30), 1, + sym_statement, + ACTIONS(272), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(268), 3, sym_float, sym_string, sym_empty, STATE(29), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(33), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [1850] = 17, - ACTIONS(222), 1, - sym_identifier, - ACTIONS(226), 1, - sym_integer, - ACTIONS(230), 1, - anon_sym_LBRACK, - ACTIONS(232), 1, - anon_sym_function, - ACTIONS(234), 1, - anon_sym_table, - ACTIONS(236), 1, - anon_sym_map, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_if, - ACTIONS(242), 1, - anon_sym_output, - STATE(2), 1, - sym_expression, - STATE(16), 1, - sym_statement, - STATE(20), 1, - sym_yield_statement, - STATE(22), 1, - sym_open_statement, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(224), 3, - sym_float, - sym_string, - sym_empty, - STATE(29), 5, + STATE(28), 6, sym_value, sym_operation, sym_select, + sym_insert, sym_control_flow, sym_tool, - STATE(33), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [1913] = 17, - ACTIONS(222), 1, + [3790] = 18, + ACTIONS(266), 1, sym_identifier, - ACTIONS(226), 1, + ACTIONS(270), 1, sym_integer, - ACTIONS(230), 1, + ACTIONS(274), 1, anon_sym_LBRACK, - ACTIONS(232), 1, + ACTIONS(276), 1, anon_sym_function, - ACTIONS(234), 1, + ACTIONS(278), 1, anon_sym_table, - ACTIONS(236), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(238), 1, + ACTIONS(282), 1, anon_sym_select, - ACTIONS(240), 1, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, anon_sym_if, - ACTIONS(242), 1, + ACTIONS(288), 1, anon_sym_output, - STATE(2), 1, + STATE(12), 1, sym_expression, - STATE(20), 1, - sym_yield_statement, STATE(22), 1, + sym_yield_statement, + STATE(26), 1, sym_open_statement, STATE(31), 1, sym_statement, - ACTIONS(228), 2, + ACTIONS(272), 2, anon_sym_true, anon_sym_false, - ACTIONS(224), 3, + ACTIONS(268), 3, sym_float, sym_string, sym_empty, STATE(29), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(33), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [1976] = 17, - ACTIONS(3), 1, + STATE(28), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3857] = 18, + ACTIONS(266), 1, sym_identifier, - ACTIONS(9), 1, + ACTIONS(270), 1, sym_integer, - ACTIONS(13), 1, + ACTIONS(274), 1, anon_sym_LBRACK, - ACTIONS(15), 1, + ACTIONS(276), 1, anon_sym_function, - ACTIONS(17), 1, + ACTIONS(278), 1, anon_sym_table, - ACTIONS(19), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(21), 1, + ACTIONS(282), 1, anon_sym_select, - ACTIONS(23), 1, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, anon_sym_if, - ACTIONS(25), 1, + ACTIONS(288), 1, anon_sym_output, + STATE(12), 1, + sym_expression, + STATE(22), 1, + sym_yield_statement, STATE(26), 1, - sym_expression, - STATE(38), 1, sym_open_statement, - STATE(40), 1, - sym_yield_statement, - STATE(42), 1, + STATE(39), 1, sym_statement, - ACTIONS(11), 2, + ACTIONS(272), 2, anon_sym_true, anon_sym_false, - ACTIONS(7), 3, + ACTIONS(268), 3, sym_float, sym_string, sym_empty, - STATE(4), 5, + STATE(29), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(28), 6, sym_value, sym_operation, sym_select, + sym_insert, sym_control_flow, sym_tool, - [2039] = 17, - ACTIONS(244), 1, - sym_identifier, - ACTIONS(248), 1, - sym_integer, - ACTIONS(252), 1, - anon_sym_LBRACK, - ACTIONS(254), 1, - anon_sym_function, - ACTIONS(256), 1, - anon_sym_table, - ACTIONS(258), 1, - anon_sym_map, - ACTIONS(260), 1, - anon_sym_select, - ACTIONS(262), 1, - anon_sym_if, - ACTIONS(264), 1, - anon_sym_output, - STATE(92), 1, - sym_expression, - STATE(98), 1, - sym_statement, - STATE(103), 1, - sym_open_statement, - STATE(104), 1, - sym_yield_statement, - ACTIONS(250), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 3, - sym_float, - sym_string, - sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2102] = 17, - ACTIONS(244), 1, - sym_identifier, - ACTIONS(248), 1, - sym_integer, - ACTIONS(252), 1, - anon_sym_LBRACK, - ACTIONS(254), 1, - anon_sym_function, - ACTIONS(256), 1, - anon_sym_table, - ACTIONS(258), 1, - anon_sym_map, - ACTIONS(260), 1, - anon_sym_select, - ACTIONS(262), 1, - anon_sym_if, - ACTIONS(264), 1, - anon_sym_output, - STATE(92), 1, - sym_expression, - STATE(103), 1, - sym_open_statement, - STATE(104), 1, - sym_yield_statement, - STATE(106), 1, - sym_statement, - ACTIONS(250), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 3, - sym_float, - sym_string, - sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2165] = 15, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(26), 1, - sym_expression, - STATE(44), 1, - sym_open_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [2222] = 15, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(15), 1, - anon_sym_function, - ACTIONS(17), 1, - anon_sym_table, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_select, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_output, - STATE(18), 1, - sym_expression, - STATE(125), 1, - sym_open_statement, - ACTIONS(11), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [2279] = 15, - ACTIONS(222), 1, - sym_identifier, - ACTIONS(226), 1, - sym_integer, - ACTIONS(230), 1, - anon_sym_LBRACK, - ACTIONS(232), 1, - anon_sym_function, - ACTIONS(234), 1, - anon_sym_table, - ACTIONS(236), 1, - anon_sym_map, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_if, + [3924] = 16, ACTIONS(242), 1, - anon_sym_output, - STATE(2), 1, - sym_expression, - STATE(25), 1, - sym_open_statement, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(224), 3, - sym_float, - sym_string, - sym_empty, - STATE(29), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(33), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2336] = 15, - ACTIONS(244), 1, sym_identifier, - ACTIONS(248), 1, + ACTIONS(246), 1, sym_integer, - ACTIONS(252), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(254), 1, + ACTIONS(252), 1, anon_sym_function, - ACTIONS(256), 1, + ACTIONS(254), 1, anon_sym_table, - ACTIONS(258), 1, + ACTIONS(256), 1, anon_sym_map, - ACTIONS(260), 1, + ACTIONS(258), 1, anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, ACTIONS(262), 1, anon_sym_if, ACTIONS(264), 1, anon_sym_output, - STATE(92), 1, + STATE(116), 1, sym_expression, - STATE(109), 1, + STATE(124), 1, sym_open_statement, - ACTIONS(250), 2, + ACTIONS(248), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 3, + ACTIONS(244), 3, sym_float, sym_string, sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, + STATE(127), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [2393] = 14, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [3985] = 16, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(270), 1, + sym_integer, + ACTIONS(274), 1, + anon_sym_LBRACK, + ACTIONS(276), 1, + anon_sym_function, + ACTIONS(278), 1, + anon_sym_table, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_select, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, + anon_sym_if, + ACTIONS(288), 1, + anon_sym_output, + STATE(12), 1, + sym_expression, + STATE(27), 1, + sym_open_statement, + ACTIONS(272), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(268), 3, + sym_float, + sym_string, + sym_empty, + STATE(29), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(28), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4046] = 16, ACTIONS(3), 1, sym_identifier, ACTIONS(9), 1, @@ -5295,231 +5241,382 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, anon_sym_select, ACTIONS(23), 1, - anon_sym_if, + anon_sym_insert, ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(61), 1, + sym_open_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4107] = 16, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(23), 1, + sym_expression, + STATE(103), 1, + sym_open_statement, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4168] = 15, + ACTIONS(242), 1, + sym_identifier, + ACTIONS(246), 1, + sym_integer, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(252), 1, + anon_sym_function, + ACTIONS(254), 1, + anon_sym_table, + ACTIONS(256), 1, + anon_sym_map, + ACTIONS(258), 1, + anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, + ACTIONS(262), 1, + anon_sym_if, + ACTIONS(264), 1, + anon_sym_output, + STATE(107), 1, + sym_expression, + ACTIONS(248), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 3, + sym_float, + sym_string, + sym_empty, + STATE(127), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4226] = 15, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(24), 1, + sym_expression, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4284] = 15, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(270), 1, + sym_integer, + ACTIONS(274), 1, + anon_sym_LBRACK, + ACTIONS(276), 1, + anon_sym_function, + ACTIONS(278), 1, + anon_sym_table, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_select, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, + anon_sym_if, + ACTIONS(288), 1, + anon_sym_output, + STATE(15), 1, + sym_expression, + ACTIONS(272), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(268), 3, + sym_float, + sym_string, + sym_empty, + STATE(29), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(28), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4342] = 15, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_table, + ACTIONS(19), 1, + anon_sym_map, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_output, + STATE(25), 1, + sym_expression, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(47), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4400] = 15, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(270), 1, + sym_integer, + ACTIONS(274), 1, + anon_sym_LBRACK, + ACTIONS(276), 1, + anon_sym_function, + ACTIONS(278), 1, + anon_sym_table, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_select, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, + anon_sym_if, + ACTIONS(288), 1, anon_sym_output, STATE(19), 1, sym_expression, - ACTIONS(11), 2, + ACTIONS(272), 2, anon_sym_true, anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - [2447] = 14, - ACTIONS(244), 1, - sym_identifier, - ACTIONS(248), 1, - sym_integer, - ACTIONS(252), 1, - anon_sym_LBRACK, - ACTIONS(254), 1, - anon_sym_function, - ACTIONS(256), 1, - anon_sym_table, - ACTIONS(258), 1, - anon_sym_map, - ACTIONS(260), 1, - anon_sym_select, - ACTIONS(262), 1, - anon_sym_if, - ACTIONS(264), 1, - anon_sym_output, - STATE(91), 1, - sym_expression, - ACTIONS(250), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 3, - sym_float, - sym_string, - sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2501] = 14, - ACTIONS(244), 1, - sym_identifier, - ACTIONS(248), 1, - sym_integer, - ACTIONS(252), 1, - anon_sym_LBRACK, - ACTIONS(254), 1, - anon_sym_function, - ACTIONS(256), 1, - anon_sym_table, - ACTIONS(258), 1, - anon_sym_map, - ACTIONS(260), 1, - anon_sym_select, - ACTIONS(262), 1, - anon_sym_if, - ACTIONS(264), 1, - anon_sym_output, - STATE(114), 1, - sym_expression, - ACTIONS(250), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 3, - sym_float, - sym_string, - sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2555] = 14, - ACTIONS(244), 1, - sym_identifier, - ACTIONS(248), 1, - sym_integer, - ACTIONS(252), 1, - anon_sym_LBRACK, - ACTIONS(254), 1, - anon_sym_function, - ACTIONS(256), 1, - anon_sym_table, - ACTIONS(258), 1, - anon_sym_map, - ACTIONS(260), 1, - anon_sym_select, - ACTIONS(262), 1, - anon_sym_if, - ACTIONS(264), 1, - anon_sym_output, - STATE(113), 1, - sym_expression, - ACTIONS(250), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 3, - sym_float, - sym_string, - sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2609] = 14, - ACTIONS(222), 1, - sym_identifier, - ACTIONS(226), 1, - sym_integer, - ACTIONS(230), 1, - anon_sym_LBRACK, - ACTIONS(232), 1, - anon_sym_function, - ACTIONS(234), 1, - anon_sym_table, - ACTIONS(236), 1, - anon_sym_map, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_if, - ACTIONS(242), 1, - anon_sym_output, - STATE(14), 1, - sym_expression, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(224), 3, + ACTIONS(268), 3, sym_float, sym_string, sym_empty, STATE(29), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(33), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [2663] = 14, - ACTIONS(222), 1, - sym_identifier, - ACTIONS(226), 1, - sym_integer, - ACTIONS(230), 1, - anon_sym_LBRACK, - ACTIONS(232), 1, - anon_sym_function, - ACTIONS(234), 1, - anon_sym_table, - ACTIONS(236), 1, - anon_sym_map, - ACTIONS(238), 1, - anon_sym_select, - ACTIONS(240), 1, - anon_sym_if, + STATE(28), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4458] = 15, ACTIONS(242), 1, + sym_identifier, + ACTIONS(246), 1, + sym_integer, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(252), 1, + anon_sym_function, + ACTIONS(254), 1, + anon_sym_table, + ACTIONS(256), 1, + anon_sym_map, + ACTIONS(258), 1, + anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, + ACTIONS(262), 1, + anon_sym_if, + ACTIONS(264), 1, anon_sym_output, - STATE(7), 1, + STATE(137), 1, sym_expression, - ACTIONS(228), 2, + ACTIONS(248), 2, anon_sym_true, anon_sym_false, - ACTIONS(224), 3, + ACTIONS(244), 3, + sym_float, + sym_string, + sym_empty, + STATE(127), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4516] = 15, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(270), 1, + sym_integer, + ACTIONS(274), 1, + anon_sym_LBRACK, + ACTIONS(276), 1, + anon_sym_function, + ACTIONS(278), 1, + anon_sym_table, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_select, + ACTIONS(284), 1, + anon_sym_insert, + ACTIONS(286), 1, + anon_sym_if, + ACTIONS(288), 1, + anon_sym_output, + STATE(5), 1, + sym_expression, + ACTIONS(272), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(268), 3, sym_float, sym_string, sym_empty, STATE(29), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(33), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [2717] = 14, + STATE(28), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4574] = 15, ACTIONS(3), 1, sym_identifier, ACTIONS(9), 1, @@ -5535,10 +5632,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, anon_sym_select, ACTIONS(23), 1, - anon_sym_if, + anon_sym_insert, ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, anon_sym_output, - STATE(27), 1, + STATE(40), 1, sym_expression, ACTIONS(11), 2, anon_sym_true, @@ -5547,812 +5646,195 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, sym_empty, - STATE(4), 5, + STATE(8), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(47), 6, sym_value, sym_operation, sym_select, + sym_insert, sym_control_flow, sym_tool, - [2771] = 14, - ACTIONS(244), 1, + [4632] = 15, + ACTIONS(242), 1, sym_identifier, - ACTIONS(248), 1, + ACTIONS(246), 1, sym_integer, - ACTIONS(252), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(254), 1, + ACTIONS(252), 1, anon_sym_function, - ACTIONS(256), 1, + ACTIONS(254), 1, anon_sym_table, - ACTIONS(258), 1, + ACTIONS(256), 1, anon_sym_map, - ACTIONS(260), 1, + ACTIONS(258), 1, anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, ACTIONS(262), 1, anon_sym_if, ACTIONS(264), 1, anon_sym_output, - STATE(93), 1, + STATE(135), 1, sym_expression, - ACTIONS(250), 2, + ACTIONS(248), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 3, + ACTIONS(244), 3, sym_float, sym_string, sym_empty, - STATE(108), 5, - sym_value, - sym_operation, - sym_select, - sym_control_flow, - sym_tool, - STATE(110), 5, + STATE(127), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [2825] = 14, - ACTIONS(244), 1, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4690] = 15, + ACTIONS(242), 1, sym_identifier, - ACTIONS(248), 1, + ACTIONS(246), 1, sym_integer, - ACTIONS(252), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(254), 1, + ACTIONS(252), 1, anon_sym_function, - ACTIONS(256), 1, + ACTIONS(254), 1, anon_sym_table, - ACTIONS(258), 1, + ACTIONS(256), 1, anon_sym_map, - ACTIONS(260), 1, + ACTIONS(258), 1, anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, ACTIONS(262), 1, anon_sym_if, ACTIONS(264), 1, anon_sym_output, - STATE(112), 1, + STATE(136), 1, sym_expression, - ACTIONS(250), 2, + ACTIONS(248), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 3, + ACTIONS(244), 3, sym_float, sym_string, sym_empty, - STATE(108), 5, + STATE(127), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(123), 6, sym_value, sym_operation, sym_select, + sym_insert, sym_control_flow, sym_tool, - STATE(110), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [2879] = 4, - STATE(83), 1, - sym_operator, - ACTIONS(47), 3, - anon_sym_DASH_GT, - anon_sym_then, - anon_sym_else, - ACTIONS(51), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(53), 15, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - [2910] = 3, - STATE(83), 1, - sym_operator, - ACTIONS(29), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(27), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [2939] = 4, - STATE(83), 1, - sym_operator, - ACTIONS(51), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(79), 3, - anon_sym_DASH_GT, - anon_sym_then, - anon_sym_else, - ACTIONS(53), 15, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - [2970] = 2, - ACTIONS(65), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(63), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [2996] = 2, - ACTIONS(33), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(31), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3022] = 2, - ACTIONS(61), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(59), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3048] = 2, - ACTIONS(57), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(55), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3074] = 2, - ACTIONS(91), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(89), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3100] = 2, - ACTIONS(73), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(71), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3126] = 2, - ACTIONS(77), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(75), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3152] = 2, - ACTIONS(41), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(39), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3178] = 2, - ACTIONS(117), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(115), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3204] = 3, - ACTIONS(266), 1, - anon_sym_DASH_GT, - ACTIONS(95), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(93), 17, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3232] = 2, - ACTIONS(95), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(93), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3258] = 2, - ACTIONS(45), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(43), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3284] = 3, - ACTIONS(268), 1, - anon_sym_else, - ACTIONS(85), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(83), 17, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - [3312] = 3, - ACTIONS(270), 1, - anon_sym_where, - ACTIONS(109), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(107), 17, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_then, - anon_sym_else, - [3340] = 2, - ACTIONS(105), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(103), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3366] = 2, - ACTIONS(101), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(99), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3392] = 2, - ACTIONS(37), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(35), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3418] = 2, - ACTIONS(69), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(67), 18, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - anon_sym_then, - anon_sym_else, - [3444] = 4, - ACTIONS(272), 1, - anon_sym_then, - STATE(83), 1, - sym_operator, - ACTIONS(51), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(53), 15, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - [3473] = 4, - ACTIONS(274), 1, - anon_sym_then, - STATE(83), 1, - sym_operator, - ACTIONS(51), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(53), 15, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - [3502] = 4, - ACTIONS(276), 1, - anon_sym_then, - STATE(83), 1, - sym_operator, - ACTIONS(51), 3, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(53), 15, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_insert, - anon_sym_into, - anon_sym_select, - anon_sym_from, - anon_sym_where, - [3531] = 11, - ACTIONS(9), 1, + [4748] = 15, + ACTIONS(242), 1, + sym_identifier, + ACTIONS(246), 1, sym_integer, - ACTIONS(13), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(280), 1, - anon_sym_RBRACK, - ACTIONS(282), 1, + ACTIONS(252), 1, anon_sym_function, - ACTIONS(284), 1, + ACTIONS(254), 1, anon_sym_table, - ACTIONS(286), 1, + ACTIONS(256), 1, anon_sym_map, - STATE(120), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, + ACTIONS(258), 1, + anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, + ACTIONS(262), 1, + anon_sym_if, + ACTIONS(264), 1, + anon_sym_output, + STATE(109), 1, + sym_expression, + ACTIONS(248), 2, anon_sym_true, anon_sym_false, - ACTIONS(7), 3, + ACTIONS(244), 3, sym_float, sym_string, sym_empty, - STATE(4), 5, + STATE(127), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [3572] = 11, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, - ACTIONS(288), 1, - anon_sym_RBRACK, - STATE(120), 1, - aux_sym_list_repeat1, - STATE(131), 1, + STATE(123), 6, sym_value, - ACTIONS(278), 2, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4806] = 15, + ACTIONS(242), 1, + sym_identifier, + ACTIONS(246), 1, + sym_integer, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(252), 1, + anon_sym_function, + ACTIONS(254), 1, + anon_sym_table, + ACTIONS(256), 1, + anon_sym_map, + ACTIONS(258), 1, + anon_sym_select, + ACTIONS(260), 1, + anon_sym_insert, + ACTIONS(262), 1, + anon_sym_if, + ACTIONS(264), 1, + anon_sym_output, + STATE(108), 1, + sym_expression, + ACTIONS(248), 2, anon_sym_true, anon_sym_false, - ACTIONS(7), 3, + ACTIONS(244), 3, sym_float, sym_string, sym_empty, - STATE(4), 5, + STATE(127), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [3613] = 11, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, + STATE(123), 6, + sym_value, + sym_operation, + sym_select, + sym_insert, + sym_control_flow, + sym_tool, + [4864] = 3, ACTIONS(290), 1, - anon_sym_RBRACK, - STATE(120), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3654] = 11, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, - ACTIONS(292), 1, - anon_sym_RBRACK, - STATE(120), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3695] = 3, - ACTIONS(294), 1, anon_sym_DASH_GT, - ACTIONS(93), 7, + ACTIONS(144), 7, ts_builtin_sym_end, anon_sym_POUND, sym_float, @@ -6360,7 +5842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_empty, anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(95), 10, + ACTIONS(146), 11, sym_identifier, sym_integer, anon_sym_true, @@ -6369,217 +5851,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_map, anon_sym_select, + anon_sym_insert, anon_sym_if, anon_sym_output, - [3720] = 11, - ACTIONS(299), 1, + [4890] = 11, + ACTIONS(9), 1, sym_integer, - ACTIONS(305), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(308), 1, + ACTIONS(294), 1, anon_sym_RBRACK, - ACTIONS(310), 1, + ACTIONS(296), 1, anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + STATE(100), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4931] = 11, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + ACTIONS(302), 1, + anon_sym_RBRACK, + STATE(100), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4972] = 11, + ACTIONS(307), 1, + sym_integer, ACTIONS(313), 1, - anon_sym_table, + anon_sym_LBRACK, ACTIONS(316), 1, - anon_sym_map, - STATE(120), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(302), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(296), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3761] = 10, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, + anon_sym_RBRACK, + ACTIONS(318), 1, anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, - STATE(117), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3799] = 2, - ACTIONS(93), 7, - ts_builtin_sym_end, - anon_sym_POUND, - sym_float, - sym_string, - sym_empty, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(95), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_if, - anon_sym_output, - [3821] = 10, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, - STATE(115), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3859] = 10, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, - STATE(116), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3897] = 2, - ACTIONS(99), 7, - ts_builtin_sym_end, - anon_sym_POUND, - sym_float, - sym_string, - sym_empty, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(101), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_if, - anon_sym_output, - [3919] = 10, - ACTIONS(9), 1, - sym_integer, - ACTIONS(13), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_function, - ACTIONS(284), 1, - anon_sym_table, - ACTIONS(286), 1, - anon_sym_map, - STATE(118), 1, - aux_sym_list_repeat1, - STATE(131), 1, - sym_value, - ACTIONS(278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7), 3, - sym_float, - sym_string, - sym_empty, - STATE(4), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [3957] = 9, ACTIONS(321), 1, - sym_integer, - ACTIONS(325), 1, - anon_sym_LBRACK, - ACTIONS(327), 1, - anon_sym_function, - ACTIONS(329), 1, anon_sym_table, - ACTIONS(331), 1, + ACTIONS(324), 1, anon_sym_map, - STATE(179), 1, + STATE(100), 1, + aux_sym_list_repeat1, + STATE(139), 1, sym_value, - ACTIONS(323), 2, + ACTIONS(310), 2, anon_sym_true, anon_sym_false, - ACTIONS(319), 3, + ACTIONS(304), 3, sym_float, sym_string, sym_empty, - STATE(178), 5, + STATE(8), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [3992] = 2, + [5013] = 2, + ACTIONS(144), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(146), 11, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [5036] = 11, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + ACTIONS(327), 1, + anon_sym_RBRACK, + STATE(100), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5077] = 2, + ACTIONS(150), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_float, + sym_string, + sym_empty, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(152), 11, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [5100] = 11, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + ACTIONS(329), 1, + anon_sym_RBRACK, + STATE(100), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5141] = 3, + ACTIONS(331), 1, + anon_sym_where, + ACTIONS(132), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(130), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5165] = 2, ACTIONS(333), 6, ts_builtin_sym_end, anon_sym_POUND, @@ -6587,7 +6075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_empty, anon_sym_LBRACK, - ACTIONS(335), 10, + ACTIONS(335), 11, sym_identifier, sym_integer, anon_sym_true, @@ -6596,17 +6084,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_map, anon_sym_select, + anon_sym_insert, anon_sym_if, anon_sym_output, - [4013] = 2, - ACTIONS(337), 6, + [5187] = 4, + STATE(85), 1, + sym_operator, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(120), 3, + anon_sym_DASH_GT, + anon_sym_then, + anon_sym_else, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5213] = 4, + STATE(85), 1, + sym_operator, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(140), 3, + anon_sym_DASH_GT, + anon_sym_then, + anon_sym_else, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5239] = 4, + STATE(85), 1, + sym_operator, + ACTIONS(76), 3, + anon_sym_DASH_GT, + anon_sym_then, + anon_sym_else, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5265] = 10, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + STATE(99), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5303] = 10, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + STATE(98), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5341] = 10, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + STATE(104), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5379] = 3, + ACTIONS(337), 1, + anon_sym_where, + ACTIONS(126), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(124), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5403] = 10, + ACTIONS(9), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(296), 1, + anon_sym_function, + ACTIONS(298), 1, + anon_sym_table, + ACTIONS(300), 1, + anon_sym_map, + STATE(102), 1, + aux_sym_list_repeat1, + STATE(139), 1, + sym_value, + ACTIONS(292), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7), 3, + sym_float, + sym_string, + sym_empty, + STATE(8), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5441] = 2, + ACTIONS(339), 6, ts_builtin_sym_end, anon_sym_POUND, sym_float, sym_string, sym_empty, anon_sym_LBRACK, - ACTIONS(339), 10, + ACTIONS(341), 11, sym_identifier, sym_integer, anon_sym_true, @@ -6615,890 +6303,1452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_map, anon_sym_select, + anon_sym_insert, anon_sym_if, anon_sym_output, - [4034] = 2, - ACTIONS(343), 4, - sym_float, - sym_string, - sym_empty, - anon_sym_LBRACK, - ACTIONS(341), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_map, - anon_sym_select, - anon_sym_if, - anon_sym_output, - [4053] = 3, + [5463] = 4, + STATE(85), 1, + sym_operator, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(108), 3, + anon_sym_DASH_GT, + anon_sym_then, + anon_sym_else, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5489] = 2, + ACTIONS(90), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(88), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5510] = 2, + ACTIONS(102), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(100), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5531] = 3, + ACTIONS(343), 1, + anon_sym_DASH_GT, + ACTIONS(146), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(144), 12, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5554] = 2, + ACTIONS(146), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(144), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5575] = 9, ACTIONS(347), 1, sym_integer, - ACTIONS(349), 1, - anon_sym_COMMA, - ACTIONS(345), 10, - sym_float, - sym_string, - sym_empty, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [4072] = 2, ACTIONS(351), 1, - sym_integer, - ACTIONS(308), 10, - sym_float, - sym_string, - sym_empty, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_table, - anon_sym_map, - [4088] = 3, - ACTIONS(13), 1, anon_sym_LBRACK, ACTIONS(353), 1, - anon_sym_RBRACE, - STATE(136), 2, - sym_list, - aux_sym_table_repeat1, - [4099] = 3, - ACTIONS(13), 1, - anon_sym_LBRACK, + anon_sym_function, ACTIONS(355), 1, - anon_sym_RBRACE, - STATE(140), 2, - sym_list, - aux_sym_table_repeat1, - [4110] = 3, - ACTIONS(13), 1, - anon_sym_LBRACK, + anon_sym_table, ACTIONS(357), 1, - anon_sym_RBRACE, - STATE(134), 2, + anon_sym_map, + STATE(181), 1, + sym_value, + ACTIONS(349), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(345), 3, + sym_float, + sym_string, + sym_empty, + STATE(186), 5, + sym_boolean, sym_list, - aux_sym_table_repeat1, - [4121] = 3, - ACTIONS(13), 1, - anon_sym_LBRACK, + sym_function, + sym_table, + sym_map, + [5610] = 3, ACTIONS(359), 1, - anon_sym_RBRACE, - STATE(140), 2, - sym_list, - aux_sym_table_repeat1, - [4132] = 3, - ACTIONS(13), 1, - anon_sym_LBRACK, + anon_sym_else, + ACTIONS(160), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(158), 12, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + [5633] = 2, + ACTIONS(156), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(154), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5654] = 2, + ACTIONS(152), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(150), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5675] = 2, + ACTIONS(106), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(104), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5696] = 2, + ACTIONS(118), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(116), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5717] = 2, + ACTIONS(94), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(92), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5738] = 2, + ACTIONS(138), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(136), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5759] = 2, + ACTIONS(98), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(96), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5780] = 2, + ACTIONS(86), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(84), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5801] = 2, + ACTIONS(172), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(170), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5822] = 2, + ACTIONS(176), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(174), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5843] = 2, + ACTIONS(72), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(70), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5864] = 2, + ACTIONS(114), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(112), 13, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_else, + [5885] = 4, ACTIONS(361), 1, - anon_sym_RBRACE, - STATE(140), 2, - sym_list, - aux_sym_table_repeat1, - [4143] = 3, - ACTIONS(13), 1, - anon_sym_LBRACK, + anon_sym_then, + STATE(85), 1, + sym_operator, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5909] = 4, ACTIONS(363), 1, - anon_sym_RBRACE, - STATE(140), 2, - sym_list, - aux_sym_table_repeat1, - [4154] = 3, - ACTIONS(13), 1, - anon_sym_LBRACK, + anon_sym_then, + STATE(85), 1, + sym_operator, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5933] = 4, ACTIONS(365), 1, - anon_sym_RBRACE, - STATE(137), 2, - sym_list, - aux_sym_table_repeat1, - [4165] = 3, - ACTIONS(367), 1, + anon_sym_then, + STATE(85), 1, + sym_operator, + ACTIONS(80), 3, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(82), 10, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [5957] = 2, + ACTIONS(369), 4, + sym_float, + sym_string, + sym_empty, anon_sym_LBRACK, - ACTIONS(370), 1, + ACTIONS(367), 11, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_map, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_output, + [5977] = 3, + ACTIONS(373), 1, + sym_integer, + ACTIONS(375), 1, + anon_sym_COMMA, + ACTIONS(371), 10, + sym_float, + sym_string, + sym_empty, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [5996] = 2, + ACTIONS(377), 1, + sym_integer, + ACTIONS(316), 10, + sym_float, + sym_string, + sym_empty, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_table, + anon_sym_map, + [6012] = 3, + ACTIONS(379), 1, + anon_sym_LBRACK, + ACTIONS(382), 2, anon_sym_RBRACE, - STATE(140), 2, + anon_sym_into, + STATE(141), 2, sym_list, aux_sym_table_repeat1, - [4176] = 3, + [6024] = 3, ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(372), 1, + ACTIONS(384), 1, anon_sym_RBRACE, - STATE(138), 2, + STATE(141), 2, sym_list, aux_sym_table_repeat1, - [4187] = 3, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(377), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4197] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(381), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4207] = 3, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(385), 1, + [6035] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, anon_sym_RBRACE, - STATE(146), 1, - aux_sym_map_repeat1, - [4217] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(387), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4227] = 3, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(389), 1, + STATE(145), 2, + sym_list, + aux_sym_table_repeat1, + [6046] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, anon_sym_RBRACE, - STATE(149), 1, - aux_sym_map_repeat1, - [4237] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(391), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4247] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(393), 1, - anon_sym_GT, - STATE(163), 1, - aux_sym_function_repeat1, - [4257] = 3, - ACTIONS(395), 1, - sym_identifier, + STATE(142), 2, + sym_list, + aux_sym_table_repeat1, + [6057] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(390), 1, + anon_sym_RBRACE, + STATE(141), 2, + sym_list, + aux_sym_table_repeat1, + [6068] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(392), 1, + anon_sym_into, + STATE(141), 2, + sym_list, + aux_sym_table_repeat1, + [6079] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_into, + STATE(141), 2, + sym_list, + aux_sym_table_repeat1, + [6090] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(396), 1, + anon_sym_RBRACE, + STATE(141), 2, + sym_list, + aux_sym_table_repeat1, + [6101] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(398), 1, - anon_sym_RBRACE, - STATE(149), 1, - aux_sym_map_repeat1, - [4267] = 3, - ACTIONS(379), 1, - sym_identifier, + anon_sym_into, + STATE(141), 2, + sym_list, + aux_sym_table_repeat1, + [6112] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(400), 1, - anon_sym_GT, - STATE(145), 1, - aux_sym_function_repeat1, - [4277] = 3, - ACTIONS(383), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(151), 2, + sym_list, + aux_sym_table_repeat1, + [6123] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(402), 1, anon_sym_RBRACE, - STATE(153), 1, - aux_sym_map_repeat1, - [4287] = 3, - ACTIONS(379), 1, - sym_identifier, + STATE(141), 2, + sym_list, + aux_sym_table_repeat1, + [6134] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(404), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4297] = 3, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, anon_sym_RBRACE, - STATE(149), 1, - aux_sym_map_repeat1, - [4307] = 3, - ACTIONS(379), 1, + STATE(148), 2, + sym_list, + aux_sym_table_repeat1, + [6145] = 2, + ACTIONS(13), 1, + anon_sym_LBRACK, + STATE(147), 2, + sym_list, + aux_sym_table_repeat1, + [6153] = 3, + ACTIONS(406), 1, sym_identifier, ACTIONS(408), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4317] = 3, - ACTIONS(383), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(157), 1, + aux_sym_map_repeat1, + [6163] = 3, ACTIONS(410), 1, - anon_sym_RBRACE, - STATE(160), 1, - aux_sym_map_repeat1, - [4327] = 2, + sym_identifier, + ACTIONS(412), 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6173] = 3, + ACTIONS(406), 1, + sym_identifier, ACTIONS(414), 1, - anon_sym_COMMA, - ACTIONS(412), 2, - sym_identifier, - anon_sym_GT, - [4335] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(416), 1, - anon_sym_GT, - STATE(162), 1, - aux_sym_function_repeat1, - [4345] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(418), 1, - anon_sym_GT, + anon_sym_RBRACE, STATE(154), 1, - aux_sym_function_repeat1, - [4355] = 3, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(420), 1, - anon_sym_RBRACE, - STATE(161), 1, aux_sym_map_repeat1, - [4365] = 3, - ACTIONS(383), 1, + [6183] = 3, + ACTIONS(416), 1, sym_identifier, - ACTIONS(422), 1, + ACTIONS(419), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(157), 1, aux_sym_map_repeat1, - [4375] = 3, - ACTIONS(383), 1, + [6193] = 3, + ACTIONS(410), 1, sym_identifier, - ACTIONS(424), 1, + ACTIONS(421), 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6203] = 3, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(423), 1, anon_sym_RBRACE, - STATE(149), 1, + STATE(173), 1, aux_sym_map_repeat1, - [4385] = 3, - ACTIONS(379), 1, + [6213] = 2, + ACTIONS(13), 1, + anon_sym_LBRACK, + STATE(149), 2, + sym_list, + aux_sym_table_repeat1, + [6221] = 3, + ACTIONS(410), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(425), 1, anon_sym_GT, - STATE(142), 1, + STATE(158), 1, aux_sym_function_repeat1, - [4395] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(428), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4405] = 3, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(430), 1, - anon_sym_GT, - STATE(142), 1, - aux_sym_function_repeat1, - [4415] = 1, - ACTIONS(71), 2, + [6231] = 3, + ACTIONS(406), 1, sym_identifier, + ACTIONS(427), 1, anon_sym_RBRACE, - [4420] = 1, - ACTIONS(75), 2, - sym_identifier, - anon_sym_RBRACE, - [4425] = 2, - ACTIONS(379), 1, - sym_identifier, - STATE(147), 1, - aux_sym_function_repeat1, - [4432] = 1, - ACTIONS(43), 2, - sym_identifier, - anon_sym_RBRACE, - [4437] = 2, - ACTIONS(432), 1, - anon_sym_LT, - ACTIONS(434), 1, - anon_sym_LBRACE, - [4444] = 1, - ACTIONS(377), 2, - sym_identifier, - anon_sym_GT, - [4449] = 1, - ACTIONS(63), 2, - sym_identifier, - anon_sym_RBRACE, - [4454] = 1, - ACTIONS(59), 2, - sym_identifier, - anon_sym_RBRACE, - [4459] = 2, - ACTIONS(436), 1, - anon_sym_LT, - ACTIONS(438), 1, - anon_sym_LBRACE, - [4466] = 2, - ACTIONS(440), 1, - anon_sym_LT, - ACTIONS(442), 1, - anon_sym_LBRACE, - [4473] = 2, - ACTIONS(379), 1, - sym_identifier, - STATE(152), 1, - aux_sym_function_repeat1, - [4480] = 1, - ACTIONS(55), 2, - sym_identifier, - anon_sym_RBRACE, - [4485] = 2, - ACTIONS(379), 1, - sym_identifier, STATE(164), 1, + aux_sym_map_repeat1, + [6241] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(429), 1, + anon_sym_GT, + STATE(178), 1, aux_sym_function_repeat1, - [4492] = 1, - ACTIONS(35), 2, + [6251] = 3, + ACTIONS(406), 1, sym_identifier, + ACTIONS(431), 1, anon_sym_RBRACE, - [4497] = 1, - ACTIONS(444), 2, + STATE(157), 1, + aux_sym_map_repeat1, + [6261] = 2, + ACTIONS(13), 1, + anon_sym_LBRACK, + STATE(146), 2, + sym_list, + aux_sym_table_repeat1, + [6269] = 3, + ACTIONS(410), 1, sym_identifier, - anon_sym_RBRACE, - [4502] = 1, - ACTIONS(31), 2, - sym_identifier, - anon_sym_RBRACE, - [4507] = 1, - ACTIONS(67), 2, - sym_identifier, - anon_sym_RBRACE, - [4512] = 1, - ACTIONS(39), 2, - sym_identifier, - anon_sym_RBRACE, - [4517] = 2, - ACTIONS(446), 1, - anon_sym_LT, - ACTIONS(448), 1, - anon_sym_LBRACE, - [4524] = 2, - ACTIONS(379), 1, - sym_identifier, - STATE(143), 1, + ACTIONS(433), 1, + anon_sym_GT, + STATE(178), 1, aux_sym_function_repeat1, - [4531] = 1, - ACTIONS(450), 1, - anon_sym_from, - [4535] = 1, - ACTIONS(452), 1, - anon_sym_LBRACE, - [4539] = 1, - ACTIONS(454), 1, + [6279] = 3, + ACTIONS(410), 1, sym_identifier, - [4543] = 1, - ACTIONS(456), 1, - anon_sym_LBRACE, - [4547] = 1, - ACTIONS(458), 1, + ACTIONS(435), 1, + anon_sym_GT, + STATE(170), 1, + aux_sym_function_repeat1, + [6289] = 2, + ACTIONS(439), 1, + anon_sym_COMMA, + ACTIONS(437), 2, + sym_identifier, + anon_sym_GT, + [6297] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(441), 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6307] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(443), 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6317] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(445), 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6327] = 3, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(447), 1, + anon_sym_RBRACE, + STATE(174), 1, + aux_sym_map_repeat1, + [6337] = 3, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(449), 1, + anon_sym_RBRACE, + STATE(157), 1, + aux_sym_map_repeat1, + [6347] = 3, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(451), 1, + anon_sym_RBRACE, + STATE(157), 1, + aux_sym_map_repeat1, + [6357] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(453), 1, + anon_sym_GT, + STATE(176), 1, + aux_sym_function_repeat1, + [6367] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(455), 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6377] = 3, + ACTIONS(410), 1, + sym_identifier, + ACTIONS(457), 1, + anon_sym_GT, + STATE(155), 1, + aux_sym_function_repeat1, + [6387] = 3, + ACTIONS(459), 1, sym_identifier, - [4551] = 1, - ACTIONS(460), 1, - anon_sym_LBRACE, - [4555] = 1, ACTIONS(462), 1, - anon_sym_LT, - [4559] = 1, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [6397] = 1, + ACTIONS(462), 2, + sym_identifier, + anon_sym_GT, + [6402] = 2, ACTIONS(464), 1, - anon_sym_LBRACE, - [4563] = 1, + anon_sym_LT, ACTIONS(466), 1, anon_sym_LBRACE, - [4567] = 1, - ACTIONS(468), 1, - anon_sym_LBRACE, - [4571] = 1, - ACTIONS(470), 1, - ts_builtin_sym_end, - [4575] = 1, - ACTIONS(472), 1, + [6409] = 1, + ACTIONS(468), 2, sym_identifier, - [4579] = 1, + anon_sym_RBRACE, + [6414] = 2, + ACTIONS(410), 1, + sym_identifier, + STATE(169), 1, + aux_sym_function_repeat1, + [6421] = 2, + ACTIONS(410), 1, + sym_identifier, + STATE(166), 1, + aux_sym_function_repeat1, + [6428] = 2, + ACTIONS(410), 1, + sym_identifier, + STATE(163), 1, + aux_sym_function_repeat1, + [6435] = 2, + ACTIONS(410), 1, + sym_identifier, + STATE(171), 1, + aux_sym_function_repeat1, + [6442] = 1, + ACTIONS(92), 2, + sym_identifier, + anon_sym_RBRACE, + [6447] = 2, + ACTIONS(470), 1, + anon_sym_LT, + ACTIONS(472), 1, + anon_sym_LBRACE, + [6454] = 1, + ACTIONS(96), 2, + sym_identifier, + anon_sym_RBRACE, + [6459] = 1, + ACTIONS(70), 2, + sym_identifier, + anon_sym_RBRACE, + [6464] = 2, ACTIONS(474), 1, - anon_sym_LBRACE, - [4583] = 1, + anon_sym_LT, ACTIONS(476), 1, - aux_sym_comment_token1, - [4587] = 1, - ACTIONS(478), 1, anon_sym_LBRACE, - [4591] = 1, + [6471] = 1, + ACTIONS(136), 2, + sym_identifier, + anon_sym_RBRACE, + [6476] = 1, + ACTIONS(116), 2, + sym_identifier, + anon_sym_RBRACE, + [6481] = 1, + ACTIONS(84), 2, + sym_identifier, + anon_sym_RBRACE, + [6486] = 1, + ACTIONS(112), 2, + sym_identifier, + anon_sym_RBRACE, + [6491] = 2, + ACTIONS(478), 1, + anon_sym_LT, ACTIONS(480), 1, anon_sym_LBRACE, - [4595] = 1, + [6498] = 1, + ACTIONS(104), 2, + sym_identifier, + anon_sym_RBRACE, + [6503] = 1, + ACTIONS(88), 2, + sym_identifier, + anon_sym_RBRACE, + [6508] = 1, + ACTIONS(100), 2, + sym_identifier, + anon_sym_RBRACE, + [6513] = 1, ACTIONS(482), 1, - anon_sym_LBRACE, - [4599] = 1, - ACTIONS(484), 1, anon_sym_from, - [4603] = 1, + [6517] = 1, + ACTIONS(484), 1, + anon_sym_LBRACE, + [6521] = 1, ACTIONS(486), 1, anon_sym_LBRACE, - [4607] = 1, + [6525] = 1, ACTIONS(488), 1, anon_sym_LBRACE, - [4611] = 1, + [6529] = 1, ACTIONS(490), 1, - anon_sym_from, - [4615] = 1, + anon_sym_LT, + [6533] = 1, ACTIONS(492), 1, anon_sym_LBRACE, - [4619] = 1, + [6537] = 1, ACTIONS(494), 1, - anon_sym_LBRACE, - [4623] = 1, + sym_identifier, + [6541] = 1, ACTIONS(496), 1, - anon_sym_EQ, - [4627] = 1, + aux_sym_comment_token1, + [6545] = 1, ACTIONS(498), 1, sym_identifier, - [4631] = 1, + [6549] = 1, ACTIONS(500), 1, anon_sym_LBRACE, - [4635] = 1, + [6553] = 1, ACTIONS(502), 1, - sym_identifier, - [4639] = 1, + anon_sym_LBRACE, + [6557] = 1, ACTIONS(504), 1, anon_sym_LBRACE, - [4643] = 1, + [6561] = 1, ACTIONS(506), 1, sym_identifier, - [4647] = 1, + [6565] = 1, ACTIONS(508), 1, - anon_sym_LT, - [4651] = 1, + sym_identifier, + [6569] = 1, ACTIONS(510), 1, - anon_sym_LT, - [4655] = 1, + anon_sym_LBRACE, + [6573] = 1, ACTIONS(512), 1, + anon_sym_LBRACE, + [6577] = 1, + ACTIONS(514), 1, + sym_identifier, + [6581] = 1, + ACTIONS(516), 1, + anon_sym_LBRACE, + [6585] = 1, + ACTIONS(518), 1, + anon_sym_from, + [6589] = 1, + ACTIONS(520), 1, + anon_sym_LBRACE, + [6593] = 1, + ACTIONS(522), 1, + anon_sym_LBRACE, + [6597] = 1, + ACTIONS(524), 1, + anon_sym_LBRACE, + [6601] = 1, + ACTIONS(526), 1, + anon_sym_LBRACE, + [6605] = 1, + ACTIONS(528), 1, + anon_sym_EQ, + [6609] = 1, + ACTIONS(530), 1, + ts_builtin_sym_end, + [6613] = 1, + ACTIONS(532), 1, + sym_identifier, + [6617] = 1, + ACTIONS(534), 1, + sym_identifier, + [6621] = 1, + ACTIONS(536), 1, + sym_identifier, + [6625] = 1, + ACTIONS(538), 1, + anon_sym_LBRACE, + [6629] = 1, + ACTIONS(540), 1, + anon_sym_LBRACE, + [6633] = 1, + ACTIONS(542), 1, + sym_identifier, + [6637] = 1, + ACTIONS(544), 1, + anon_sym_from, + [6641] = 1, + ACTIONS(546), 1, + anon_sym_LT, + [6645] = 1, + ACTIONS(548), 1, + anon_sym_LT, + [6649] = 1, + ACTIONS(550), 1, anon_sym_LT, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(45)] = 0, - [SMALL_STATE(46)] = 74, - [SMALL_STATE(47)] = 148, - [SMALL_STATE(48)] = 215, - [SMALL_STATE(49)] = 282, - [SMALL_STATE(50)] = 349, - [SMALL_STATE(51)] = 416, - [SMALL_STATE(52)] = 483, - [SMALL_STATE(53)] = 550, - [SMALL_STATE(54)] = 617, - [SMALL_STATE(55)] = 684, - [SMALL_STATE(56)] = 751, - [SMALL_STATE(57)] = 818, - [SMALL_STATE(58)] = 885, - [SMALL_STATE(59)] = 952, - [SMALL_STATE(60)] = 1019, - [SMALL_STATE(61)] = 1083, - [SMALL_STATE(62)] = 1147, - [SMALL_STATE(63)] = 1211, - [SMALL_STATE(64)] = 1275, - [SMALL_STATE(65)] = 1339, - [SMALL_STATE(66)] = 1403, - [SMALL_STATE(67)] = 1467, - [SMALL_STATE(68)] = 1531, - [SMALL_STATE(69)] = 1595, - [SMALL_STATE(70)] = 1659, - [SMALL_STATE(71)] = 1723, - [SMALL_STATE(72)] = 1787, - [SMALL_STATE(73)] = 1850, - [SMALL_STATE(74)] = 1913, - [SMALL_STATE(75)] = 1976, - [SMALL_STATE(76)] = 2039, - [SMALL_STATE(77)] = 2102, - [SMALL_STATE(78)] = 2165, - [SMALL_STATE(79)] = 2222, - [SMALL_STATE(80)] = 2279, - [SMALL_STATE(81)] = 2336, - [SMALL_STATE(82)] = 2393, - [SMALL_STATE(83)] = 2447, - [SMALL_STATE(84)] = 2501, - [SMALL_STATE(85)] = 2555, - [SMALL_STATE(86)] = 2609, - [SMALL_STATE(87)] = 2663, - [SMALL_STATE(88)] = 2717, - [SMALL_STATE(89)] = 2771, - [SMALL_STATE(90)] = 2825, - [SMALL_STATE(91)] = 2879, - [SMALL_STATE(92)] = 2910, - [SMALL_STATE(93)] = 2939, - [SMALL_STATE(94)] = 2970, - [SMALL_STATE(95)] = 2996, - [SMALL_STATE(96)] = 3022, - [SMALL_STATE(97)] = 3048, - [SMALL_STATE(98)] = 3074, - [SMALL_STATE(99)] = 3100, - [SMALL_STATE(100)] = 3126, - [SMALL_STATE(101)] = 3152, - [SMALL_STATE(102)] = 3178, - [SMALL_STATE(103)] = 3204, - [SMALL_STATE(104)] = 3232, - [SMALL_STATE(105)] = 3258, - [SMALL_STATE(106)] = 3284, - [SMALL_STATE(107)] = 3312, - [SMALL_STATE(108)] = 3340, - [SMALL_STATE(109)] = 3366, - [SMALL_STATE(110)] = 3392, - [SMALL_STATE(111)] = 3418, - [SMALL_STATE(112)] = 3444, - [SMALL_STATE(113)] = 3473, - [SMALL_STATE(114)] = 3502, - [SMALL_STATE(115)] = 3531, - [SMALL_STATE(116)] = 3572, - [SMALL_STATE(117)] = 3613, - [SMALL_STATE(118)] = 3654, - [SMALL_STATE(119)] = 3695, - [SMALL_STATE(120)] = 3720, - [SMALL_STATE(121)] = 3761, - [SMALL_STATE(122)] = 3799, - [SMALL_STATE(123)] = 3821, - [SMALL_STATE(124)] = 3859, - [SMALL_STATE(125)] = 3897, - [SMALL_STATE(126)] = 3919, - [SMALL_STATE(127)] = 3957, - [SMALL_STATE(128)] = 3992, - [SMALL_STATE(129)] = 4013, - [SMALL_STATE(130)] = 4034, - [SMALL_STATE(131)] = 4053, - [SMALL_STATE(132)] = 4072, - [SMALL_STATE(133)] = 4088, - [SMALL_STATE(134)] = 4099, - [SMALL_STATE(135)] = 4110, - [SMALL_STATE(136)] = 4121, - [SMALL_STATE(137)] = 4132, - [SMALL_STATE(138)] = 4143, - [SMALL_STATE(139)] = 4154, - [SMALL_STATE(140)] = 4165, - [SMALL_STATE(141)] = 4176, - [SMALL_STATE(142)] = 4187, - [SMALL_STATE(143)] = 4197, - [SMALL_STATE(144)] = 4207, - [SMALL_STATE(145)] = 4217, - [SMALL_STATE(146)] = 4227, - [SMALL_STATE(147)] = 4237, - [SMALL_STATE(148)] = 4247, - [SMALL_STATE(149)] = 4257, - [SMALL_STATE(150)] = 4267, - [SMALL_STATE(151)] = 4277, - [SMALL_STATE(152)] = 4287, - [SMALL_STATE(153)] = 4297, - [SMALL_STATE(154)] = 4307, - [SMALL_STATE(155)] = 4317, - [SMALL_STATE(156)] = 4327, - [SMALL_STATE(157)] = 4335, - [SMALL_STATE(158)] = 4345, - [SMALL_STATE(159)] = 4355, - [SMALL_STATE(160)] = 4365, - [SMALL_STATE(161)] = 4375, - [SMALL_STATE(162)] = 4385, - [SMALL_STATE(163)] = 4395, - [SMALL_STATE(164)] = 4405, - [SMALL_STATE(165)] = 4415, - [SMALL_STATE(166)] = 4420, - [SMALL_STATE(167)] = 4425, - [SMALL_STATE(168)] = 4432, - [SMALL_STATE(169)] = 4437, - [SMALL_STATE(170)] = 4444, - [SMALL_STATE(171)] = 4449, - [SMALL_STATE(172)] = 4454, - [SMALL_STATE(173)] = 4459, - [SMALL_STATE(174)] = 4466, - [SMALL_STATE(175)] = 4473, - [SMALL_STATE(176)] = 4480, - [SMALL_STATE(177)] = 4485, - [SMALL_STATE(178)] = 4492, - [SMALL_STATE(179)] = 4497, - [SMALL_STATE(180)] = 4502, - [SMALL_STATE(181)] = 4507, - [SMALL_STATE(182)] = 4512, - [SMALL_STATE(183)] = 4517, - [SMALL_STATE(184)] = 4524, - [SMALL_STATE(185)] = 4531, - [SMALL_STATE(186)] = 4535, - [SMALL_STATE(187)] = 4539, - [SMALL_STATE(188)] = 4543, - [SMALL_STATE(189)] = 4547, - [SMALL_STATE(190)] = 4551, - [SMALL_STATE(191)] = 4555, - [SMALL_STATE(192)] = 4559, - [SMALL_STATE(193)] = 4563, - [SMALL_STATE(194)] = 4567, - [SMALL_STATE(195)] = 4571, - [SMALL_STATE(196)] = 4575, - [SMALL_STATE(197)] = 4579, - [SMALL_STATE(198)] = 4583, - [SMALL_STATE(199)] = 4587, - [SMALL_STATE(200)] = 4591, - [SMALL_STATE(201)] = 4595, - [SMALL_STATE(202)] = 4599, - [SMALL_STATE(203)] = 4603, - [SMALL_STATE(204)] = 4607, - [SMALL_STATE(205)] = 4611, - [SMALL_STATE(206)] = 4615, - [SMALL_STATE(207)] = 4619, - [SMALL_STATE(208)] = 4623, - [SMALL_STATE(209)] = 4627, - [SMALL_STATE(210)] = 4631, - [SMALL_STATE(211)] = 4635, - [SMALL_STATE(212)] = 4639, - [SMALL_STATE(213)] = 4643, - [SMALL_STATE(214)] = 4647, - [SMALL_STATE(215)] = 4651, - [SMALL_STATE(216)] = 4655, + [SMALL_STATE(5)] = 0, + [SMALL_STATE(6)] = 45, + [SMALL_STATE(7)] = 84, + [SMALL_STATE(8)] = 123, + [SMALL_STATE(9)] = 162, + [SMALL_STATE(10)] = 201, + [SMALL_STATE(11)] = 240, + [SMALL_STATE(12)] = 279, + [SMALL_STATE(13)] = 324, + [SMALL_STATE(14)] = 363, + [SMALL_STATE(15)] = 402, + [SMALL_STATE(16)] = 447, + [SMALL_STATE(17)] = 488, + [SMALL_STATE(18)] = 529, + [SMALL_STATE(19)] = 568, + [SMALL_STATE(20)] = 613, + [SMALL_STATE(21)] = 651, + [SMALL_STATE(22)] = 689, + [SMALL_STATE(23)] = 727, + [SMALL_STATE(24)] = 771, + [SMALL_STATE(25)] = 815, + [SMALL_STATE(26)] = 859, + [SMALL_STATE(27)] = 899, + [SMALL_STATE(28)] = 937, + [SMALL_STATE(29)] = 975, + [SMALL_STATE(30)] = 1013, + [SMALL_STATE(31)] = 1053, + [SMALL_STATE(32)] = 1093, + [SMALL_STATE(33)] = 1133, + [SMALL_STATE(34)] = 1173, + [SMALL_STATE(35)] = 1211, + [SMALL_STATE(36)] = 1249, + [SMALL_STATE(37)] = 1287, + [SMALL_STATE(38)] = 1325, + [SMALL_STATE(39)] = 1363, + [SMALL_STATE(40)] = 1401, + [SMALL_STATE(41)] = 1445, + [SMALL_STATE(42)] = 1483, + [SMALL_STATE(43)] = 1521, + [SMALL_STATE(44)] = 1559, + [SMALL_STATE(45)] = 1596, + [SMALL_STATE(46)] = 1667, + [SMALL_STATE(47)] = 1738, + [SMALL_STATE(48)] = 1775, + [SMALL_STATE(49)] = 1812, + [SMALL_STATE(50)] = 1883, + [SMALL_STATE(51)] = 1954, + [SMALL_STATE(52)] = 1991, + [SMALL_STATE(53)] = 2062, + [SMALL_STATE(54)] = 2133, + [SMALL_STATE(55)] = 2172, + [SMALL_STATE(56)] = 2243, + [SMALL_STATE(57)] = 2314, + [SMALL_STATE(58)] = 2385, + [SMALL_STATE(59)] = 2456, + [SMALL_STATE(60)] = 2527, + [SMALL_STATE(61)] = 2598, + [SMALL_STATE(62)] = 2635, + [SMALL_STATE(63)] = 2706, + [SMALL_STATE(64)] = 2774, + [SMALL_STATE(65)] = 2842, + [SMALL_STATE(66)] = 2910, + [SMALL_STATE(67)] = 2978, + [SMALL_STATE(68)] = 3046, + [SMALL_STATE(69)] = 3114, + [SMALL_STATE(70)] = 3182, + [SMALL_STATE(71)] = 3250, + [SMALL_STATE(72)] = 3318, + [SMALL_STATE(73)] = 3386, + [SMALL_STATE(74)] = 3454, + [SMALL_STATE(75)] = 3522, + [SMALL_STATE(76)] = 3589, + [SMALL_STATE(77)] = 3656, + [SMALL_STATE(78)] = 3723, + [SMALL_STATE(79)] = 3790, + [SMALL_STATE(80)] = 3857, + [SMALL_STATE(81)] = 3924, + [SMALL_STATE(82)] = 3985, + [SMALL_STATE(83)] = 4046, + [SMALL_STATE(84)] = 4107, + [SMALL_STATE(85)] = 4168, + [SMALL_STATE(86)] = 4226, + [SMALL_STATE(87)] = 4284, + [SMALL_STATE(88)] = 4342, + [SMALL_STATE(89)] = 4400, + [SMALL_STATE(90)] = 4458, + [SMALL_STATE(91)] = 4516, + [SMALL_STATE(92)] = 4574, + [SMALL_STATE(93)] = 4632, + [SMALL_STATE(94)] = 4690, + [SMALL_STATE(95)] = 4748, + [SMALL_STATE(96)] = 4806, + [SMALL_STATE(97)] = 4864, + [SMALL_STATE(98)] = 4890, + [SMALL_STATE(99)] = 4931, + [SMALL_STATE(100)] = 4972, + [SMALL_STATE(101)] = 5013, + [SMALL_STATE(102)] = 5036, + [SMALL_STATE(103)] = 5077, + [SMALL_STATE(104)] = 5100, + [SMALL_STATE(105)] = 5141, + [SMALL_STATE(106)] = 5165, + [SMALL_STATE(107)] = 5187, + [SMALL_STATE(108)] = 5213, + [SMALL_STATE(109)] = 5239, + [SMALL_STATE(110)] = 5265, + [SMALL_STATE(111)] = 5303, + [SMALL_STATE(112)] = 5341, + [SMALL_STATE(113)] = 5379, + [SMALL_STATE(114)] = 5403, + [SMALL_STATE(115)] = 5441, + [SMALL_STATE(116)] = 5463, + [SMALL_STATE(117)] = 5489, + [SMALL_STATE(118)] = 5510, + [SMALL_STATE(119)] = 5531, + [SMALL_STATE(120)] = 5554, + [SMALL_STATE(121)] = 5575, + [SMALL_STATE(122)] = 5610, + [SMALL_STATE(123)] = 5633, + [SMALL_STATE(124)] = 5654, + [SMALL_STATE(125)] = 5675, + [SMALL_STATE(126)] = 5696, + [SMALL_STATE(127)] = 5717, + [SMALL_STATE(128)] = 5738, + [SMALL_STATE(129)] = 5759, + [SMALL_STATE(130)] = 5780, + [SMALL_STATE(131)] = 5801, + [SMALL_STATE(132)] = 5822, + [SMALL_STATE(133)] = 5843, + [SMALL_STATE(134)] = 5864, + [SMALL_STATE(135)] = 5885, + [SMALL_STATE(136)] = 5909, + [SMALL_STATE(137)] = 5933, + [SMALL_STATE(138)] = 5957, + [SMALL_STATE(139)] = 5977, + [SMALL_STATE(140)] = 5996, + [SMALL_STATE(141)] = 6012, + [SMALL_STATE(142)] = 6024, + [SMALL_STATE(143)] = 6035, + [SMALL_STATE(144)] = 6046, + [SMALL_STATE(145)] = 6057, + [SMALL_STATE(146)] = 6068, + [SMALL_STATE(147)] = 6079, + [SMALL_STATE(148)] = 6090, + [SMALL_STATE(149)] = 6101, + [SMALL_STATE(150)] = 6112, + [SMALL_STATE(151)] = 6123, + [SMALL_STATE(152)] = 6134, + [SMALL_STATE(153)] = 6145, + [SMALL_STATE(154)] = 6153, + [SMALL_STATE(155)] = 6163, + [SMALL_STATE(156)] = 6173, + [SMALL_STATE(157)] = 6183, + [SMALL_STATE(158)] = 6193, + [SMALL_STATE(159)] = 6203, + [SMALL_STATE(160)] = 6213, + [SMALL_STATE(161)] = 6221, + [SMALL_STATE(162)] = 6231, + [SMALL_STATE(163)] = 6241, + [SMALL_STATE(164)] = 6251, + [SMALL_STATE(165)] = 6261, + [SMALL_STATE(166)] = 6269, + [SMALL_STATE(167)] = 6279, + [SMALL_STATE(168)] = 6289, + [SMALL_STATE(169)] = 6297, + [SMALL_STATE(170)] = 6307, + [SMALL_STATE(171)] = 6317, + [SMALL_STATE(172)] = 6327, + [SMALL_STATE(173)] = 6337, + [SMALL_STATE(174)] = 6347, + [SMALL_STATE(175)] = 6357, + [SMALL_STATE(176)] = 6367, + [SMALL_STATE(177)] = 6377, + [SMALL_STATE(178)] = 6387, + [SMALL_STATE(179)] = 6397, + [SMALL_STATE(180)] = 6402, + [SMALL_STATE(181)] = 6409, + [SMALL_STATE(182)] = 6414, + [SMALL_STATE(183)] = 6421, + [SMALL_STATE(184)] = 6428, + [SMALL_STATE(185)] = 6435, + [SMALL_STATE(186)] = 6442, + [SMALL_STATE(187)] = 6447, + [SMALL_STATE(188)] = 6454, + [SMALL_STATE(189)] = 6459, + [SMALL_STATE(190)] = 6464, + [SMALL_STATE(191)] = 6471, + [SMALL_STATE(192)] = 6476, + [SMALL_STATE(193)] = 6481, + [SMALL_STATE(194)] = 6486, + [SMALL_STATE(195)] = 6491, + [SMALL_STATE(196)] = 6498, + [SMALL_STATE(197)] = 6503, + [SMALL_STATE(198)] = 6508, + [SMALL_STATE(199)] = 6513, + [SMALL_STATE(200)] = 6517, + [SMALL_STATE(201)] = 6521, + [SMALL_STATE(202)] = 6525, + [SMALL_STATE(203)] = 6529, + [SMALL_STATE(204)] = 6533, + [SMALL_STATE(205)] = 6537, + [SMALL_STATE(206)] = 6541, + [SMALL_STATE(207)] = 6545, + [SMALL_STATE(208)] = 6549, + [SMALL_STATE(209)] = 6553, + [SMALL_STATE(210)] = 6557, + [SMALL_STATE(211)] = 6561, + [SMALL_STATE(212)] = 6565, + [SMALL_STATE(213)] = 6569, + [SMALL_STATE(214)] = 6573, + [SMALL_STATE(215)] = 6577, + [SMALL_STATE(216)] = 6581, + [SMALL_STATE(217)] = 6585, + [SMALL_STATE(218)] = 6589, + [SMALL_STATE(219)] = 6593, + [SMALL_STATE(220)] = 6597, + [SMALL_STATE(221)] = 6601, + [SMALL_STATE(222)] = 6605, + [SMALL_STATE(223)] = 6609, + [SMALL_STATE(224)] = 6613, + [SMALL_STATE(225)] = 6617, + [SMALL_STATE(226)] = 6621, + [SMALL_STATE(227)] = 6625, + [SMALL_STATE(228)] = 6629, + [SMALL_STATE(229)] = 6633, + [SMALL_STATE(230)] = 6637, + [SMALL_STATE(231)] = 6641, + [SMALL_STATE(232)] = 6645, + [SMALL_STATE(233)] = 6649, }; 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(43), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [27] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 1), - [29] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 1), - [31] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), - [33] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), - [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [37] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [39] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [41] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [45] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 3), - [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 3), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [57] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [61] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), - [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), - [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1), - [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(43), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(198), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(5), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(126), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(169), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(191), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(190), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(187), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(85), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(43), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(4), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(4), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(5), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(126), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(169), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(191), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(190), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(187), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(85), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(41), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(4), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(4), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(5), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(126), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(169), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(191), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(190), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(126), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(156), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(208), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [470] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [29] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(47), + [34] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(206), + [37] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(8), + [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(8), + [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(9), + [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(112), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(195), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(203), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(201), + [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(207), + [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(153), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(93), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(51), + [70] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [72] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [74] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [76] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [78] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [80] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [86] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [90] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [92] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [94] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [96] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 1), + [110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 1), + [112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 3), + [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 3), + [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), + [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1), + [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), + [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(47), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(8), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(8), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(9), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(112), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(195), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(203), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(201), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(207), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(153), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(93), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(51), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(8), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(8), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(9), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(112), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(195), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(203), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(201), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(112), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(222), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(168), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [530] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), }; #ifdef __cplusplus