diff --git a/corpus/filter.txt b/corpus/filter.txt new file mode 100644 index 0000000..11f8b70 --- /dev/null +++ b/corpus/filter.txt @@ -0,0 +1,79 @@ +================== +Filter Loop +================== + +filter i in [1, 2, 3] { + i <= 1 +} + +--- + +(root + (item + (statement + (filter + (identifier) + (expression + (value + (list + (expression + (value + (integer))) + (expression + (value + (integer))) + (expression + (value + (integer)))))) + (item + (statement + (expression + (logic + (expression + (identifier)) + (logic_operator) + (expression + (value + (integer))))))))))) + +================== +Filter Loop Assignment +================== + +list = filter i in ["one", "two", "three"] { + i == "one" +} + +--- + +(root + (item + (statement + (assignment + (identifier) + (assignment_operator) + (statement + (filter + (identifier) + (expression + (value + (list + (expression + (value + (string))) + (expression + (value + (string))) + (expression + (value + (string)))))) + (item + (statement + (expression + (logic + (expression + (identifier)) + (logic_operator) + (expression + (value + (string))))))))))))) diff --git a/grammar.js b/grammar.js index ec6007a..0eda55f 100644 --- a/grammar.js +++ b/grammar.js @@ -19,6 +19,7 @@ module.exports = grammar({ $.async, $.for, $.transform, + $.filter, ), comment: $ => seq(/[#]+.*/), @@ -195,6 +196,16 @@ module.exports = grammar({ '}', ), + filter: $ => seq( + 'filter', + $.identifier, + 'in', + $.expression, + '{', + $.item, + '}', + ), + tool: $ => choice( 'assert', 'assert_equal', diff --git a/src/grammar.json b/src/grammar.json index db2514f..46c44eb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -62,6 +62,10 @@ { "type": "SYMBOL", "name": "transform" + }, + { + "type": "SYMBOL", + "name": "filter" } ] }, @@ -792,6 +796,39 @@ } ] }, + "filter": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "filter" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "item" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, "tool": { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 7c79351..0077998 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -117,6 +117,29 @@ ] } }, + { + "type": "filter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "item", + "named": true + } + ] + } + }, { "type": "for", "named": true, @@ -402,6 +425,10 @@ "type": "expression", "named": true }, + { + "type": "filter", + "named": true + }, { "type": "for", "named": true diff --git a/src/parser.c b/src/parser.c index 05bf304..ee5e7bd 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 238 +#define STATE_COUNT 245 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 107 +#define SYMBOL_COUNT 108 #define ALIAS_COUNT 0 #define TOKEN_COUNT 69 #define EXTERNAL_TOKEN_COUNT 0 @@ -56,24 +56,24 @@ enum { anon_sym_for = 37, anon_sym_in = 38, anon_sym_transform = 39, - anon_sym_assert = 40, - anon_sym_assert_equal = 41, - anon_sym_output = 42, - anon_sym_read = 43, - anon_sym_write = 44, - anon_sym_raw = 45, - anon_sym_sh = 46, - anon_sym_bash = 47, - anon_sym_fish = 48, - anon_sym_zsh = 49, - anon_sym_random = 50, - anon_sym_random_boolean = 51, - anon_sym_random_float = 52, - anon_sym_random_string = 53, - anon_sym_random_integer = 54, - anon_sym_length = 55, - anon_sym_sort = 56, - anon_sym_filter = 57, + anon_sym_filter = 40, + anon_sym_assert = 41, + anon_sym_assert_equal = 42, + anon_sym_output = 43, + anon_sym_read = 44, + anon_sym_write = 45, + anon_sym_raw = 46, + anon_sym_sh = 47, + anon_sym_bash = 48, + anon_sym_fish = 49, + anon_sym_zsh = 50, + anon_sym_random = 51, + anon_sym_random_boolean = 52, + anon_sym_random_float = 53, + anon_sym_random_string = 54, + anon_sym_random_integer = 55, + anon_sym_length = 56, + anon_sym_sort = 57, anon_sym_to_csv = 58, anon_sym_from_csv = 59, anon_sym_to_json = 60, @@ -111,18 +111,19 @@ enum { sym_while = 92, sym_for = 93, sym_transform = 94, - sym_tool = 95, - sym_select = 96, - sym_insert = 97, - sym_async = 98, - aux_sym_root_repeat1 = 99, - aux_sym_item_repeat1 = 100, - aux_sym_list_repeat1 = 101, - aux_sym_function_repeat1 = 102, - aux_sym_table_repeat1 = 103, - aux_sym_map_repeat1 = 104, - aux_sym_if_else_repeat1 = 105, - aux_sym_insert_repeat1 = 106, + sym_filter = 95, + sym_tool = 96, + sym_select = 97, + sym_insert = 98, + sym_async = 99, + aux_sym_root_repeat1 = 100, + aux_sym_item_repeat1 = 101, + aux_sym_list_repeat1 = 102, + aux_sym_function_repeat1 = 103, + aux_sym_table_repeat1 = 104, + aux_sym_map_repeat1 = 105, + aux_sym_if_else_repeat1 = 106, + aux_sym_insert_repeat1 = 107, }; static const char * const ts_symbol_names[] = { @@ -166,6 +167,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_for] = "for", [anon_sym_in] = "in", [anon_sym_transform] = "transform", + [anon_sym_filter] = "filter", [anon_sym_assert] = "assert", [anon_sym_assert_equal] = "assert_equal", [anon_sym_output] = "output", @@ -183,7 +185,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_random_integer] = "random_integer", [anon_sym_length] = "length", [anon_sym_sort] = "sort", - [anon_sym_filter] = "filter", [anon_sym_to_csv] = "to_csv", [anon_sym_from_csv] = "from_csv", [anon_sym_to_json] = "to_json", @@ -221,6 +222,7 @@ static const char * const ts_symbol_names[] = { [sym_while] = "while", [sym_for] = "for", [sym_transform] = "transform", + [sym_filter] = "filter", [sym_tool] = "tool", [sym_select] = "select", [sym_insert] = "insert", @@ -276,6 +278,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_for] = anon_sym_for, [anon_sym_in] = anon_sym_in, [anon_sym_transform] = anon_sym_transform, + [anon_sym_filter] = anon_sym_filter, [anon_sym_assert] = anon_sym_assert, [anon_sym_assert_equal] = anon_sym_assert_equal, [anon_sym_output] = anon_sym_output, @@ -293,7 +296,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_random_integer] = anon_sym_random_integer, [anon_sym_length] = anon_sym_length, [anon_sym_sort] = anon_sym_sort, - [anon_sym_filter] = anon_sym_filter, [anon_sym_to_csv] = anon_sym_to_csv, [anon_sym_from_csv] = anon_sym_from_csv, [anon_sym_to_json] = anon_sym_to_json, @@ -331,6 +333,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_while] = sym_while, [sym_for] = sym_for, [sym_transform] = sym_transform, + [sym_filter] = sym_filter, [sym_tool] = sym_tool, [sym_select] = sym_select, [sym_insert] = sym_insert, @@ -506,6 +509,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_filter] = { + .visible = true, + .named = false, + }, [anon_sym_assert] = { .visible = true, .named = false, @@ -574,10 +581,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_filter] = { - .visible = true, - .named = false, - }, [anon_sym_to_csv] = { .visible = true, .named = false, @@ -726,6 +729,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_filter] = { + .visible = true, + .named = true, + }, [sym_tool] = { .visible = true, .named = true, @@ -788,33 +795,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 2, - [5] = 5, - [6] = 6, + [3] = 3, + [4] = 4, + [5] = 2, + [6] = 2, [7] = 7, [8] = 8, [9] = 9, [10] = 10, - [11] = 11, + [11] = 9, [12] = 12, - [13] = 10, - [14] = 11, + [13] = 8, + [14] = 14, [15] = 15, [16] = 16, - [17] = 8, - [18] = 18, - [19] = 19, - [20] = 12, + [17] = 17, + [18] = 9, + [19] = 12, + [20] = 20, [21] = 12, - [22] = 10, - [23] = 11, - [24] = 24, + [22] = 22, + [23] = 14, + [24] = 8, [25] = 25, [26] = 26, [27] = 27, - [28] = 27, - [29] = 29, + [28] = 28, + [29] = 28, [30] = 30, [31] = 31, [32] = 32, @@ -829,15 +836,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 34, - [45] = 34, + [44] = 44, + [45] = 45, [46] = 46, [47] = 47, [48] = 48, [49] = 49, - [50] = 50, + [50] = 49, [51] = 51, - [52] = 52, + [52] = 49, [53] = 53, [54] = 54, [55] = 55, @@ -845,27 +852,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [57] = 57, [58] = 58, [59] = 59, - [60] = 59, + [60] = 60, [61] = 61, [62] = 62, [63] = 63, - [64] = 64, + [64] = 63, [65] = 65, - [66] = 64, - [67] = 67, + [66] = 66, + [67] = 62, [68] = 65, - [69] = 59, - [70] = 63, - [71] = 65, - [72] = 61, - [73] = 62, - [74] = 61, - [75] = 62, - [76] = 63, - [77] = 64, - [78] = 78, - [79] = 79, - [80] = 80, + [69] = 66, + [70] = 65, + [71] = 61, + [72] = 72, + [73] = 73, + [74] = 73, + [75] = 63, + [76] = 61, + [77] = 77, + [78] = 73, + [79] = 62, + [80] = 66, [81] = 81, [82] = 82, [83] = 83, @@ -874,115 +881,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [86] = 86, [87] = 87, [88] = 88, - [89] = 87, - [90] = 88, - [91] = 86, + [89] = 89, + [90] = 90, + [91] = 91, [92] = 92, - [93] = 83, + [93] = 93, [94] = 86, - [95] = 83, + [95] = 85, [96] = 96, [97] = 97, [98] = 98, - [99] = 99, + [99] = 92, [100] = 100, [101] = 101, - [102] = 102, + [102] = 91, [103] = 103, [104] = 104, [105] = 105, - [106] = 106, - [107] = 107, + [106] = 86, + [107] = 85, [108] = 108, [109] = 109, - [110] = 32, - [111] = 29, - [112] = 30, - [113] = 29, - [114] = 114, - [115] = 30, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 31, + [114] = 30, + [115] = 33, [116] = 116, - [117] = 37, - [118] = 43, + [117] = 31, + [118] = 30, [119] = 119, - [120] = 120, + [120] = 39, [121] = 121, - [122] = 42, - [123] = 50, - [124] = 38, + [122] = 45, + [123] = 46, + [124] = 51, [125] = 35, - [126] = 47, - [127] = 46, - [128] = 128, - [129] = 49, - [130] = 31, - [131] = 40, - [132] = 36, - [133] = 48, - [134] = 51, - [135] = 41, - [136] = 39, - [137] = 33, - [138] = 138, - [139] = 36, - [140] = 49, - [141] = 35, - [142] = 40, - [143] = 43, - [144] = 39, - [145] = 138, - [146] = 38, - [147] = 31, - [148] = 47, - [149] = 46, + [126] = 40, + [127] = 41, + [128] = 37, + [129] = 129, + [130] = 38, + [131] = 32, + [132] = 44, + [133] = 133, + [134] = 134, + [135] = 36, + [136] = 136, + [137] = 47, + [138] = 34, + [139] = 43, + [140] = 42, + [141] = 48, + [142] = 32, + [143] = 41, + [144] = 144, + [145] = 144, + [146] = 45, + [147] = 46, + [148] = 35, + [149] = 40, [150] = 37, - [151] = 33, - [152] = 41, - [153] = 48, - [154] = 42, - [155] = 155, - [156] = 52, - [157] = 155, - [158] = 155, - [159] = 159, + [151] = 38, + [152] = 44, + [153] = 36, + [154] = 47, + [155] = 34, + [156] = 39, + [157] = 42, + [158] = 43, + [159] = 53, [160] = 160, - [161] = 161, - [162] = 162, + [161] = 160, + [162] = 160, [163] = 163, [164] = 164, - [165] = 163, + [165] = 165, [166] = 166, [167] = 167, - [168] = 166, - [169] = 169, - [170] = 167, + [168] = 168, + [169] = 167, + [170] = 170, [171] = 171, [172] = 172, [173] = 173, - [174] = 169, - [175] = 167, - [176] = 171, - [177] = 171, - [178] = 178, - [179] = 169, - [180] = 172, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 174, + [178] = 172, + [179] = 176, + [180] = 174, [181] = 181, - [182] = 181, - [183] = 181, - [184] = 184, - [185] = 172, - [186] = 81, - [187] = 187, - [188] = 187, - [189] = 187, - [190] = 190, - [191] = 190, - [192] = 96, - [193] = 190, - [194] = 194, + [182] = 182, + [183] = 171, + [184] = 171, + [185] = 182, + [186] = 172, + [187] = 182, + [188] = 176, + [189] = 175, + [190] = 82, + [191] = 81, + [192] = 192, + [193] = 192, + [194] = 192, [195] = 195, - [196] = 196, - [197] = 197, + [196] = 195, + [197] = 195, [198] = 198, [199] = 199, [200] = 200, @@ -993,36 +1000,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 208, + [208] = 205, [209] = 209, - [210] = 210, + [210] = 202, [211] = 211, - [212] = 212, - [213] = 203, - [214] = 203, - [215] = 209, - [216] = 195, - [217] = 217, - [218] = 198, + [212] = 200, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 200, + [217] = 207, + [218] = 218, [219] = 219, - [220] = 195, - [221] = 221, - [222] = 204, - [223] = 200, - [224] = 219, - [225] = 219, - [226] = 204, - [227] = 210, - [228] = 228, - [229] = 229, + [220] = 220, + [221] = 214, + [222] = 222, + [223] = 207, + [224] = 202, + [225] = 225, + [226] = 226, + [227] = 226, + [228] = 220, + [229] = 213, [230] = 230, - [231] = 200, + [231] = 226, [232] = 232, - [233] = 209, - [234] = 207, - [235] = 212, - [236] = 221, - [237] = 212, + [233] = 213, + [234] = 199, + [235] = 225, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 205, + [241] = 241, + [242] = 215, + [243] = 243, + [244] = 215, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1962,7 +1976,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [26] = {.lex_state = 14}, [27] = {.lex_state = 14}, [28] = {.lex_state = 14}, - [29] = {.lex_state = 13}, + [29] = {.lex_state = 14}, [30] = {.lex_state = 13}, [31] = {.lex_state = 13}, [32] = {.lex_state = 13}, @@ -1990,8 +2004,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [54] = {.lex_state = 13}, [55] = {.lex_state = 15}, [56] = {.lex_state = 15}, - [57] = {.lex_state = 15}, - [58] = {.lex_state = 14}, + [57] = {.lex_state = 13}, + [58] = {.lex_state = 15}, [59] = {.lex_state = 14}, [60] = {.lex_state = 14}, [61] = {.lex_state = 14}, @@ -2005,14 +2019,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 14}, [70] = {.lex_state = 14}, [71] = {.lex_state = 14}, - [72] = {.lex_state = 14}, + [72] = {.lex_state = 15}, [73] = {.lex_state = 14}, [74] = {.lex_state = 14}, [75] = {.lex_state = 14}, [76] = {.lex_state = 14}, - [77] = {.lex_state = 14}, - [78] = {.lex_state = 15}, - [79] = {.lex_state = 15}, + [77] = {.lex_state = 15}, + [78] = {.lex_state = 14}, + [79] = {.lex_state = 14}, [80] = {.lex_state = 14}, [81] = {.lex_state = 14}, [82] = {.lex_state = 14}, @@ -2043,15 +2057,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 14}, [108] = {.lex_state = 14}, [109] = {.lex_state = 14}, - [110] = {.lex_state = 1}, - [111] = {.lex_state = 1}, - [112] = {.lex_state = 1}, - [113] = {.lex_state = 2}, - [114] = {.lex_state = 2}, - [115] = {.lex_state = 2}, - [116] = {.lex_state = 1}, - [117] = {.lex_state = 1}, - [118] = {.lex_state = 1}, + [110] = {.lex_state = 14}, + [111] = {.lex_state = 14}, + [112] = {.lex_state = 14}, + [113] = {.lex_state = 1}, + [114] = {.lex_state = 1}, + [115] = {.lex_state = 1}, + [116] = {.lex_state = 2}, + [117] = {.lex_state = 2}, + [118] = {.lex_state = 2}, [119] = {.lex_state = 1}, [120] = {.lex_state = 1}, [121] = {.lex_state = 1}, @@ -2072,12 +2086,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 1}, [137] = {.lex_state = 1}, [138] = {.lex_state = 1}, - [139] = {.lex_state = 2}, - [140] = {.lex_state = 2}, - [141] = {.lex_state = 2}, + [139] = {.lex_state = 1}, + [140] = {.lex_state = 1}, + [141] = {.lex_state = 1}, [142] = {.lex_state = 2}, [143] = {.lex_state = 2}, - [144] = {.lex_state = 2}, + [144] = {.lex_state = 1}, [145] = {.lex_state = 1}, [146] = {.lex_state = 2}, [147] = {.lex_state = 2}, @@ -2088,27 +2102,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [152] = {.lex_state = 2}, [153] = {.lex_state = 2}, [154] = {.lex_state = 2}, - [155] = {.lex_state = 1}, - [156] = {.lex_state = 1}, - [157] = {.lex_state = 1}, - [158] = {.lex_state = 1}, - [159] = {.lex_state = 14}, - [160] = {.lex_state = 14}, - [161] = {.lex_state = 14}, - [162] = {.lex_state = 14}, + [155] = {.lex_state = 2}, + [156] = {.lex_state = 2}, + [157] = {.lex_state = 2}, + [158] = {.lex_state = 2}, + [159] = {.lex_state = 1}, + [160] = {.lex_state = 1}, + [161] = {.lex_state = 1}, + [162] = {.lex_state = 1}, [163] = {.lex_state = 14}, [164] = {.lex_state = 14}, [165] = {.lex_state = 14}, - [166] = {.lex_state = 0}, + [166] = {.lex_state = 14}, [167] = {.lex_state = 14}, - [168] = {.lex_state = 0}, + [168] = {.lex_state = 14}, [169] = {.lex_state = 14}, [170] = {.lex_state = 14}, [171] = {.lex_state = 14}, [172] = {.lex_state = 14}, [173] = {.lex_state = 14}, [174] = {.lex_state = 14}, - [175] = {.lex_state = 14}, + [175] = {.lex_state = 0}, [176] = {.lex_state = 14}, [177] = {.lex_state = 14}, [178] = {.lex_state = 14}, @@ -2120,8 +2134,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [184] = {.lex_state = 14}, [185] = {.lex_state = 14}, [186] = {.lex_state = 14}, - [187] = {.lex_state = 0}, - [188] = {.lex_state = 0}, + [187] = {.lex_state = 14}, + [188] = {.lex_state = 14}, [189] = {.lex_state = 0}, [190] = {.lex_state = 14}, [191] = {.lex_state = 14}, @@ -2134,43 +2148,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [198] = {.lex_state = 14}, [199] = {.lex_state = 14}, [200] = {.lex_state = 0}, - [201] = {.lex_state = 0}, - [202] = {.lex_state = 14}, + [201] = {.lex_state = 14}, + [202] = {.lex_state = 0}, [203] = {.lex_state = 0}, - [204] = {.lex_state = 0}, - [205] = {.lex_state = 14}, - [206] = {.lex_state = 14}, - [207] = {.lex_state = 14}, + [204] = {.lex_state = 14}, + [205] = {.lex_state = 0}, + [206] = {.lex_state = 0}, + [207] = {.lex_state = 0}, [208] = {.lex_state = 0}, [209] = {.lex_state = 0}, - [210] = {.lex_state = 14}, + [210] = {.lex_state = 0}, [211] = {.lex_state = 0}, [212] = {.lex_state = 0}, [213] = {.lex_state = 0}, - [214] = {.lex_state = 0}, + [214] = {.lex_state = 14}, [215] = {.lex_state = 0}, [216] = {.lex_state = 0}, [217] = {.lex_state = 0}, - [218] = {.lex_state = 14}, + [218] = {.lex_state = 0}, [219] = {.lex_state = 0}, - [220] = {.lex_state = 0}, + [220] = {.lex_state = 14}, [221] = {.lex_state = 14}, [222] = {.lex_state = 0}, [223] = {.lex_state = 0}, [224] = {.lex_state = 0}, - [225] = {.lex_state = 0}, + [225] = {.lex_state = 14}, [226] = {.lex_state = 0}, - [227] = {.lex_state = 14}, - [228] = {.lex_state = 0}, + [227] = {.lex_state = 0}, + [228] = {.lex_state = 14}, [229] = {.lex_state = 0}, [230] = {.lex_state = 0}, [231] = {.lex_state = 0}, [232] = {.lex_state = 0}, [233] = {.lex_state = 0}, [234] = {.lex_state = 14}, - [235] = {.lex_state = 0}, + [235] = {.lex_state = 14}, [236] = {.lex_state = 14}, - [237] = {.lex_state = 0}, + [237] = {.lex_state = 14}, + [238] = {.lex_state = 14}, + [239] = {.lex_state = 14}, + [240] = {.lex_state = 0}, + [241] = {.lex_state = 0}, + [242] = {.lex_state = 0}, + [243] = {.lex_state = 0}, + [244] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2215,6 +2236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_transform] = ACTIONS(1), + [anon_sym_filter] = ACTIONS(1), [anon_sym_assert] = ACTIONS(1), [anon_sym_assert_equal] = ACTIONS(1), [anon_sym_output] = ACTIONS(1), @@ -2232,7 +2254,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random_integer] = ACTIONS(1), [anon_sym_length] = ACTIONS(1), [anon_sym_sort] = ACTIONS(1), - [anon_sym_filter] = ACTIONS(1), [anon_sym_to_csv] = ACTIONS(1), [anon_sym_from_csv] = ACTIONS(1), [anon_sym_to_json] = ACTIONS(1), @@ -2246,32 +2267,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(229), - [sym_item] = STATE(6), - [sym_statement] = STATE(8), - [sym_comment] = STATE(101), - [sym_expression] = STATE(51), - [sym__expression_kind] = STATE(41), - [sym_value] = STATE(41), - [sym_boolean] = STATE(36), - [sym_list] = STATE(36), - [sym_function] = STATE(36), - [sym_table] = STATE(36), - [sym_map] = STATE(36), - [sym_math] = STATE(41), - [sym_logic] = STATE(41), - [sym_assignment] = STATE(101), - [sym_if_else] = STATE(101), + [sym_root] = STATE(230), + [sym_item] = STATE(4), + [sym_statement] = STATE(23), + [sym_comment] = STATE(88), + [sym_expression] = STATE(48), + [sym__expression_kind] = STATE(39), + [sym_value] = STATE(39), + [sym_boolean] = STATE(43), + [sym_list] = STATE(43), + [sym_function] = STATE(43), + [sym_table] = STATE(43), + [sym_map] = STATE(43), + [sym_math] = STATE(39), + [sym_logic] = STATE(39), + [sym_assignment] = STATE(88), + [sym_if_else] = STATE(88), [sym_if] = STATE(55), - [sym_function_call] = STATE(41), - [sym_while] = STATE(101), - [sym_for] = STATE(101), - [sym_transform] = STATE(101), - [sym_select] = STATE(101), - [sym_insert] = STATE(101), - [sym_async] = STATE(101), - [aux_sym_root_repeat1] = STATE(6), - [aux_sym_item_repeat1] = STATE(8), + [sym_function_call] = STATE(39), + [sym_while] = STATE(88), + [sym_for] = STATE(88), + [sym_transform] = STATE(88), + [sym_filter] = STATE(88), + [sym_select] = STATE(88), + [sym_insert] = STATE(88), + [sym_async] = STATE(88), + [aux_sym_root_repeat1] = STATE(4), + [aux_sym_item_repeat1] = STATE(23), [sym_identifier] = ACTIONS(3), [aux_sym_comment_token1] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2288,52 +2310,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), [anon_sym_transform] = ACTIONS(29), - [anon_sym_select] = ACTIONS(31), - [anon_sym_insert] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), + [anon_sym_filter] = ACTIONS(31), + [anon_sym_select] = ACTIONS(33), + [anon_sym_insert] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 14, - ACTIONS(37), 1, - sym_identifier, ACTIONS(39), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, anon_sym_table, - STATE(76), 1, + STATE(79), 1, sym_tool, - STATE(145), 1, + STATE(144), 1, sym_expression, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, + STATE(139), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(158), 5, + STATE(162), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(55), 24, + ACTIONS(57), 24, anon_sym_transform, + anon_sym_filter, anon_sym_assert, anon_sym_assert_equal, anon_sym_output, @@ -2351,113 +2375,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_random_integer, anon_sym_length, anon_sym_sort, - anon_sym_filter, anon_sym_to_csv, anon_sym_from_csv, anon_sym_to_json, anon_sym_from_json, anon_sym_help, - [76] = 14, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(57), 1, - sym_identifier, - STATE(70), 1, - sym_tool, - STATE(145), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(157), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(55), 24, - anon_sym_transform, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_output, - anon_sym_read, - anon_sym_write, - anon_sym_raw, - anon_sym_sh, - anon_sym_bash, - anon_sym_fish, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_string, - anon_sym_random_integer, - anon_sym_length, - anon_sym_sort, - anon_sym_filter, - anon_sym_to_csv, - anon_sym_from_csv, - anon_sym_to_json, - anon_sym_from_json, - anon_sym_help, - [152] = 14, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, + [76] = 26, ACTIONS(59), 1, + ts_builtin_sym_end, + ACTIONS(61), 1, sym_identifier, - STATE(63), 1, - sym_tool, - STATE(145), 1, + ACTIONS(64), 1, + aux_sym_comment_token1, + ACTIONS(67), 1, + anon_sym_LPAREN, + ACTIONS(70), 1, + sym_integer, + ACTIONS(79), 1, + anon_sym_LBRACK, + ACTIONS(82), 1, + anon_sym_function, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(88), 1, + anon_sym_table, + ACTIONS(91), 1, + anon_sym_if, + ACTIONS(94), 1, + anon_sym_while, + ACTIONS(97), 1, + anon_sym_for, + ACTIONS(100), 1, + anon_sym_transform, + ACTIONS(103), 1, + anon_sym_filter, + ACTIONS(106), 1, + anon_sym_select, + ACTIONS(109), 1, + anon_sym_insert, + ACTIONS(112), 1, + anon_sym_async, + STATE(48), 1, sym_expression, - ACTIONS(43), 2, + STATE(55), 1, + sym_if, + ACTIONS(73), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(76), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(155), 5, + STATE(3), 2, + sym_item, + aux_sym_root_repeat1, + STATE(23), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(55), 24, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [176] = 26, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + ACTIONS(115), 1, + ts_builtin_sym_end, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(3), 2, + sym_item, + aux_sym_root_repeat1, + STATE(23), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [276] = 14, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(117), 1, + sym_identifier, + STATE(67), 1, + sym_tool, + STATE(144), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(161), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(57), 24, + anon_sym_transform, + anon_sym_filter, anon_sym_assert, anon_sym_assert_equal, anon_sym_output, @@ -2475,276 +2585,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_random_integer, anon_sym_length, anon_sym_sort, - anon_sym_filter, anon_sym_to_csv, anon_sym_from_csv, anon_sym_to_json, anon_sym_from_json, anon_sym_help, - [228] = 25, - ACTIONS(61), 1, - ts_builtin_sym_end, - ACTIONS(63), 1, - sym_identifier, - ACTIONS(66), 1, - aux_sym_comment_token1, - ACTIONS(69), 1, + [352] = 14, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(72), 1, + ACTIONS(43), 1, sym_integer, - ACTIONS(81), 1, + ACTIONS(49), 1, anon_sym_LBRACK, - ACTIONS(84), 1, + ACTIONS(51), 1, anon_sym_function, - ACTIONS(87), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(90), 1, + ACTIONS(55), 1, anon_sym_table, - ACTIONS(93), 1, - anon_sym_if, - ACTIONS(96), 1, - anon_sym_while, - ACTIONS(99), 1, - anon_sym_for, - ACTIONS(102), 1, - anon_sym_transform, - ACTIONS(105), 1, - anon_sym_select, - ACTIONS(108), 1, - anon_sym_insert, - ACTIONS(111), 1, - anon_sym_async, - STATE(51), 1, + ACTIONS(119), 1, + sym_identifier, + STATE(62), 1, + sym_tool, + STATE(144), 1, sym_expression, - STATE(55), 1, - sym_if, - ACTIONS(75), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(78), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(5), 2, - sym_item, - aux_sym_root_repeat1, - STATE(8), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, + STATE(139), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(41), 5, + STATE(160), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [324] = 25, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, + ACTIONS(57), 24, anon_sym_transform, - ACTIONS(31), 1, + anon_sym_filter, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_output, + anon_sym_read, + anon_sym_write, + anon_sym_raw, + anon_sym_sh, + anon_sym_bash, + anon_sym_fish, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_string, + anon_sym_random_integer, + anon_sym_length, + anon_sym_sort, + anon_sym_to_csv, + anon_sym_from_csv, + anon_sym_to_json, + anon_sym_from_json, + anon_sym_help, + [428] = 25, + ACTIONS(123), 1, + sym_identifier, + ACTIONS(126), 1, + aux_sym_comment_token1, + ACTIONS(129), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(141), 1, + anon_sym_LBRACK, + ACTIONS(144), 1, + anon_sym_function, + ACTIONS(147), 1, + anon_sym_LBRACE, + ACTIONS(150), 1, + anon_sym_table, + ACTIONS(153), 1, + anon_sym_if, + ACTIONS(156), 1, + anon_sym_while, + ACTIONS(159), 1, + anon_sym_for, + ACTIONS(162), 1, + anon_sym_transform, + ACTIONS(165), 1, + anon_sym_filter, + ACTIONS(168), 1, anon_sym_select, - ACTIONS(33), 1, + ACTIONS(171), 1, anon_sym_insert, - ACTIONS(35), 1, + ACTIONS(174), 1, anon_sym_async, - ACTIONS(114), 1, - ts_builtin_sym_end, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(5), 2, - sym_item, - aux_sym_root_repeat1, - STATE(8), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [420] = 24, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(121), 1, - aux_sym_comment_token1, - ACTIONS(124), 1, - anon_sym_LPAREN, - ACTIONS(127), 1, - sym_integer, - ACTIONS(136), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_function, - ACTIONS(142), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(148), 1, - anon_sym_if, - ACTIONS(151), 1, - anon_sym_while, - ACTIONS(154), 1, - anon_sym_for, - ACTIONS(157), 1, - anon_sym_transform, - ACTIONS(160), 1, - anon_sym_select, - ACTIONS(163), 1, - anon_sym_insert, - ACTIONS(166), 1, - anon_sym_async, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - ACTIONS(116), 2, + ACTIONS(121), 2, ts_builtin_sym_end, anon_sym_RBRACE, - ACTIONS(130), 2, + ACTIONS(135), 2, sym_float, sym_string, - ACTIONS(133), 2, + ACTIONS(138), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [513] = 8, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - STATE(7), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(169), 7, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - ACTIONS(171), 13, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [573] = 24, + [525] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2770,16 +2750,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(208), 1, + STATE(224), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -2787,32 +2769,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [665] = 24, + [621] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2838,16 +2821,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(200), 1, + STATE(205), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -2855,32 +2840,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [757] = 24, + [717] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2906,286 +2892,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_async, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - STATE(214), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [849] = 24, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_transform, - ACTIONS(31), 1, anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, ACTIONS(35), 1, - anon_sym_async, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - STATE(220), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [941] = 24, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_transform, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, anon_sym_insert, - ACTIONS(35), 1, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - STATE(223), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [1033] = 24, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_transform, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_async, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - STATE(213), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [1125] = 24, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_transform, - ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, - anon_sym_async, - ACTIONS(173), 1, + ACTIONS(177), 1, anon_sym_RBRACE, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, @@ -3195,32 +2911,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(19), 2, + STATE(20), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1217] = 24, + [813] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3246,12 +2963,85 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(240), 1, + sym_item, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [909] = 25, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, @@ -3263,32 +3053,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1309] = 24, + [1005] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3314,14 +3105,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - ACTIONS(169), 1, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(202), 1, + sym_item, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [1101] = 25, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + ACTIONS(179), 1, anon_sym_RBRACE, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, @@ -3334,29 +3198,30 @@ static const uint16_t ts_small_parse_table[] = { STATE(7), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1401] = 24, + [1197] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3382,16 +3247,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(228), 1, + STATE(219), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3399,32 +3266,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1493] = 24, + [1293] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3450,14 +3318,300 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - ACTIONS(175), 1, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(218), 1, + sym_item, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [1389] = 25, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(222), 1, + sym_item, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [1485] = 25, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(208), 1, + sym_item, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [1581] = 25, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(223), 1, + sym_item, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [1677] = 25, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(33), 1, + anon_sym_select, + ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, + anon_sym_async, + ACTIONS(181), 1, anon_sym_RBRACE, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, @@ -3470,29 +3624,30 @@ static const uint16_t ts_small_parse_table[] = { STATE(7), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1585] = 24, + [1773] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3518,16 +3673,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(216), 1, + STATE(207), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3535,32 +3692,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1677] = 24, + [1869] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3586,16 +3744,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(195), 1, + STATE(209), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3603,32 +3763,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1769] = 24, + [1965] = 8, + STATE(48), 1, + sym_expression, + STATE(55), 1, + sym_if, + STATE(7), 2, + sym_statement, + aux_sym_item_repeat1, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + ACTIONS(179), 7, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + ACTIONS(183), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [2027] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3654,16 +3869,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(231), 1, + STATE(210), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3671,48 +3888,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(17), 2, + STATE(14), 2, sym_statement, aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [1861] = 24, - ACTIONS(3), 1, - sym_identifier, + [2123] = 24, ACTIONS(5), 1, aux_sym_comment_token1, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, ACTIONS(23), 1, anon_sym_if, ACTIONS(25), 1, @@ -3722,179 +3926,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, - ACTIONS(33), 1, - anon_sym_insert, - ACTIONS(35), 1, + anon_sym_filter, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, - sym_expression, - STATE(55), 1, - sym_if, - STATE(203), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [1953] = 23, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_transform, - ACTIONS(35), 1, - anon_sym_async, - ACTIONS(39), 1, - anon_sym_LPAREN, ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(177), 1, - sym_identifier, - ACTIONS(179), 1, - anon_sym_select, - ACTIONS(181), 1, - anon_sym_insert, - STATE(55), 1, - sym_if, - STATE(134), 1, - sym_expression, - STATE(230), 1, - sym_statement, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(101), 9, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_transform, - sym_select, - sym_insert, - sym_async, - [2041] = 23, - ACTIONS(5), 1, - aux_sym_comment_token1, - ACTIONS(23), 1, - anon_sym_if, - ACTIONS(25), 1, - anon_sym_while, - ACTIONS(27), 1, - anon_sym_for, - ACTIONS(29), 1, - anon_sym_transform, - ACTIONS(35), 1, - anon_sym_async, - ACTIONS(39), 1, anon_sym_LPAREN, - ACTIONS(41), 1, + ACTIONS(43), 1, sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, anon_sym_table, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_identifier, - ACTIONS(179), 1, + ACTIONS(187), 1, anon_sym_select, - ACTIONS(181), 1, + ACTIONS(189), 1, anon_sym_insert, STATE(55), 1, sym_if, - STATE(134), 1, + STATE(141), 1, sym_expression, STATE(211), 1, sym_statement, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, + STATE(120), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [2129] = 23, + [2215] = 24, ACTIONS(5), 1, aux_sym_comment_token1, ACTIONS(23), 1, @@ -3905,61 +3993,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(29), 1, anon_sym_transform, - ACTIONS(35), 1, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(37), 1, anon_sym_async, - ACTIONS(39), 1, - anon_sym_LPAREN, ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, anon_sym_table, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_identifier, - ACTIONS(179), 1, + ACTIONS(187), 1, anon_sym_select, - ACTIONS(181), 1, + ACTIONS(189), 1, anon_sym_insert, STATE(55), 1, sym_if, - STATE(134), 1, + STATE(141), 1, sym_expression, - STATE(197), 1, + STATE(203), 1, sym_statement, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, + STATE(120), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [2217] = 23, + [2307] = 24, + ACTIONS(5), 1, + aux_sym_comment_token1, + ACTIONS(23), 1, + anon_sym_if, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(37), 1, + anon_sym_async, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(185), 1, + sym_identifier, + ACTIONS(187), 1, + anon_sym_select, + ACTIONS(189), 1, + anon_sym_insert, + STATE(55), 1, + sym_if, + STATE(141), 1, + sym_expression, + STATE(206), 1, + sym_statement, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, + sym_comment, + sym_assignment, + sym_if_else, + sym_while, + sym_for, + sym_transform, + sym_filter, + sym_select, + sym_insert, + sym_async, + [2399] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3985,16 +4144,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_transform, ACTIONS(31), 1, - anon_sym_select, + anon_sym_filter, ACTIONS(33), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(35), 1, + anon_sym_insert, + ACTIONS(37), 1, anon_sym_async, - STATE(51), 1, + STATE(48), 1, sym_expression, STATE(55), 1, sym_if, - STATE(98), 1, + STATE(83), 1, sym_statement, ACTIONS(11), 2, sym_float, @@ -4002,29 +4163,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [2305] = 23, + [2491] = 24, ACTIONS(5), 1, aux_sym_comment_token1, ACTIONS(23), 1, @@ -4035,66 +4197,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(29), 1, anon_sym_transform, - ACTIONS(35), 1, + ACTIONS(31), 1, + anon_sym_filter, + ACTIONS(37), 1, anon_sym_async, - ACTIONS(39), 1, - anon_sym_LPAREN, ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, anon_sym_table, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_identifier, - ACTIONS(179), 1, + ACTIONS(187), 1, anon_sym_select, - ACTIONS(181), 1, + ACTIONS(189), 1, anon_sym_insert, STATE(55), 1, sym_if, - STATE(98), 1, + STATE(83), 1, sym_statement, - STATE(134), 1, + STATE(141), 1, sym_expression, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, + STATE(120), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(101), 9, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(88), 10, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, sym_transform, + sym_filter, sym_select, sym_insert, sym_async, - [2393] = 4, - STATE(91), 1, + [2583] = 4, + STATE(85), 1, sym_math_operator, - STATE(95), 1, + STATE(86), 1, sym_logic_operator, - ACTIONS(185), 17, + ACTIONS(193), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4109,10 +4274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - ACTIONS(183), 20, + ACTIONS(191), 20, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4133,29 +4299,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2441] = 8, - ACTIONS(195), 1, + [2632] = 8, + ACTIONS(203), 1, anon_sym_DASH, - STATE(91), 1, + STATE(85), 1, sym_math_operator, - STATE(95), 1, + STATE(86), 1, sym_logic_operator, - ACTIONS(191), 3, + ACTIONS(199), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(193), 4, + ACTIONS(201), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 5, + ACTIONS(205), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(187), 11, + ACTIONS(195), 11, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4167,7 +4333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(189), 13, + ACTIONS(197), 14, sym_identifier, sym_integer, anon_sym_true, @@ -4178,11 +4344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [2497] = 2, - ACTIONS(201), 18, + [2689] = 2, + ACTIONS(209), 19, sym_identifier, sym_integer, anon_sym_true, @@ -4197,11 +4364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_into, anon_sym_async, - ACTIONS(199), 20, + ACTIONS(207), 20, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4222,15 +4390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2540] = 5, - ACTIONS(207), 1, + [2733] = 5, + ACTIONS(215), 1, anon_sym_EQ, - STATE(27), 1, + STATE(28), 1, sym_assignment_operator, - ACTIONS(209), 2, + ACTIONS(217), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(203), 16, + ACTIONS(211), 16, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4247,7 +4415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(205), 18, + ACTIONS(213), 19, sym_identifier, sym_integer, anon_sym_true, @@ -4263,11 +4431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [2589] = 2, - ACTIONS(213), 18, + [2783] = 2, + ACTIONS(221), 19, sym_identifier, sym_integer, anon_sym_true, @@ -4282,104 +4451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_into, anon_sym_async, - ACTIONS(211), 20, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [2632] = 16, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(217), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(72), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(205), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(203), 9, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [2702] = 2, - ACTIONS(221), 17, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_LT, - anon_sym_GT, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, ACTIONS(219), 20, ts_builtin_sym_end, aux_sym_comment_token1, @@ -4401,8 +4477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2744] = 2, - ACTIONS(225), 17, + [2827] = 2, + ACTIONS(225), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4417,6 +4493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4441,8 +4518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2786] = 2, - ACTIONS(229), 17, + [2870] = 2, + ACTIONS(229), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4457,6 +4534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4481,8 +4559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2828] = 2, - ACTIONS(233), 17, + [2913] = 2, + ACTIONS(233), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4497,6 +4575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4521,8 +4600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2870] = 2, - ACTIONS(237), 17, + [2956] = 2, + ACTIONS(237), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4537,6 +4616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4561,8 +4641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2912] = 2, - ACTIONS(241), 17, + [2999] = 2, + ACTIONS(241), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4577,6 +4657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4601,8 +4682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2954] = 2, - ACTIONS(245), 17, + [3042] = 2, + ACTIONS(245), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4617,6 +4698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4641,8 +4723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2996] = 2, - ACTIONS(249), 17, + [3085] = 2, + ACTIONS(249), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4657,6 +4739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4681,8 +4764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3038] = 2, - ACTIONS(253), 17, + [3128] = 2, + ACTIONS(253), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4697,6 +4780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4721,116 +4805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3080] = 16, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(255), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(74), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(205), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(203), 9, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [3150] = 16, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(257), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(61), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(205), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(203), 9, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [3220] = 2, - ACTIONS(261), 17, + [3171] = 2, + ACTIONS(257), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4845,6 +4821,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + ACTIONS(255), 20, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [3214] = 2, + ACTIONS(261), 18, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_LT, + anon_sym_GT, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4869,8 +4887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3262] = 2, - ACTIONS(265), 17, + [3257] = 2, + ACTIONS(265), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4885,6 +4903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4909,8 +4928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3304] = 2, - ACTIONS(269), 17, + [3300] = 2, + ACTIONS(269), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4925,6 +4944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4949,8 +4969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3346] = 2, - ACTIONS(273), 17, + [3343] = 2, + ACTIONS(273), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4965,6 +4985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4989,23 +5010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3388] = 8, - ACTIONS(195), 1, + [3386] = 8, + ACTIONS(203), 1, anon_sym_DASH, - STATE(91), 1, + STATE(85), 1, sym_math_operator, - STATE(95), 1, + STATE(86), 1, sym_logic_operator, - ACTIONS(191), 3, + ACTIONS(199), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(193), 4, + ACTIONS(201), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 5, + ACTIONS(205), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, @@ -5020,7 +5041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(277), 13, + ACTIONS(277), 14, sym_identifier, sym_integer, anon_sym_true, @@ -5031,32 +5052,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [3441] = 8, - ACTIONS(195), 1, + [3440] = 16, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(281), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(61), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(213), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - STATE(91), 1, + anon_sym_PIPE_PIPE, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + ACTIONS(211), 9, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [3510] = 16, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(283), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(71), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(213), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + ACTIONS(211), 9, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [3580] = 8, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(85), 1, sym_math_operator, - STATE(95), 1, + STATE(86), 1, sym_logic_operator, - ACTIONS(191), 3, + ACTIONS(199), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(193), 4, + ACTIONS(201), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 5, + ACTIONS(205), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(279), 8, + ACTIONS(285), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -5065,7 +5195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(281), 13, + ACTIONS(287), 14, sym_identifier, sym_integer, anon_sym_true, @@ -5076,25 +5206,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [3494] = 4, - ACTIONS(205), 4, + [3634] = 16, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(289), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(76), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(213), 4, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_PIPE_PIPE, - ACTIONS(283), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(203), 9, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + ACTIONS(211), 9, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -5104,7 +5264,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(285), 13, + [3704] = 4, + ACTIONS(213), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + ACTIONS(291), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(211), 9, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(293), 14, sym_identifier, sym_integer, anon_sym_true, @@ -5115,41 +5300,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [3537] = 9, - ACTIONS(195), 1, + [3748] = 9, + ACTIONS(203), 1, anon_sym_DASH, - ACTIONS(291), 1, + ACTIONS(299), 1, anon_sym_COMMA, - STATE(91), 1, + STATE(85), 1, sym_math_operator, - STATE(95), 1, + STATE(86), 1, sym_logic_operator, - ACTIONS(191), 3, + ACTIONS(199), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(193), 4, + ACTIONS(201), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 5, + ACTIONS(205), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(287), 6, + ACTIONS(295), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - ACTIONS(289), 7, + ACTIONS(297), 7, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, @@ -5157,53 +5343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, - [3585] = 8, - ACTIONS(195), 1, - anon_sym_DASH, - STATE(91), 1, - sym_math_operator, - STATE(95), 1, - sym_logic_operator, - ACTIONS(191), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(193), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(293), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - ACTIONS(295), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3629] = 6, - ACTIONS(301), 1, + [3796] = 6, + ACTIONS(305), 1, anon_sym_elseif, - ACTIONS(303), 1, + ACTIONS(307), 1, anon_sym_else, - STATE(99), 1, + STATE(89), 1, sym_else, STATE(56), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(297), 8, + ACTIONS(301), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -5212,7 +5362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(299), 13, + ACTIONS(303), 14, sym_identifier, sym_integer, anon_sym_true, @@ -5223,46 +5373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [3668] = 6, - ACTIONS(301), 1, + [3836] = 6, + ACTIONS(305), 1, anon_sym_elseif, - ACTIONS(303), 1, + ACTIONS(307), 1, anon_sym_else, - STATE(106), 1, + STATE(103), 1, sym_else, - STATE(57), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(305), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(307), 13, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [3707] = 4, - ACTIONS(313), 1, - anon_sym_elseif, - STATE(57), 2, + STATE(58), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(309), 8, @@ -5275,6 +5397,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, ACTIONS(311), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [3876] = 8, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(85), 1, + sym_math_operator, + STATE(86), 1, + sym_logic_operator, + ACTIONS(199), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(201), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(313), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + ACTIONS(315), 6, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [3920] = 4, + ACTIONS(321), 1, + anon_sym_elseif, + STATE(58), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(317), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(319), 15, sym_identifier, sym_integer, anon_sym_true, @@ -5286,401 +5474,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [3741] = 14, - ACTIONS(316), 1, - sym_identifier, - ACTIONS(319), 1, - anon_sym_LPAREN, + [3955] = 14, ACTIONS(324), 1, - sym_integer, - ACTIONS(333), 1, - anon_sym_LBRACK, - ACTIONS(336), 1, - anon_sym_function, - ACTIONS(339), 1, - anon_sym_LBRACE, - ACTIONS(342), 1, - anon_sym_table, - STATE(53), 1, - sym_expression, - STATE(58), 1, - aux_sym_list_repeat1, - ACTIONS(322), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(327), 2, - sym_float, - sym_string, - ACTIONS(330), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3795] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, sym_identifier, - ACTIONS(345), 1, - anon_sym_RBRACE, - STATE(54), 1, - sym_expression, - STATE(68), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3848] = 14, - ACTIONS(7), 1, + ACTIONS(327), 1, anon_sym_LPAREN, - ACTIONS(9), 1, + ACTIONS(332), 1, sym_integer, - ACTIONS(15), 1, + ACTIONS(341), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(344), 1, anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, ACTIONS(347), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, + ACTIONS(350), 1, + anon_sym_table, STATE(54), 1, sym_expression, - STATE(71), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3901] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(349), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(58), 1, + STATE(59), 1, aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3954] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(351), 1, + ACTIONS(330), 2, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(53), 1, - sym_expression, - STATE(58), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, + ACTIONS(335), 2, sym_float, sym_string, - ACTIONS(13), 2, + ACTIONS(338), 2, anon_sym_true, anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4007] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(257), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(61), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, + STATE(43), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4060] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, + [4009] = 14, ACTIONS(353), 1, - anon_sym_RBRACK, - STATE(53), 1, - sym_expression, - STATE(62), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4113] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, sym_identifier, - ACTIONS(355), 1, - anon_sym_RBRACE, - STATE(54), 1, - sym_expression, - STATE(67), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4166] = 14, - ACTIONS(7), 1, + ACTIONS(356), 1, anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(357), 1, - anon_sym_RBRACK, - STATE(53), 1, - sym_expression, - STATE(73), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4219] = 14, ACTIONS(359), 1, - sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, sym_integer, - ACTIONS(374), 1, + ACTIONS(368), 1, anon_sym_LBRACK, - ACTIONS(377), 1, + ACTIONS(371), 1, anon_sym_function, - ACTIONS(380), 1, + ACTIONS(374), 1, anon_sym_LBRACE, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_RBRACE, - ACTIONS(385), 1, + ACTIONS(379), 1, anon_sym_table, - STATE(54), 1, + STATE(57), 1, sym_expression, - STATE(67), 1, + STATE(60), 1, aux_sym_table_repeat1, - ACTIONS(368), 2, + ACTIONS(362), 2, sym_float, sym_string, - ACTIONS(371), 2, + ACTIONS(365), 2, anon_sym_true, anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4272] = 14, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4062] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5693,13 +5570,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(215), 1, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(382), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(59), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4115] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(289), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(76), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4168] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(384), 1, + anon_sym_RBRACK, + STATE(54), 1, + sym_expression, + STATE(59), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4221] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_RBRACK, + STATE(54), 1, + sym_expression, + STATE(59), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4274] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, sym_identifier, ACTIONS(388), 1, anon_sym_RBRACE, - STATE(54), 1, + STATE(57), 1, sym_expression, - STATE(67), 1, + STATE(60), 1, aux_sym_table_repeat1, ACTIONS(11), 2, sym_float, @@ -5707,19 +5740,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4325] = 14, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4327] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5732,324 +5765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(215), 1, + ACTIONS(279), 1, sym_identifier, ACTIONS(390), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, STATE(54), 1, sym_expression, - STATE(65), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4378] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(217), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(72), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4431] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(392), 1, - anon_sym_RBRACE, - STATE(54), 1, - sym_expression, - STATE(67), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4484] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(394), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(58), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4537] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(396), 1, - anon_sym_RBRACK, - STATE(53), 1, - sym_expression, - STATE(58), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4590] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(398), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(58), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4643] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(400), 1, - anon_sym_RBRACK, - STATE(53), 1, - sym_expression, - STATE(58), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4696] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(255), 1, - anon_sym_RPAREN, - STATE(53), 1, - sym_expression, - STATE(74), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4749] = 14, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - ACTIONS(402), 1, - anon_sym_RBRACK, - STATE(53), 1, - sym_expression, STATE(75), 1, aux_sym_list_repeat1, ACTIONS(11), 2, @@ -6058,109 +5779,544 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4802] = 2, - ACTIONS(404), 9, - ts_builtin_sym_end, - aux_sym_comment_token1, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4380] = 14, + ACTIONS(7), 1, anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_elseif, - ACTIONS(406), 14, - sym_identifier, + ACTIONS(9), 1, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [4830] = 2, - ACTIONS(408), 9, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, - sym_float, - sym_string, + ACTIONS(15), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_elseif, - ACTIONS(410), 14, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, + ACTIONS(17), 1, anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [4858] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(53), 1, + ACTIONS(21), 1, anon_sym_table, - ACTIONS(412), 1, + ACTIONS(279), 1, sym_identifier, - STATE(128), 1, + ACTIONS(283), 1, + anon_sym_RPAREN, + STATE(54), 1, sym_expression, - ACTIONS(43), 2, + STATE(71), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4905] = 3, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4433] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(392), 1, + anon_sym_RBRACE, + STATE(57), 1, + sym_expression, + STATE(60), 1, + aux_sym_table_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4486] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(394), 1, + anon_sym_RBRACK, + STATE(54), 1, + sym_expression, + STATE(63), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4539] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(396), 1, + anon_sym_RBRACE, + STATE(57), 1, + sym_expression, + STATE(60), 1, + aux_sym_table_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4592] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(59), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4645] = 2, + ACTIONS(400), 9, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(402), 15, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [4674] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(404), 1, + anon_sym_RBRACE, + STATE(57), 1, + sym_expression, + STATE(70), 1, + aux_sym_table_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4727] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(406), 1, + anon_sym_RBRACE, + STATE(57), 1, + sym_expression, + STATE(68), 1, + aux_sym_table_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4780] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_RBRACK, + STATE(54), 1, + sym_expression, + STATE(59), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4833] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(410), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(59), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4886] = 2, + ACTIONS(412), 9, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(414), 15, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [4915] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(416), 1, + anon_sym_RBRACE, + STATE(57), 1, + sym_expression, + STATE(65), 1, + aux_sym_table_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [4968] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + ACTIONS(281), 1, + anon_sym_RPAREN, + STATE(54), 1, + sym_expression, + STATE(61), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5021] = 14, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, ACTIONS(418), 1, + anon_sym_RBRACK, + STATE(54), 1, + sym_expression, + STATE(64), 1, + aux_sym_list_repeat1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5074] = 3, + ACTIONS(424), 1, anon_sym_where, - ACTIONS(414), 8, + ACTIONS(420), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -6169,7 +6325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(416), 13, + ACTIONS(422), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6180,256 +6336,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [4934] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(120), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4981] = 12, - ACTIONS(420), 1, - sym_identifier, - ACTIONS(422), 1, - anon_sym_LPAREN, - ACTIONS(424), 1, - sym_integer, + [5104] = 3, ACTIONS(430), 1, - anon_sym_LBRACK, - ACTIONS(432), 1, - anon_sym_function, - ACTIONS(434), 1, - anon_sym_LBRACE, - ACTIONS(436), 1, - anon_sym_table, - STATE(115), 1, - sym_expression, - ACTIONS(426), 2, + anon_sym_where, + ACTIONS(426), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, sym_float, sym_string, - ACTIONS(428), 2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(428), 14, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(139), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(152), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5028] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, anon_sym_table, - ACTIONS(412), 1, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [5134] = 2, + ACTIONS(432), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(434), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [5161] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, sym_identifier, STATE(121), 1, sym_expression, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(45), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, + STATE(120), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5075] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(116), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5122] = 12, - ACTIONS(420), 1, - sym_identifier, - ACTIONS(422), 1, - anon_sym_LPAREN, - ACTIONS(424), 1, - sym_integer, - ACTIONS(430), 1, - anon_sym_LBRACK, - ACTIONS(432), 1, - anon_sym_function, - ACTIONS(434), 1, - anon_sym_LBRACE, - ACTIONS(436), 1, - anon_sym_table, - STATE(113), 1, - sym_expression, - ACTIONS(426), 2, - sym_float, - sym_string, - ACTIONS(428), 2, - anon_sym_true, - anon_sym_false, STATE(139), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(152), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5169] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(123), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5216] = 13, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(52), 1, - sym_logic, - STATE(138), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_function_call, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [5265] = 12, + [5208] = 12, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -6442,218 +6440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - STATE(50), 1, - sym_expression, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5312] = 13, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(145), 1, - sym_expression, - STATE(156), 1, - sym_logic, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(135), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_function_call, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [5361] = 12, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, - sym_identifier, - STATE(29), 1, - sym_expression, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5408] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(119), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5455] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(112), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5502] = 12, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(41), 1, - sym_integer, - ACTIONS(47), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_function, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_table, - ACTIONS(412), 1, - sym_identifier, - STATE(111), 1, - sym_expression, - ACTIONS(43), 2, - sym_float, - sym_string, - ACTIONS(45), 2, - anon_sym_true, - anon_sym_false, - STATE(132), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(135), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5549] = 12, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - sym_integer, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(215), 1, + ACTIONS(279), 1, sym_identifier, STATE(30), 1, sym_expression, @@ -6663,21 +6450,139 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(36), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(41), 5, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5596] = 3, - ACTIONS(442), 1, - anon_sym_where, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5255] = 12, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + STATE(31), 1, + sym_expression, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5302] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(129), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5349] = 2, + ACTIONS(275), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(277), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [5376] = 2, + ACTIONS(309), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(311), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [5403] = 2, ACTIONS(438), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6687,7 +6592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(440), 13, + ACTIONS(440), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6698,189 +6603,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5625] = 12, - ACTIONS(420), 1, - sym_identifier, - ACTIONS(422), 1, + [5430] = 13, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(424), 1, + ACTIONS(43), 1, sym_integer, - ACTIONS(430), 1, + ACTIONS(49), 1, anon_sym_LBRACK, - ACTIONS(432), 1, + ACTIONS(51), 1, anon_sym_function, - ACTIONS(434), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(436), 1, + ACTIONS(55), 1, anon_sym_table, - STATE(114), 1, + ACTIONS(436), 1, + sym_identifier, + STATE(53), 1, + sym_logic, + STATE(145), 1, sym_expression, - ACTIONS(426), 2, + ACTIONS(45), 2, sym_float, sym_string, - ACTIONS(428), 2, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, + STATE(120), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_function_call, STATE(139), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(152), 5, + [5479] = 12, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(9), 1, + sym_integer, + ACTIONS(15), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_function, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_table, + ACTIONS(279), 1, + sym_identifier, + STATE(51), 1, + sym_expression, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5672] = 2, - ACTIONS(444), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, + STATE(43), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5526] = 12, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(444), 1, anon_sym_LPAREN, + ACTIONS(446), 1, + sym_integer, + ACTIONS(452), 1, + anon_sym_LBRACK, + ACTIONS(454), 1, + anon_sym_function, + ACTIONS(456), 1, + anon_sym_LBRACE, + ACTIONS(458), 1, + anon_sym_table, + STATE(116), 1, + sym_expression, + ACTIONS(448), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(446), 13, - sym_identifier, - sym_integer, + ACTIONS(450), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5698] = 2, - ACTIONS(305), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, + STATE(156), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(158), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5573] = 12, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(444), 1, anon_sym_LPAREN, + ACTIONS(446), 1, + sym_integer, + ACTIONS(452), 1, + anon_sym_LBRACK, + ACTIONS(454), 1, + anon_sym_function, + ACTIONS(456), 1, + anon_sym_LBRACE, + ACTIONS(458), 1, + anon_sym_table, + STATE(117), 1, + sym_expression, + ACTIONS(448), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(307), 13, - sym_identifier, - sym_integer, + ACTIONS(450), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5724] = 2, - ACTIONS(448), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, + STATE(156), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(158), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5620] = 12, + ACTIONS(442), 1, + sym_identifier, + ACTIONS(444), 1, anon_sym_LPAREN, + ACTIONS(446), 1, + sym_integer, + ACTIONS(452), 1, + anon_sym_LBRACK, + ACTIONS(454), 1, + anon_sym_function, + ACTIONS(456), 1, + anon_sym_LBRACE, + ACTIONS(458), 1, + anon_sym_table, + STATE(118), 1, + sym_expression, + ACTIONS(448), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(450), 13, - sym_identifier, - sym_integer, + ACTIONS(450), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5750] = 2, - ACTIONS(279), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, + STATE(156), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(158), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5667] = 12, + ACTIONS(41), 1, anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(136), 1, + sym_expression, + ACTIONS(45), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(281), 13, - sym_identifier, - sym_integer, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5776] = 2, - ACTIONS(452), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5714] = 12, + ACTIONS(41), 1, anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(119), 1, + sym_expression, + ACTIONS(45), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(454), 13, - sym_identifier, - sym_integer, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5802] = 2, - ACTIONS(456), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(458), 13, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5828] = 2, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5761] = 2, ACTIONS(460), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6890,7 +6863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(462), 13, + ACTIONS(462), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6901,10 +6874,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5854] = 2, + [5788] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(124), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5835] = 2, ACTIONS(464), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6914,7 +6923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(466), 13, + ACTIONS(466), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6925,10 +6934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5880] = 2, + [5862] = 2, ACTIONS(468), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6938,7 +6948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(470), 13, + ACTIONS(470), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6949,10 +6959,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5906] = 2, + [5889] = 13, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(144), 1, + sym_expression, + STATE(159), 1, + sym_logic, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [5938] = 2, ACTIONS(472), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6962,7 +7009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(474), 13, + ACTIONS(474), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6973,10 +7020,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5932] = 2, + [5965] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(134), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [6012] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(133), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [6059] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(113), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [6106] = 12, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + sym_integer, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_function, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_table, + ACTIONS(436), 1, + sym_identifier, + STATE(114), 1, + sym_expression, + ACTIONS(45), 2, + sym_float, + sym_string, + ACTIONS(47), 2, + anon_sym_true, + anon_sym_false, + STATE(120), 5, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(139), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [6153] = 2, ACTIONS(476), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6986,7 +7174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(478), 13, + ACTIONS(478), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6997,18 +7185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5958] = 2, - ACTIONS(482), 6, + [6180] = 2, + ACTIONS(480), 8, + ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(480), 13, + anon_sym_RBRACE, + ACTIONS(482), 14, sym_identifier, sym_integer, anon_sym_true, @@ -7019,23 +7210,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_for, anon_sym_transform, + anon_sym_filter, anon_sym_select, anon_sym_insert, anon_sym_async, - [5982] = 5, - ACTIONS(207), 1, + [6207] = 2, + ACTIONS(484), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(486), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [6234] = 2, + ACTIONS(488), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(490), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [6261] = 2, + ACTIONS(494), 6, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(492), 14, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [6286] = 6, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(195), 3, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6317] = 4, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(191), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6344] = 5, + ACTIONS(215), 1, anon_sym_EQ, - STATE(28), 1, + STATE(29), 1, sym_assignment_operator, - ACTIONS(209), 2, + ACTIONS(217), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(205), 4, + ACTIONS(213), 4, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(203), 10, + ACTIONS(211), 10, anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, @@ -7046,404 +7359,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6011] = 4, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(183), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6038] = 6, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(187), 3, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6069] = 4, - STATE(83), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(185), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(183), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6095] = 7, - ACTIONS(484), 1, - sym_identifier, - ACTIONS(486), 1, - anon_sym_RBRACE, - STATE(83), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(191), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6127] = 7, - ACTIONS(187), 1, - anon_sym_RBRACE, - ACTIONS(189), 1, - sym_identifier, - STATE(83), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(191), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6159] = 6, - ACTIONS(488), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6188] = 2, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(227), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6209] = 2, - ACTIONS(253), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(251), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6230] = 6, - ACTIONS(490), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6259] = 6, - ACTIONS(492), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6288] = 6, - ACTIONS(494), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6317] = 2, - ACTIONS(249), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(247), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6338] = 6, - ACTIONS(275), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, - sym_math_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6367] = 2, - ACTIONS(233), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(231), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6388] = 2, - ACTIONS(221), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(219), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6409] = 2, - ACTIONS(265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(263), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6430] = 2, - ACTIONS(261), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(259), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6451] = 6, + [6373] = 7, ACTIONS(496), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_logic_operator, + sym_identifier, + ACTIONS(498), 1, + anon_sym_RBRACE, STATE(94), 1, + sym_logic_operator, + STATE(95), 1, sym_math_operator, - ACTIONS(191), 2, + ACTIONS(199), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(193), 5, + anon_sym_PIPE_PIPE, + ACTIONS(201), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 6, + ACTIONS(205), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6480] = 2, - ACTIONS(273), 2, + [6405] = 7, + ACTIONS(195), 1, + anon_sym_RBRACE, + ACTIONS(197), 1, + sym_identifier, + STATE(94), 1, + sym_logic_operator, + STATE(95), 1, + sym_math_operator, + ACTIONS(199), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(271), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6437] = 4, + STATE(94), 1, + sym_logic_operator, + STATE(95), 1, + sym_math_operator, + ACTIONS(193), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(191), 11, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7453,29 +7429,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6501] = 2, - ACTIONS(201), 2, + [6463] = 6, + ACTIONS(500), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(199), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(201), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(205), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6522] = 2, + [6492] = 2, ACTIONS(241), 2, anon_sym_LT, anon_sym_GT, @@ -7494,11 +7473,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6543] = 2, - ACTIONS(225), 2, + [6513] = 6, + ACTIONS(502), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(223), 14, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6542] = 2, + ACTIONS(265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(263), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7513,7 +7515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6564] = 2, + [6563] = 2, ACTIONS(269), 2, anon_sym_LT, anon_sym_GT, @@ -7532,30 +7534,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6585] = 6, - ACTIONS(279), 1, + [6584] = 6, + ACTIONS(285), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(106), 1, sym_logic_operator, - STATE(94), 1, + STATE(107), 1, sym_math_operator, - ACTIONS(191), 2, + ACTIONS(199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(193), 5, + ACTIONS(201), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 6, + ACTIONS(205), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6614] = 2, + [6613] = 2, + ACTIONS(225), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(223), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6634] = 2, ACTIONS(245), 2, anon_sym_LT, anon_sym_GT, @@ -7574,7 +7595,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6635] = 2, + [6655] = 2, + ACTIONS(249), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(247), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6676] = 2, + ACTIONS(233), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6697] = 6, + ACTIONS(504), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6726] = 2, ACTIONS(237), 2, anon_sym_LT, anon_sym_GT, @@ -7593,11 +7675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6656] = 2, - ACTIONS(213), 2, + [6747] = 2, + ACTIONS(209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(211), 14, + ACTIONS(207), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7612,163 +7694,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6677] = 5, - STATE(94), 1, - sym_math_operator, - STATE(95), 1, + [6768] = 2, + ACTIONS(261), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(259), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6789] = 6, + ACTIONS(506), 1, + anon_sym_LBRACE, + STATE(106), 1, sym_logic_operator, - ACTIONS(191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(193), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(197), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6703] = 2, - ACTIONS(225), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(223), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6723] = 2, - ACTIONS(273), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(271), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6743] = 2, - ACTIONS(221), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(219), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6763] = 2, - ACTIONS(241), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(239), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6783] = 2, - ACTIONS(253), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(251), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6803] = 2, - ACTIONS(237), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(235), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6823] = 5, - STATE(93), 1, - sym_logic_operator, - STATE(94), 1, + STATE(107), 1, sym_math_operator, - ACTIONS(191), 2, + ACTIONS(199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(193), 5, + ACTIONS(201), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(197), 6, + ACTIONS(205), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6849] = 2, - ACTIONS(233), 4, + [6818] = 6, + ACTIONS(508), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6847] = 2, + ACTIONS(229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(227), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6868] = 6, + ACTIONS(510), 1, + anon_sym_LBRACE, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6897] = 2, + ACTIONS(273), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(271), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6918] = 2, + ACTIONS(221), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(219), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6939] = 2, + ACTIONS(257), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(255), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6960] = 2, + ACTIONS(253), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(251), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [6981] = 6, + ACTIONS(275), 1, + anon_sym_RBRACE, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7010] = 2, + ACTIONS(209), 4, sym_identifier, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(231), 11, + ACTIONS(207), 11, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7780,133 +7918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6869] = 2, - ACTIONS(201), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(199), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6889] = 2, - ACTIONS(265), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(263), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6909] = 2, - ACTIONS(261), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(259), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6929] = 2, - ACTIONS(229), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(227), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6949] = 2, - ACTIONS(213), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(211), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6969] = 2, - ACTIONS(245), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(243), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6989] = 2, - ACTIONS(269), 4, - sym_identifier, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(267), 11, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [7009] = 2, + [7030] = 2, ACTIONS(249), 4, sym_identifier, anon_sym_LT, @@ -7924,31 +7936,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7029] = 3, - ACTIONS(498), 1, - anon_sym_RPAREN, - ACTIONS(245), 2, + [7050] = 5, + STATE(106), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(243), 11, + ACTIONS(201), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(205), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7050] = 3, - ACTIONS(283), 1, + [7076] = 5, + STATE(86), 1, + sym_logic_operator, + STATE(107), 1, + sym_math_operator, + ACTIONS(199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(205), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7102] = 2, + ACTIONS(265), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(263), 11, anon_sym_RBRACE, - ACTIONS(205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(203), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -7957,16 +7994,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7071] = 3, - ACTIONS(500), 1, - anon_sym_RPAREN, - ACTIONS(245), 2, + [7122] = 2, + ACTIONS(269), 4, + sym_identifier, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(267), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7142] = 2, + ACTIONS(225), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(223), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7162] = 2, + ACTIONS(245), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, ACTIONS(243), 11, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -7975,16 +8048,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7092] = 3, - ACTIONS(502), 1, - anon_sym_RPAREN, - ACTIONS(245), 2, + [7182] = 2, + ACTIONS(233), 4, + sym_identifier, anon_sym_LT, anon_sym_GT, - ACTIONS(243), 11, + anon_sym_PIPE_PIPE, + ACTIONS(231), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7202] = 2, + ACTIONS(237), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(235), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7222] = 2, + ACTIONS(261), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(259), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7242] = 2, + ACTIONS(229), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(227), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7262] = 2, + ACTIONS(273), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(271), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7282] = 2, + ACTIONS(221), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(219), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7302] = 2, + ACTIONS(241), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(239), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7322] = 2, + ACTIONS(253), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(251), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7342] = 2, + ACTIONS(257), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(255), 11, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7362] = 3, + ACTIONS(291), 1, + anon_sym_RBRACE, + ACTIONS(213), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(211), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -7996,15 +8230,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7113] = 2, - ACTIONS(504), 6, + [7383] = 3, + ACTIONS(512), 1, + anon_sym_RPAREN, + ACTIONS(241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7404] = 3, + ACTIONS(514), 1, + anon_sym_RPAREN, + ACTIONS(241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7425] = 3, + ACTIONS(516), 1, + anon_sym_RPAREN, + ACTIONS(241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7446] = 2, + ACTIONS(518), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - ACTIONS(322), 7, + ACTIONS(330), 7, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, @@ -8012,936 +8300,961 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, - [7131] = 2, - ACTIONS(506), 6, + [7464] = 2, + ACTIONS(520), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - ACTIONS(508), 6, + ACTIONS(522), 6, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - [7148] = 2, - ACTIONS(512), 5, + [7481] = 2, + ACTIONS(526), 5, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(510), 6, + ACTIONS(524), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - [7164] = 2, - ACTIONS(516), 5, + [7497] = 2, + ACTIONS(530), 5, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(514), 6, + ACTIONS(528), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - [7180] = 3, + [7513] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(518), 1, + ACTIONS(532), 1, anon_sym_into, - STATE(164), 2, + STATE(168), 2, sym_list, aux_sym_insert_repeat1, - [7191] = 3, - ACTIONS(520), 1, + [7524] = 3, + ACTIONS(534), 1, anon_sym_LBRACK, - ACTIONS(523), 1, - anon_sym_into, - STATE(164), 2, - sym_list, - aux_sym_insert_repeat1, - [7202] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_into, - STATE(164), 2, - sym_list, - aux_sym_insert_repeat1, - [7213] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(163), 2, - sym_list, - aux_sym_insert_repeat1, - [7221] = 3, - ACTIONS(527), 1, - sym_identifier, - ACTIONS(529), 1, - anon_sym_GT, - STATE(178), 1, - aux_sym_function_repeat1, - [7231] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(165), 2, - sym_list, - aux_sym_insert_repeat1, - [7239] = 3, - ACTIONS(527), 1, - sym_identifier, - ACTIONS(531), 1, - anon_sym_GT, - STATE(167), 1, - aux_sym_function_repeat1, - [7249] = 3, - ACTIONS(527), 1, - sym_identifier, - ACTIONS(533), 1, - anon_sym_GT, - STATE(178), 1, - aux_sym_function_repeat1, - [7259] = 3, - ACTIONS(535), 1, - sym_identifier, ACTIONS(537), 1, - anon_sym_RBRACE, - STATE(181), 1, - aux_sym_map_repeat1, - [7269] = 3, - ACTIONS(527), 1, - sym_identifier, + anon_sym_into, + STATE(168), 2, + sym_list, + aux_sym_insert_repeat1, + [7535] = 3, + ACTIONS(15), 1, + anon_sym_LBRACK, ACTIONS(539), 1, - anon_sym_GT, - STATE(178), 1, - aux_sym_function_repeat1, - [7279] = 3, + anon_sym_into, + STATE(168), 2, + sym_list, + aux_sym_insert_repeat1, + [7546] = 3, ACTIONS(541), 1, sym_identifier, ACTIONS(544), 1, anon_sym_RBRACE, - STATE(173), 1, - aux_sym_map_repeat1, - [7289] = 3, - ACTIONS(527), 1, - sym_identifier, - ACTIONS(546), 1, - anon_sym_GT, STATE(170), 1, - aux_sym_function_repeat1, - [7299] = 3, - ACTIONS(527), 1, + aux_sym_map_repeat1, + [7556] = 3, + ACTIONS(546), 1, sym_identifier, ACTIONS(548), 1, anon_sym_GT, - STATE(178), 1, + STATE(173), 1, aux_sym_function_repeat1, - [7309] = 3, - ACTIONS(535), 1, + [7566] = 3, + ACTIONS(546), 1, sym_identifier, ACTIONS(550), 1, - anon_sym_RBRACE, - STATE(182), 1, - aux_sym_map_repeat1, - [7319] = 3, - ACTIONS(535), 1, - sym_identifier, + anon_sym_GT, + STATE(177), 1, + aux_sym_function_repeat1, + [7576] = 3, ACTIONS(552), 1, - anon_sym_RBRACE, - STATE(183), 1, - aux_sym_map_repeat1, - [7329] = 3, - ACTIONS(554), 1, + sym_identifier, + ACTIONS(555), 1, + anon_sym_GT, + STATE(173), 1, + aux_sym_function_repeat1, + [7586] = 3, + ACTIONS(546), 1, sym_identifier, ACTIONS(557), 1, anon_sym_GT, - STATE(178), 1, + STATE(173), 1, aux_sym_function_repeat1, - [7339] = 3, - ACTIONS(527), 1, - sym_identifier, + [7596] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(169), 2, + sym_list, + aux_sym_insert_repeat1, + [7604] = 3, ACTIONS(559), 1, - anon_sym_GT, - STATE(175), 1, - aux_sym_function_repeat1, - [7349] = 3, - ACTIONS(527), 1, sym_identifier, ACTIONS(561), 1, - anon_sym_GT, - STATE(178), 1, - aux_sym_function_repeat1, - [7359] = 3, - ACTIONS(535), 1, + anon_sym_RBRACE, + STATE(170), 1, + aux_sym_map_repeat1, + [7614] = 3, + ACTIONS(546), 1, sym_identifier, ACTIONS(563), 1, - anon_sym_RBRACE, + anon_sym_GT, STATE(173), 1, - aux_sym_map_repeat1, - [7369] = 3, - ACTIONS(535), 1, + aux_sym_function_repeat1, + [7624] = 3, + ACTIONS(546), 1, sym_identifier, ACTIONS(565), 1, - anon_sym_RBRACE, - STATE(173), 1, - aux_sym_map_repeat1, - [7379] = 3, - ACTIONS(535), 1, + anon_sym_GT, + STATE(180), 1, + aux_sym_function_repeat1, + [7634] = 3, + ACTIONS(559), 1, sym_identifier, ACTIONS(567), 1, anon_sym_RBRACE, - STATE(173), 1, + STATE(170), 1, aux_sym_map_repeat1, - [7389] = 2, - ACTIONS(571), 1, - anon_sym_COMMA, - ACTIONS(569), 2, + [7644] = 3, + ACTIONS(546), 1, sym_identifier, + ACTIONS(569), 1, anon_sym_GT, - [7397] = 3, - ACTIONS(527), 1, - sym_identifier, + STATE(173), 1, + aux_sym_function_repeat1, + [7654] = 2, ACTIONS(573), 1, + anon_sym_COMMA, + ACTIONS(571), 2, + sym_identifier, anon_sym_GT, - STATE(178), 1, - aux_sym_function_repeat1, - [7407] = 2, - ACTIONS(414), 1, - anon_sym_RBRACE, + [7662] = 3, + ACTIONS(559), 1, + sym_identifier, ACTIONS(575), 1, - anon_sym_where, - [7414] = 2, + anon_sym_RBRACE, + STATE(188), 1, + aux_sym_map_repeat1, + [7672] = 3, + ACTIONS(546), 1, + sym_identifier, ACTIONS(577), 1, - anon_sym_LT, + anon_sym_GT, + STATE(173), 1, + aux_sym_function_repeat1, + [7682] = 3, + ACTIONS(546), 1, + sym_identifier, ACTIONS(579), 1, - anon_sym_LBRACE, - [7421] = 2, + anon_sym_GT, + STATE(173), 1, + aux_sym_function_repeat1, + [7692] = 3, + ACTIONS(559), 1, + sym_identifier, ACTIONS(581), 1, - anon_sym_LT, + anon_sym_RBRACE, + STATE(179), 1, + aux_sym_map_repeat1, + [7702] = 3, + ACTIONS(546), 1, + sym_identifier, ACTIONS(583), 1, - anon_sym_LBRACE, - [7428] = 2, + anon_sym_GT, + STATE(174), 1, + aux_sym_function_repeat1, + [7712] = 3, + ACTIONS(559), 1, + sym_identifier, ACTIONS(585), 1, - anon_sym_LT, + anon_sym_RBRACE, + STATE(176), 1, + aux_sym_map_repeat1, + [7722] = 3, + ACTIONS(559), 1, + sym_identifier, ACTIONS(587), 1, - anon_sym_LBRACE, - [7435] = 2, - ACTIONS(527), 1, - sym_identifier, - STATE(185), 1, - aux_sym_function_repeat1, - [7442] = 2, - ACTIONS(527), 1, - sym_identifier, - STATE(172), 1, - aux_sym_function_repeat1, - [7449] = 2, - ACTIONS(438), 1, + anon_sym_RBRACE, + STATE(170), 1, + aux_sym_map_repeat1, + [7732] = 2, + ACTIONS(15), 1, + anon_sym_LBRACK, + STATE(167), 2, + sym_list, + aux_sym_insert_repeat1, + [7740] = 2, + ACTIONS(426), 1, anon_sym_RBRACE, ACTIONS(589), 1, anon_sym_where, - [7456] = 2, - ACTIONS(527), 1, + [7747] = 2, + ACTIONS(420), 1, + anon_sym_RBRACE, + ACTIONS(591), 1, + anon_sym_where, + [7754] = 2, + ACTIONS(546), 1, sym_identifier, - STATE(180), 1, + STATE(183), 1, aux_sym_function_repeat1, - [7463] = 1, - ACTIONS(557), 2, + [7761] = 2, + ACTIONS(546), 1, + sym_identifier, + STATE(171), 1, + aux_sym_function_repeat1, + [7768] = 2, + ACTIONS(546), 1, + sym_identifier, + STATE(184), 1, + aux_sym_function_repeat1, + [7775] = 2, + ACTIONS(593), 1, + anon_sym_LT, + ACTIONS(595), 1, + anon_sym_LBRACE, + [7782] = 2, + ACTIONS(597), 1, + anon_sym_LT, + ACTIONS(599), 1, + anon_sym_LBRACE, + [7789] = 2, + ACTIONS(601), 1, + anon_sym_LT, + ACTIONS(603), 1, + anon_sym_LBRACE, + [7796] = 1, + ACTIONS(555), 2, sym_identifier, anon_sym_GT, - [7468] = 1, - ACTIONS(591), 1, - anon_sym_RBRACE, - [7472] = 1, - ACTIONS(593), 1, - anon_sym_LBRACE, - [7476] = 1, - ACTIONS(595), 1, - anon_sym_RBRACE, - [7480] = 1, - ACTIONS(597), 1, - anon_sym_from, - [7484] = 1, - ACTIONS(599), 1, - anon_sym_in, - [7488] = 1, - ACTIONS(601), 1, - anon_sym_RBRACE, - [7492] = 1, - ACTIONS(603), 1, - anon_sym_EQ, - [7496] = 1, + [7801] = 1, ACTIONS(605), 1, - anon_sym_in, - [7500] = 1, + sym_identifier, + [7805] = 1, ACTIONS(607), 1, - anon_sym_RBRACE, - [7504] = 1, - ACTIONS(609), 1, anon_sym_LBRACE, - [7508] = 1, + [7809] = 1, + ACTIONS(609), 1, + sym_identifier, + [7813] = 1, ACTIONS(611), 1, - sym_identifier, - [7512] = 1, + anon_sym_RBRACE, + [7817] = 1, ACTIONS(613), 1, - sym_identifier, - [7516] = 1, + anon_sym_RBRACE, + [7821] = 1, ACTIONS(615), 1, sym_identifier, - [7520] = 1, + [7825] = 1, ACTIONS(617), 1, anon_sym_RBRACE, - [7524] = 1, + [7829] = 1, ACTIONS(619), 1, - anon_sym_LBRACE, - [7528] = 1, + anon_sym_RBRACE, + [7833] = 1, ACTIONS(621), 1, - sym_identifier, - [7532] = 1, + anon_sym_RBRACE, + [7837] = 1, ACTIONS(623), 1, anon_sym_RBRACE, - [7536] = 1, + [7841] = 1, ACTIONS(625), 1, - anon_sym_LT, - [7540] = 1, + anon_sym_RBRACE, + [7845] = 1, ACTIONS(627), 1, anon_sym_RBRACE, - [7544] = 1, + [7849] = 1, ACTIONS(629), 1, anon_sym_RBRACE, - [7548] = 1, + [7853] = 1, ACTIONS(631), 1, anon_sym_LBRACE, - [7552] = 1, + [7857] = 1, ACTIONS(633), 1, - anon_sym_RBRACE, - [7556] = 1, + anon_sym_LBRACE, + [7861] = 1, ACTIONS(635), 1, - anon_sym_RBRACE, - [7560] = 1, + sym_identifier, + [7865] = 1, ACTIONS(637), 1, - anon_sym_from, - [7564] = 1, + anon_sym_LT, + [7869] = 1, ACTIONS(639), 1, anon_sym_LBRACE, - [7568] = 1, + [7873] = 1, ACTIONS(641), 1, anon_sym_RBRACE, - [7572] = 1, + [7877] = 1, ACTIONS(643), 1, - sym_identifier, - [7576] = 1, + anon_sym_RBRACE, + [7881] = 1, ACTIONS(645), 1, - anon_sym_LBRACE, - [7580] = 1, + anon_sym_RBRACE, + [7885] = 1, ACTIONS(647), 1, - anon_sym_RBRACE, - [7584] = 1, - ACTIONS(649), 1, - anon_sym_LBRACE, - [7588] = 1, - ACTIONS(651), 1, - anon_sym_LBRACE, - [7592] = 1, - ACTIONS(653), 1, - anon_sym_LBRACE, - [7596] = 1, - ACTIONS(655), 1, sym_identifier, - [7600] = 1, + [7889] = 1, + ACTIONS(649), 1, + sym_identifier, + [7893] = 1, + ACTIONS(651), 1, + anon_sym_RBRACE, + [7897] = 1, + ACTIONS(653), 1, + anon_sym_RBRACE, + [7901] = 1, + ACTIONS(655), 1, + anon_sym_RBRACE, + [7905] = 1, ACTIONS(657), 1, - anon_sym_RBRACE, - [7604] = 1, + anon_sym_from, + [7909] = 1, ACTIONS(659), 1, - ts_builtin_sym_end, - [7608] = 1, + anon_sym_LBRACE, + [7913] = 1, ACTIONS(661), 1, - anon_sym_RBRACE, - [7612] = 1, + anon_sym_LBRACE, + [7917] = 1, ACTIONS(663), 1, - anon_sym_RBRACE, - [7616] = 1, + sym_identifier, + [7921] = 1, ACTIONS(665), 1, anon_sym_LBRACE, - [7620] = 1, + [7925] = 1, ACTIONS(667), 1, - anon_sym_LBRACE, - [7624] = 1, + ts_builtin_sym_end, + [7929] = 1, ACTIONS(669), 1, - sym_identifier, - [7628] = 1, + anon_sym_LBRACE, + [7933] = 1, ACTIONS(671), 1, - anon_sym_LT, - [7632] = 1, + anon_sym_LBRACE, + [7937] = 1, ACTIONS(673), 1, - sym_identifier, - [7636] = 1, + anon_sym_LBRACE, + [7941] = 1, ACTIONS(675), 1, + sym_identifier, + [7945] = 1, + ACTIONS(677), 1, + anon_sym_from, + [7949] = 1, + ACTIONS(679), 1, + sym_identifier, + [7953] = 1, + ACTIONS(681), 1, + anon_sym_in, + [7957] = 1, + ACTIONS(683), 1, + anon_sym_in, + [7961] = 1, + ACTIONS(685), 1, + anon_sym_in, + [7965] = 1, + ACTIONS(687), 1, + anon_sym_RBRACE, + [7969] = 1, + ACTIONS(689), 1, + anon_sym_LBRACE, + [7973] = 1, + ACTIONS(691), 1, + anon_sym_LT, + [7977] = 1, + ACTIONS(693), 1, + anon_sym_EQ, + [7981] = 1, + ACTIONS(695), 1, anon_sym_LT, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 76, - [SMALL_STATE(4)] = 152, - [SMALL_STATE(5)] = 228, - [SMALL_STATE(6)] = 324, - [SMALL_STATE(7)] = 420, - [SMALL_STATE(8)] = 513, - [SMALL_STATE(9)] = 573, - [SMALL_STATE(10)] = 665, - [SMALL_STATE(11)] = 757, - [SMALL_STATE(12)] = 849, - [SMALL_STATE(13)] = 941, - [SMALL_STATE(14)] = 1033, - [SMALL_STATE(15)] = 1125, - [SMALL_STATE(16)] = 1217, - [SMALL_STATE(17)] = 1309, - [SMALL_STATE(18)] = 1401, - [SMALL_STATE(19)] = 1493, - [SMALL_STATE(20)] = 1585, - [SMALL_STATE(21)] = 1677, - [SMALL_STATE(22)] = 1769, - [SMALL_STATE(23)] = 1861, - [SMALL_STATE(24)] = 1953, - [SMALL_STATE(25)] = 2041, - [SMALL_STATE(26)] = 2129, - [SMALL_STATE(27)] = 2217, - [SMALL_STATE(28)] = 2305, - [SMALL_STATE(29)] = 2393, - [SMALL_STATE(30)] = 2441, - [SMALL_STATE(31)] = 2497, - [SMALL_STATE(32)] = 2540, - [SMALL_STATE(33)] = 2589, - [SMALL_STATE(34)] = 2632, - [SMALL_STATE(35)] = 2702, - [SMALL_STATE(36)] = 2744, - [SMALL_STATE(37)] = 2786, - [SMALL_STATE(38)] = 2828, - [SMALL_STATE(39)] = 2870, - [SMALL_STATE(40)] = 2912, - [SMALL_STATE(41)] = 2954, - [SMALL_STATE(42)] = 2996, - [SMALL_STATE(43)] = 3038, - [SMALL_STATE(44)] = 3080, - [SMALL_STATE(45)] = 3150, - [SMALL_STATE(46)] = 3220, - [SMALL_STATE(47)] = 3262, - [SMALL_STATE(48)] = 3304, - [SMALL_STATE(49)] = 3346, - [SMALL_STATE(50)] = 3388, - [SMALL_STATE(51)] = 3441, - [SMALL_STATE(52)] = 3494, - [SMALL_STATE(53)] = 3537, - [SMALL_STATE(54)] = 3585, - [SMALL_STATE(55)] = 3629, - [SMALL_STATE(56)] = 3668, - [SMALL_STATE(57)] = 3707, - [SMALL_STATE(58)] = 3741, - [SMALL_STATE(59)] = 3795, - [SMALL_STATE(60)] = 3848, - [SMALL_STATE(61)] = 3901, - [SMALL_STATE(62)] = 3954, - [SMALL_STATE(63)] = 4007, - [SMALL_STATE(64)] = 4060, - [SMALL_STATE(65)] = 4113, - [SMALL_STATE(66)] = 4166, - [SMALL_STATE(67)] = 4219, - [SMALL_STATE(68)] = 4272, - [SMALL_STATE(69)] = 4325, - [SMALL_STATE(70)] = 4378, - [SMALL_STATE(71)] = 4431, - [SMALL_STATE(72)] = 4484, - [SMALL_STATE(73)] = 4537, - [SMALL_STATE(74)] = 4590, - [SMALL_STATE(75)] = 4643, - [SMALL_STATE(76)] = 4696, - [SMALL_STATE(77)] = 4749, - [SMALL_STATE(78)] = 4802, - [SMALL_STATE(79)] = 4830, - [SMALL_STATE(80)] = 4858, - [SMALL_STATE(81)] = 4905, - [SMALL_STATE(82)] = 4934, - [SMALL_STATE(83)] = 4981, - [SMALL_STATE(84)] = 5028, - [SMALL_STATE(85)] = 5075, - [SMALL_STATE(86)] = 5122, - [SMALL_STATE(87)] = 5169, - [SMALL_STATE(88)] = 5216, - [SMALL_STATE(89)] = 5265, - [SMALL_STATE(90)] = 5312, - [SMALL_STATE(91)] = 5361, - [SMALL_STATE(92)] = 5408, - [SMALL_STATE(93)] = 5455, - [SMALL_STATE(94)] = 5502, - [SMALL_STATE(95)] = 5549, - [SMALL_STATE(96)] = 5596, - [SMALL_STATE(97)] = 5625, - [SMALL_STATE(98)] = 5672, - [SMALL_STATE(99)] = 5698, - [SMALL_STATE(100)] = 5724, - [SMALL_STATE(101)] = 5750, - [SMALL_STATE(102)] = 5776, - [SMALL_STATE(103)] = 5802, - [SMALL_STATE(104)] = 5828, - [SMALL_STATE(105)] = 5854, - [SMALL_STATE(106)] = 5880, - [SMALL_STATE(107)] = 5906, - [SMALL_STATE(108)] = 5932, - [SMALL_STATE(109)] = 5958, - [SMALL_STATE(110)] = 5982, - [SMALL_STATE(111)] = 6011, - [SMALL_STATE(112)] = 6038, - [SMALL_STATE(113)] = 6069, - [SMALL_STATE(114)] = 6095, - [SMALL_STATE(115)] = 6127, - [SMALL_STATE(116)] = 6159, - [SMALL_STATE(117)] = 6188, - [SMALL_STATE(118)] = 6209, - [SMALL_STATE(119)] = 6230, - [SMALL_STATE(120)] = 6259, - [SMALL_STATE(121)] = 6288, - [SMALL_STATE(122)] = 6317, - [SMALL_STATE(123)] = 6338, - [SMALL_STATE(124)] = 6367, - [SMALL_STATE(125)] = 6388, - [SMALL_STATE(126)] = 6409, - [SMALL_STATE(127)] = 6430, - [SMALL_STATE(128)] = 6451, - [SMALL_STATE(129)] = 6480, - [SMALL_STATE(130)] = 6501, - [SMALL_STATE(131)] = 6522, - [SMALL_STATE(132)] = 6543, - [SMALL_STATE(133)] = 6564, - [SMALL_STATE(134)] = 6585, - [SMALL_STATE(135)] = 6614, - [SMALL_STATE(136)] = 6635, - [SMALL_STATE(137)] = 6656, - [SMALL_STATE(138)] = 6677, - [SMALL_STATE(139)] = 6703, - [SMALL_STATE(140)] = 6723, - [SMALL_STATE(141)] = 6743, - [SMALL_STATE(142)] = 6763, - [SMALL_STATE(143)] = 6783, - [SMALL_STATE(144)] = 6803, - [SMALL_STATE(145)] = 6823, - [SMALL_STATE(146)] = 6849, - [SMALL_STATE(147)] = 6869, - [SMALL_STATE(148)] = 6889, - [SMALL_STATE(149)] = 6909, - [SMALL_STATE(150)] = 6929, - [SMALL_STATE(151)] = 6949, - [SMALL_STATE(152)] = 6969, - [SMALL_STATE(153)] = 6989, - [SMALL_STATE(154)] = 7009, - [SMALL_STATE(155)] = 7029, - [SMALL_STATE(156)] = 7050, - [SMALL_STATE(157)] = 7071, - [SMALL_STATE(158)] = 7092, - [SMALL_STATE(159)] = 7113, - [SMALL_STATE(160)] = 7131, - [SMALL_STATE(161)] = 7148, - [SMALL_STATE(162)] = 7164, - [SMALL_STATE(163)] = 7180, - [SMALL_STATE(164)] = 7191, - [SMALL_STATE(165)] = 7202, - [SMALL_STATE(166)] = 7213, - [SMALL_STATE(167)] = 7221, - [SMALL_STATE(168)] = 7231, - [SMALL_STATE(169)] = 7239, - [SMALL_STATE(170)] = 7249, - [SMALL_STATE(171)] = 7259, - [SMALL_STATE(172)] = 7269, - [SMALL_STATE(173)] = 7279, - [SMALL_STATE(174)] = 7289, - [SMALL_STATE(175)] = 7299, - [SMALL_STATE(176)] = 7309, - [SMALL_STATE(177)] = 7319, - [SMALL_STATE(178)] = 7329, - [SMALL_STATE(179)] = 7339, - [SMALL_STATE(180)] = 7349, - [SMALL_STATE(181)] = 7359, - [SMALL_STATE(182)] = 7369, - [SMALL_STATE(183)] = 7379, - [SMALL_STATE(184)] = 7389, - [SMALL_STATE(185)] = 7397, - [SMALL_STATE(186)] = 7407, - [SMALL_STATE(187)] = 7414, - [SMALL_STATE(188)] = 7421, - [SMALL_STATE(189)] = 7428, - [SMALL_STATE(190)] = 7435, - [SMALL_STATE(191)] = 7442, - [SMALL_STATE(192)] = 7449, - [SMALL_STATE(193)] = 7456, - [SMALL_STATE(194)] = 7463, - [SMALL_STATE(195)] = 7468, - [SMALL_STATE(196)] = 7472, - [SMALL_STATE(197)] = 7476, - [SMALL_STATE(198)] = 7480, - [SMALL_STATE(199)] = 7484, - [SMALL_STATE(200)] = 7488, - [SMALL_STATE(201)] = 7492, - [SMALL_STATE(202)] = 7496, - [SMALL_STATE(203)] = 7500, - [SMALL_STATE(204)] = 7504, - [SMALL_STATE(205)] = 7508, - [SMALL_STATE(206)] = 7512, - [SMALL_STATE(207)] = 7516, - [SMALL_STATE(208)] = 7520, - [SMALL_STATE(209)] = 7524, - [SMALL_STATE(210)] = 7528, - [SMALL_STATE(211)] = 7532, - [SMALL_STATE(212)] = 7536, - [SMALL_STATE(213)] = 7540, - [SMALL_STATE(214)] = 7544, - [SMALL_STATE(215)] = 7548, - [SMALL_STATE(216)] = 7552, - [SMALL_STATE(217)] = 7556, - [SMALL_STATE(218)] = 7560, - [SMALL_STATE(219)] = 7564, - [SMALL_STATE(220)] = 7568, - [SMALL_STATE(221)] = 7572, - [SMALL_STATE(222)] = 7576, - [SMALL_STATE(223)] = 7580, - [SMALL_STATE(224)] = 7584, - [SMALL_STATE(225)] = 7588, - [SMALL_STATE(226)] = 7592, - [SMALL_STATE(227)] = 7596, - [SMALL_STATE(228)] = 7600, - [SMALL_STATE(229)] = 7604, - [SMALL_STATE(230)] = 7608, - [SMALL_STATE(231)] = 7612, - [SMALL_STATE(232)] = 7616, - [SMALL_STATE(233)] = 7620, - [SMALL_STATE(234)] = 7624, - [SMALL_STATE(235)] = 7628, - [SMALL_STATE(236)] = 7632, - [SMALL_STATE(237)] = 7636, + [SMALL_STATE(4)] = 176, + [SMALL_STATE(5)] = 276, + [SMALL_STATE(6)] = 352, + [SMALL_STATE(7)] = 428, + [SMALL_STATE(8)] = 525, + [SMALL_STATE(9)] = 621, + [SMALL_STATE(10)] = 717, + [SMALL_STATE(11)] = 813, + [SMALL_STATE(12)] = 909, + [SMALL_STATE(13)] = 1005, + [SMALL_STATE(14)] = 1101, + [SMALL_STATE(15)] = 1197, + [SMALL_STATE(16)] = 1293, + [SMALL_STATE(17)] = 1389, + [SMALL_STATE(18)] = 1485, + [SMALL_STATE(19)] = 1581, + [SMALL_STATE(20)] = 1677, + [SMALL_STATE(21)] = 1773, + [SMALL_STATE(22)] = 1869, + [SMALL_STATE(23)] = 1965, + [SMALL_STATE(24)] = 2027, + [SMALL_STATE(25)] = 2123, + [SMALL_STATE(26)] = 2215, + [SMALL_STATE(27)] = 2307, + [SMALL_STATE(28)] = 2399, + [SMALL_STATE(29)] = 2491, + [SMALL_STATE(30)] = 2583, + [SMALL_STATE(31)] = 2632, + [SMALL_STATE(32)] = 2689, + [SMALL_STATE(33)] = 2733, + [SMALL_STATE(34)] = 2783, + [SMALL_STATE(35)] = 2827, + [SMALL_STATE(36)] = 2870, + [SMALL_STATE(37)] = 2913, + [SMALL_STATE(38)] = 2956, + [SMALL_STATE(39)] = 2999, + [SMALL_STATE(40)] = 3042, + [SMALL_STATE(41)] = 3085, + [SMALL_STATE(42)] = 3128, + [SMALL_STATE(43)] = 3171, + [SMALL_STATE(44)] = 3214, + [SMALL_STATE(45)] = 3257, + [SMALL_STATE(46)] = 3300, + [SMALL_STATE(47)] = 3343, + [SMALL_STATE(48)] = 3386, + [SMALL_STATE(49)] = 3440, + [SMALL_STATE(50)] = 3510, + [SMALL_STATE(51)] = 3580, + [SMALL_STATE(52)] = 3634, + [SMALL_STATE(53)] = 3704, + [SMALL_STATE(54)] = 3748, + [SMALL_STATE(55)] = 3796, + [SMALL_STATE(56)] = 3836, + [SMALL_STATE(57)] = 3876, + [SMALL_STATE(58)] = 3920, + [SMALL_STATE(59)] = 3955, + [SMALL_STATE(60)] = 4009, + [SMALL_STATE(61)] = 4062, + [SMALL_STATE(62)] = 4115, + [SMALL_STATE(63)] = 4168, + [SMALL_STATE(64)] = 4221, + [SMALL_STATE(65)] = 4274, + [SMALL_STATE(66)] = 4327, + [SMALL_STATE(67)] = 4380, + [SMALL_STATE(68)] = 4433, + [SMALL_STATE(69)] = 4486, + [SMALL_STATE(70)] = 4539, + [SMALL_STATE(71)] = 4592, + [SMALL_STATE(72)] = 4645, + [SMALL_STATE(73)] = 4674, + [SMALL_STATE(74)] = 4727, + [SMALL_STATE(75)] = 4780, + [SMALL_STATE(76)] = 4833, + [SMALL_STATE(77)] = 4886, + [SMALL_STATE(78)] = 4915, + [SMALL_STATE(79)] = 4968, + [SMALL_STATE(80)] = 5021, + [SMALL_STATE(81)] = 5074, + [SMALL_STATE(82)] = 5104, + [SMALL_STATE(83)] = 5134, + [SMALL_STATE(84)] = 5161, + [SMALL_STATE(85)] = 5208, + [SMALL_STATE(86)] = 5255, + [SMALL_STATE(87)] = 5302, + [SMALL_STATE(88)] = 5349, + [SMALL_STATE(89)] = 5376, + [SMALL_STATE(90)] = 5403, + [SMALL_STATE(91)] = 5430, + [SMALL_STATE(92)] = 5479, + [SMALL_STATE(93)] = 5526, + [SMALL_STATE(94)] = 5573, + [SMALL_STATE(95)] = 5620, + [SMALL_STATE(96)] = 5667, + [SMALL_STATE(97)] = 5714, + [SMALL_STATE(98)] = 5761, + [SMALL_STATE(99)] = 5788, + [SMALL_STATE(100)] = 5835, + [SMALL_STATE(101)] = 5862, + [SMALL_STATE(102)] = 5889, + [SMALL_STATE(103)] = 5938, + [SMALL_STATE(104)] = 5965, + [SMALL_STATE(105)] = 6012, + [SMALL_STATE(106)] = 6059, + [SMALL_STATE(107)] = 6106, + [SMALL_STATE(108)] = 6153, + [SMALL_STATE(109)] = 6180, + [SMALL_STATE(110)] = 6207, + [SMALL_STATE(111)] = 6234, + [SMALL_STATE(112)] = 6261, + [SMALL_STATE(113)] = 6286, + [SMALL_STATE(114)] = 6317, + [SMALL_STATE(115)] = 6344, + [SMALL_STATE(116)] = 6373, + [SMALL_STATE(117)] = 6405, + [SMALL_STATE(118)] = 6437, + [SMALL_STATE(119)] = 6463, + [SMALL_STATE(120)] = 6492, + [SMALL_STATE(121)] = 6513, + [SMALL_STATE(122)] = 6542, + [SMALL_STATE(123)] = 6563, + [SMALL_STATE(124)] = 6584, + [SMALL_STATE(125)] = 6613, + [SMALL_STATE(126)] = 6634, + [SMALL_STATE(127)] = 6655, + [SMALL_STATE(128)] = 6676, + [SMALL_STATE(129)] = 6697, + [SMALL_STATE(130)] = 6726, + [SMALL_STATE(131)] = 6747, + [SMALL_STATE(132)] = 6768, + [SMALL_STATE(133)] = 6789, + [SMALL_STATE(134)] = 6818, + [SMALL_STATE(135)] = 6847, + [SMALL_STATE(136)] = 6868, + [SMALL_STATE(137)] = 6897, + [SMALL_STATE(138)] = 6918, + [SMALL_STATE(139)] = 6939, + [SMALL_STATE(140)] = 6960, + [SMALL_STATE(141)] = 6981, + [SMALL_STATE(142)] = 7010, + [SMALL_STATE(143)] = 7030, + [SMALL_STATE(144)] = 7050, + [SMALL_STATE(145)] = 7076, + [SMALL_STATE(146)] = 7102, + [SMALL_STATE(147)] = 7122, + [SMALL_STATE(148)] = 7142, + [SMALL_STATE(149)] = 7162, + [SMALL_STATE(150)] = 7182, + [SMALL_STATE(151)] = 7202, + [SMALL_STATE(152)] = 7222, + [SMALL_STATE(153)] = 7242, + [SMALL_STATE(154)] = 7262, + [SMALL_STATE(155)] = 7282, + [SMALL_STATE(156)] = 7302, + [SMALL_STATE(157)] = 7322, + [SMALL_STATE(158)] = 7342, + [SMALL_STATE(159)] = 7362, + [SMALL_STATE(160)] = 7383, + [SMALL_STATE(161)] = 7404, + [SMALL_STATE(162)] = 7425, + [SMALL_STATE(163)] = 7446, + [SMALL_STATE(164)] = 7464, + [SMALL_STATE(165)] = 7481, + [SMALL_STATE(166)] = 7497, + [SMALL_STATE(167)] = 7513, + [SMALL_STATE(168)] = 7524, + [SMALL_STATE(169)] = 7535, + [SMALL_STATE(170)] = 7546, + [SMALL_STATE(171)] = 7556, + [SMALL_STATE(172)] = 7566, + [SMALL_STATE(173)] = 7576, + [SMALL_STATE(174)] = 7586, + [SMALL_STATE(175)] = 7596, + [SMALL_STATE(176)] = 7604, + [SMALL_STATE(177)] = 7614, + [SMALL_STATE(178)] = 7624, + [SMALL_STATE(179)] = 7634, + [SMALL_STATE(180)] = 7644, + [SMALL_STATE(181)] = 7654, + [SMALL_STATE(182)] = 7662, + [SMALL_STATE(183)] = 7672, + [SMALL_STATE(184)] = 7682, + [SMALL_STATE(185)] = 7692, + [SMALL_STATE(186)] = 7702, + [SMALL_STATE(187)] = 7712, + [SMALL_STATE(188)] = 7722, + [SMALL_STATE(189)] = 7732, + [SMALL_STATE(190)] = 7740, + [SMALL_STATE(191)] = 7747, + [SMALL_STATE(192)] = 7754, + [SMALL_STATE(193)] = 7761, + [SMALL_STATE(194)] = 7768, + [SMALL_STATE(195)] = 7775, + [SMALL_STATE(196)] = 7782, + [SMALL_STATE(197)] = 7789, + [SMALL_STATE(198)] = 7796, + [SMALL_STATE(199)] = 7801, + [SMALL_STATE(200)] = 7805, + [SMALL_STATE(201)] = 7809, + [SMALL_STATE(202)] = 7813, + [SMALL_STATE(203)] = 7817, + [SMALL_STATE(204)] = 7821, + [SMALL_STATE(205)] = 7825, + [SMALL_STATE(206)] = 7829, + [SMALL_STATE(207)] = 7833, + [SMALL_STATE(208)] = 7837, + [SMALL_STATE(209)] = 7841, + [SMALL_STATE(210)] = 7845, + [SMALL_STATE(211)] = 7849, + [SMALL_STATE(212)] = 7853, + [SMALL_STATE(213)] = 7857, + [SMALL_STATE(214)] = 7861, + [SMALL_STATE(215)] = 7865, + [SMALL_STATE(216)] = 7869, + [SMALL_STATE(217)] = 7873, + [SMALL_STATE(218)] = 7877, + [SMALL_STATE(219)] = 7881, + [SMALL_STATE(220)] = 7885, + [SMALL_STATE(221)] = 7889, + [SMALL_STATE(222)] = 7893, + [SMALL_STATE(223)] = 7897, + [SMALL_STATE(224)] = 7901, + [SMALL_STATE(225)] = 7905, + [SMALL_STATE(226)] = 7909, + [SMALL_STATE(227)] = 7913, + [SMALL_STATE(228)] = 7917, + [SMALL_STATE(229)] = 7921, + [SMALL_STATE(230)] = 7925, + [SMALL_STATE(231)] = 7929, + [SMALL_STATE(232)] = 7933, + [SMALL_STATE(233)] = 7937, + [SMALL_STATE(234)] = 7941, + [SMALL_STATE(235)] = 7945, + [SMALL_STATE(236)] = 7949, + [SMALL_STATE(237)] = 7953, + [SMALL_STATE(238)] = 7957, + [SMALL_STATE(239)] = 7961, + [SMALL_STATE(240)] = 7965, + [SMALL_STATE(241)] = 7969, + [SMALL_STATE(242)] = 7973, + [SMALL_STATE(243)] = 7977, + [SMALL_STATE(244)] = 7981, }; 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(32), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(32), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(105), - [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(36), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(36), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(48), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(189), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(176), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(212), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(92), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(82), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(206), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(205), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(210), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(166), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(232), - [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(32), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(105), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(3), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(36), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(36), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(48), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(66), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(189), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(176), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(212), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(92), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(82), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(206), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(205), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(210), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(166), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(232), - [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 1), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 1), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(80), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(41), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(3), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(36), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(36), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(48), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(66), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(189), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(176), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(212), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(41), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(3), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(36), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(36), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(48), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(66), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(189), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(176), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(212), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(33), + [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(98), + [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(43), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(43), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(42), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(197), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(185), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(215), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(104), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(105), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(236), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(204), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(201), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(199), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(189), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(241), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(33), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(98), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(2), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(43), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(43), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(42), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(66), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(197), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(185), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(215), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(104), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(105), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(236), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(204), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(201), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(199), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(189), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(241), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 1), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 1), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(87), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(39), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(43), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(43), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(42), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(66), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(197), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(185), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(215), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(39), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(2), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(43), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(43), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(42), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(66), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(197), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(185), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(215), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4), [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), SHIFT_REPEAT(66), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(201), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), SHIFT_REPEAT(66), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(243), [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(184), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [659] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(181), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [667] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), }; #ifdef __cplusplus