diff --git a/corpus/transform.txt b/corpus/transform.txt new file mode 100644 index 0000000..d6d6215 --- /dev/null +++ b/corpus/transform.txt @@ -0,0 +1,73 @@ +================== +Transform Loop +================== + +transform i in [1, 2, 3] { + (output i) +} + +--- + +(root + (item + (statement + (transform + (identifier) + (expression + (value + (list + (expression + (value + (integer))) + (expression + (value + (integer))) + (expression + (value + (integer)))))) + (item + (statement + (expression + (function_call + (tool) + (expression + (identifier)))))))))) + +================== +Transform Loop Assignment +================== + +list = transform i in ["one", "two", "three"] { + (output i) +} + +--- + +(root + (item + (statement + (assignment + (identifier) + (assignment_operator) + (statement + (transform + (identifier) + (expression + (value + (list + (expression + (value + (string))) + (expression + (value + (string))) + (expression + (value + (string)))))) + (item + (statement + (expression + (function_call + (tool) + (expression + (identifier)))))))))))) diff --git a/grammar.js b/grammar.js index f779014..ec6007a 100644 --- a/grammar.js +++ b/grammar.js @@ -18,6 +18,7 @@ module.exports = grammar({ $.while, $.async, $.for, + $.transform, ), comment: $ => seq(/[#]+.*/), @@ -184,6 +185,16 @@ module.exports = grammar({ '}', ), + transform: $ => seq( + 'transform', + $.identifier, + 'in', + $.expression, + '{', + $.item, + '}', + ), + tool: $ => choice( 'assert', 'assert_equal', diff --git a/src/grammar.json b/src/grammar.json index b1c63d2..db2514f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -58,6 +58,10 @@ { "type": "SYMBOL", "name": "for" + }, + { + "type": "SYMBOL", + "name": "transform" } ] }, @@ -755,6 +759,39 @@ } ] }, + "transform": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "transform" + }, + { + "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 b9bd932..7c79351 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -418,6 +418,10 @@ "type": "select", "named": true }, + { + "type": "transform", + "named": true + }, { "type": "while", "named": true @@ -449,6 +453,29 @@ "named": true, "fields": {} }, + { + "type": "transform", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "item", + "named": true + } + ] + } + }, { "type": "value", "named": true, diff --git a/src/parser.c b/src/parser.c index b3e0c24..05bf304 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 231 +#define STATE_COUNT 238 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 106 +#define SYMBOL_COUNT 107 #define ALIAS_COUNT 0 #define TOKEN_COUNT 69 #define EXTERNAL_TOKEN_COUNT 0 @@ -55,24 +55,24 @@ enum { anon_sym_while = 36, anon_sym_for = 37, anon_sym_in = 38, - anon_sym_assert = 39, - anon_sym_assert_equal = 40, - anon_sym_output = 41, - anon_sym_read = 42, - anon_sym_write = 43, - anon_sym_raw = 44, - anon_sym_sh = 45, - anon_sym_bash = 46, - anon_sym_fish = 47, - anon_sym_zsh = 48, - anon_sym_random = 49, - anon_sym_random_boolean = 50, - anon_sym_random_float = 51, - anon_sym_random_string = 52, - anon_sym_random_integer = 53, - anon_sym_length = 54, - anon_sym_sort = 55, - anon_sym_transform = 56, + 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_to_csv = 58, anon_sym_from_csv = 59, @@ -110,18 +110,19 @@ enum { sym_function_call = 91, sym_while = 92, sym_for = 93, - sym_tool = 94, - sym_select = 95, - sym_insert = 96, - sym_async = 97, - aux_sym_root_repeat1 = 98, - aux_sym_item_repeat1 = 99, - aux_sym_list_repeat1 = 100, - aux_sym_function_repeat1 = 101, - aux_sym_table_repeat1 = 102, - aux_sym_map_repeat1 = 103, - aux_sym_if_else_repeat1 = 104, - aux_sym_insert_repeat1 = 105, + 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, }; static const char * const ts_symbol_names[] = { @@ -164,6 +165,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_for] = "for", [anon_sym_in] = "in", + [anon_sym_transform] = "transform", [anon_sym_assert] = "assert", [anon_sym_assert_equal] = "assert_equal", [anon_sym_output] = "output", @@ -181,7 +183,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_random_integer] = "random_integer", [anon_sym_length] = "length", [anon_sym_sort] = "sort", - [anon_sym_transform] = "transform", [anon_sym_filter] = "filter", [anon_sym_to_csv] = "to_csv", [anon_sym_from_csv] = "from_csv", @@ -219,6 +220,7 @@ static const char * const ts_symbol_names[] = { [sym_function_call] = "function_call", [sym_while] = "while", [sym_for] = "for", + [sym_transform] = "transform", [sym_tool] = "tool", [sym_select] = "select", [sym_insert] = "insert", @@ -273,6 +275,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_for] = anon_sym_for, [anon_sym_in] = anon_sym_in, + [anon_sym_transform] = anon_sym_transform, [anon_sym_assert] = anon_sym_assert, [anon_sym_assert_equal] = anon_sym_assert_equal, [anon_sym_output] = anon_sym_output, @@ -290,7 +293,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_transform] = anon_sym_transform, [anon_sym_filter] = anon_sym_filter, [anon_sym_to_csv] = anon_sym_to_csv, [anon_sym_from_csv] = anon_sym_from_csv, @@ -328,6 +330,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_call] = sym_function_call, [sym_while] = sym_while, [sym_for] = sym_for, + [sym_transform] = sym_transform, [sym_tool] = sym_tool, [sym_select] = sym_select, [sym_insert] = sym_insert, @@ -499,6 +502,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_transform] = { + .visible = true, + .named = false, + }, [anon_sym_assert] = { .visible = true, .named = false, @@ -567,10 +574,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_transform] = { - .visible = true, - .named = false, - }, [anon_sym_filter] = { .visible = true, .named = false, @@ -719,6 +722,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_transform] = { + .visible = true, + .named = true, + }, [sym_tool] = { .visible = true, .named = true, @@ -790,30 +797,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 9, [10] = 10, [11] = 11, - [12] = 8, - [13] = 11, - [14] = 14, - [15] = 10, + [12] = 12, + [13] = 10, + [14] = 11, + [15] = 15, [16] = 16, - [17] = 17, - [18] = 9, + [17] = 8, + [18] = 18, [19] = 19, - [20] = 10, - [21] = 11, - [22] = 8, - [23] = 23, + [20] = 12, + [21] = 12, + [22] = 10, + [23] = 11, [24] = 24, [25] = 25, [26] = 26, - [27] = 26, - [28] = 28, + [27] = 27, + [28] = 27, [29] = 29, [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 30, - [35] = 30, + [34] = 34, + [35] = 35, [36] = 36, [37] = 37, [38] = 38, @@ -822,8 +829,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 44, - [45] = 45, + [44] = 34, + [45] = 34, [46] = 46, [47] = 47, [48] = 48, @@ -836,44 +843,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 55, [56] = 56, [57] = 57, - [58] = 57, + [58] = 58, [59] = 59, - [60] = 60, + [60] = 59, [61] = 61, [62] = 62, [63] = 63, - [64] = 62, - [65] = 59, - [66] = 66, - [67] = 57, - [68] = 62, - [69] = 69, + [64] = 64, + [65] = 65, + [66] = 64, + [67] = 67, + [68] = 65, + [69] = 59, [70] = 63, - [71] = 60, - [72] = 63, - [73] = 59, + [71] = 65, + [72] = 61, + [73] = 62, [74] = 61, - [75] = 60, - [76] = 61, - [77] = 77, + [75] = 62, + [76] = 63, + [77] = 64, [78] = 78, [79] = 79, [80] = 80, [81] = 81, [82] = 82, [83] = 83, - [84] = 81, + [84] = 84, [85] = 85, - [86] = 77, - [87] = 85, + [86] = 86, + [87] = 87, [88] = 88, - [89] = 89, - [90] = 83, - [91] = 83, - [92] = 81, - [93] = 93, - [94] = 94, - [95] = 95, + [89] = 87, + [90] = 88, + [91] = 86, + [92] = 92, + [93] = 83, + [94] = 86, + [95] = 83, [96] = 96, [97] = 97, [98] = 98, @@ -885,93 +892,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [104] = 104, [105] = 105, [106] = 106, - [107] = 32, - [108] = 28, - [109] = 29, - [110] = 29, - [111] = 111, - [112] = 28, - [113] = 44, - [114] = 36, - [115] = 115, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 32, + [111] = 29, + [112] = 30, + [113] = 29, + [114] = 114, + [115] = 30, [116] = 116, - [117] = 117, - [118] = 46, - [119] = 42, - [120] = 49, - [121] = 41, - [122] = 38, - [123] = 123, - [124] = 45, - [125] = 47, - [126] = 40, - [127] = 48, - [128] = 50, - [129] = 43, + [117] = 37, + [118] = 43, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 42, + [123] = 50, + [124] = 38, + [125] = 35, + [126] = 47, + [127] = 46, + [128] = 128, + [129] = 49, [130] = 31, - [131] = 33, - [132] = 37, - [133] = 39, - [134] = 45, - [135] = 39, - [136] = 136, - [137] = 31, - [138] = 47, - [139] = 43, - [140] = 33, - [141] = 37, - [142] = 44, - [143] = 136, - [144] = 48, - [145] = 38, - [146] = 41, - [147] = 36, - [148] = 42, + [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, - [150] = 40, - [151] = 151, - [152] = 151, - [153] = 51, - [154] = 151, + [150] = 37, + [151] = 33, + [152] = 41, + [153] = 48, + [154] = 42, [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, + [156] = 52, + [157] = 155, + [158] = 155, [159] = 159, [160] = 160, - [161] = 160, + [161] = 161, [162] = 162, [163] = 163, [164] = 164, - [165] = 165, - [166] = 164, - [167] = 164, - [168] = 168, + [165] = 163, + [166] = 166, + [167] = 167, + [168] = 166, [169] = 169, - [170] = 170, - [171] = 170, - [172] = 168, + [170] = 167, + [171] = 171, + [172] = 172, [173] = 173, - [174] = 165, - [175] = 163, - [176] = 168, - [177] = 163, - [178] = 170, - [179] = 173, - [180] = 165, + [174] = 169, + [175] = 167, + [176] = 171, + [177] = 171, + [178] = 178, + [179] = 169, + [180] = 172, [181] = 181, - [182] = 182, - [183] = 183, + [182] = 181, + [183] = 181, [184] = 184, - [185] = 184, - [186] = 182, - [187] = 95, - [188] = 182, - [189] = 184, - [190] = 94, - [191] = 191, - [192] = 192, - [193] = 193, + [185] = 172, + [186] = 81, + [187] = 187, + [188] = 187, + [189] = 187, + [190] = 190, + [191] = 190, + [192] = 96, + [193] = 190, [194] = 194, [195] = 195, [196] = 196, @@ -982,33 +989,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [201] = 201, [202] = 202, [203] = 203, - [204] = 197, + [204] = 204, [205] = 205, - [206] = 196, - [207] = 195, - [208] = 197, + [206] = 206, + [207] = 207, + [208] = 208, [209] = 209, - [210] = 198, - [211] = 194, + [210] = 210, + [211] = 211, [212] = 212, - [213] = 213, - [214] = 214, - [215] = 192, - [216] = 196, - [217] = 212, + [213] = 203, + [214] = 203, + [215] = 209, + [216] = 195, + [217] = 217, [218] = 198, - [219] = 192, - [220] = 200, + [219] = 219, + [220] = 195, [221] = 221, - [222] = 195, - [223] = 223, - [224] = 202, - [225] = 225, - [226] = 212, - [227] = 227, - [228] = 205, - [229] = 214, - [230] = 205, + [222] = 204, + [223] = 200, + [224] = 219, + [225] = 219, + [226] = 204, + [227] = 210, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 200, + [232] = 232, + [233] = 209, + [234] = 207, + [235] = 212, + [236] = 221, + [237] = 212, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1947,7 +1961,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [25] = {.lex_state = 14}, [26] = {.lex_state = 14}, [27] = {.lex_state = 14}, - [28] = {.lex_state = 13}, + [28] = {.lex_state = 14}, [29] = {.lex_state = 13}, [30] = {.lex_state = 13}, [31] = {.lex_state = 13}, @@ -1973,10 +1987,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 13}, [52] = {.lex_state = 13}, [53] = {.lex_state = 13}, - [54] = {.lex_state = 15}, - [55] = {.lex_state = 14}, + [54] = {.lex_state = 13}, + [55] = {.lex_state = 15}, [56] = {.lex_state = 15}, - [57] = {.lex_state = 14}, + [57] = {.lex_state = 15}, [58] = {.lex_state = 14}, [59] = {.lex_state = 14}, [60] = {.lex_state = 14}, @@ -1988,7 +2002,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [66] = {.lex_state = 14}, [67] = {.lex_state = 14}, [68] = {.lex_state = 14}, - [69] = {.lex_state = 15}, + [69] = {.lex_state = 14}, [70] = {.lex_state = 14}, [71] = {.lex_state = 14}, [72] = {.lex_state = 14}, @@ -1997,8 +2011,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [75] = {.lex_state = 14}, [76] = {.lex_state = 14}, [77] = {.lex_state = 14}, - [78] = {.lex_state = 14}, - [79] = {.lex_state = 14}, + [78] = {.lex_state = 15}, + [79] = {.lex_state = 15}, [80] = {.lex_state = 14}, [81] = {.lex_state = 14}, [82] = {.lex_state = 14}, @@ -2007,12 +2021,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [85] = {.lex_state = 14}, [86] = {.lex_state = 14}, [87] = {.lex_state = 14}, - [88] = {.lex_state = 15}, + [88] = {.lex_state = 14}, [89] = {.lex_state = 14}, [90] = {.lex_state = 14}, [91] = {.lex_state = 14}, [92] = {.lex_state = 14}, - [93] = {.lex_state = 15}, + [93] = {.lex_state = 14}, [94] = {.lex_state = 14}, [95] = {.lex_state = 14}, [96] = {.lex_state = 14}, @@ -2026,15 +2040,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 14}, [105] = {.lex_state = 14}, [106] = {.lex_state = 14}, - [107] = {.lex_state = 1}, - [108] = {.lex_state = 1}, - [109] = {.lex_state = 1}, - [110] = {.lex_state = 2}, - [111] = {.lex_state = 2}, - [112] = {.lex_state = 2}, - [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 1}, + [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}, @@ -2053,31 +2067,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 1}, [132] = {.lex_state = 1}, [133] = {.lex_state = 1}, - [134] = {.lex_state = 2}, - [135] = {.lex_state = 2}, + [134] = {.lex_state = 1}, + [135] = {.lex_state = 1}, [136] = {.lex_state = 1}, - [137] = {.lex_state = 2}, - [138] = {.lex_state = 2}, + [137] = {.lex_state = 1}, + [138] = {.lex_state = 1}, [139] = {.lex_state = 2}, [140] = {.lex_state = 2}, [141] = {.lex_state = 2}, [142] = {.lex_state = 2}, - [143] = {.lex_state = 1}, + [143] = {.lex_state = 2}, [144] = {.lex_state = 2}, - [145] = {.lex_state = 2}, + [145] = {.lex_state = 1}, [146] = {.lex_state = 2}, [147] = {.lex_state = 2}, [148] = {.lex_state = 2}, [149] = {.lex_state = 2}, [150] = {.lex_state = 2}, - [151] = {.lex_state = 1}, - [152] = {.lex_state = 1}, - [153] = {.lex_state = 1}, - [154] = {.lex_state = 1}, - [155] = {.lex_state = 14}, - [156] = {.lex_state = 14}, - [157] = {.lex_state = 14}, - [158] = {.lex_state = 14}, + [151] = {.lex_state = 2}, + [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}, @@ -2085,71 +2099,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [163] = {.lex_state = 14}, [164] = {.lex_state = 14}, [165] = {.lex_state = 14}, - [166] = {.lex_state = 14}, + [166] = {.lex_state = 0}, [167] = {.lex_state = 14}, - [168] = {.lex_state = 14}, + [168] = {.lex_state = 0}, [169] = {.lex_state = 14}, [170] = {.lex_state = 14}, [171] = {.lex_state = 14}, [172] = {.lex_state = 14}, - [173] = {.lex_state = 0}, + [173] = {.lex_state = 14}, [174] = {.lex_state = 14}, [175] = {.lex_state = 14}, [176] = {.lex_state = 14}, [177] = {.lex_state = 14}, [178] = {.lex_state = 14}, - [179] = {.lex_state = 0}, + [179] = {.lex_state = 14}, [180] = {.lex_state = 14}, [181] = {.lex_state = 14}, - [182] = {.lex_state = 0}, + [182] = {.lex_state = 14}, [183] = {.lex_state = 14}, [184] = {.lex_state = 14}, [185] = {.lex_state = 14}, - [186] = {.lex_state = 0}, - [187] = {.lex_state = 14}, + [186] = {.lex_state = 14}, + [187] = {.lex_state = 0}, [188] = {.lex_state = 0}, - [189] = {.lex_state = 14}, + [189] = {.lex_state = 0}, [190] = {.lex_state = 14}, [191] = {.lex_state = 14}, - [192] = {.lex_state = 0}, - [193] = {.lex_state = 0}, + [192] = {.lex_state = 14}, + [193] = {.lex_state = 14}, [194] = {.lex_state = 14}, [195] = {.lex_state = 0}, [196] = {.lex_state = 0}, [197] = {.lex_state = 0}, - [198] = {.lex_state = 0}, - [199] = {.lex_state = 0}, - [200] = {.lex_state = 14}, - [201] = {.lex_state = 14}, + [198] = {.lex_state = 14}, + [199] = {.lex_state = 14}, + [200] = {.lex_state = 0}, + [201] = {.lex_state = 0}, [202] = {.lex_state = 14}, [203] = {.lex_state = 0}, [204] = {.lex_state = 0}, - [205] = {.lex_state = 0}, - [206] = {.lex_state = 0}, - [207] = {.lex_state = 0}, + [205] = {.lex_state = 14}, + [206] = {.lex_state = 14}, + [207] = {.lex_state = 14}, [208] = {.lex_state = 0}, [209] = {.lex_state = 0}, - [210] = {.lex_state = 0}, - [211] = {.lex_state = 14}, + [210] = {.lex_state = 14}, + [211] = {.lex_state = 0}, [212] = {.lex_state = 0}, [213] = {.lex_state = 0}, - [214] = {.lex_state = 14}, + [214] = {.lex_state = 0}, [215] = {.lex_state = 0}, [216] = {.lex_state = 0}, [217] = {.lex_state = 0}, - [218] = {.lex_state = 0}, + [218] = {.lex_state = 14}, [219] = {.lex_state = 0}, - [220] = {.lex_state = 14}, - [221] = {.lex_state = 0}, + [220] = {.lex_state = 0}, + [221] = {.lex_state = 14}, [222] = {.lex_state = 0}, [223] = {.lex_state = 0}, - [224] = {.lex_state = 14}, + [224] = {.lex_state = 0}, [225] = {.lex_state = 0}, [226] = {.lex_state = 0}, - [227] = {.lex_state = 0}, + [227] = {.lex_state = 14}, [228] = {.lex_state = 0}, - [229] = {.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}, + [236] = {.lex_state = 14}, + [237] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2193,6 +2214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), + [anon_sym_transform] = ACTIONS(1), [anon_sym_assert] = ACTIONS(1), [anon_sym_assert_equal] = ACTIONS(1), [anon_sym_output] = ACTIONS(1), @@ -2210,7 +2232,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_transform] = ACTIONS(1), [anon_sym_filter] = ACTIONS(1), [anon_sym_to_csv] = ACTIONS(1), [anon_sym_from_csv] = ACTIONS(1), @@ -2225,31 +2246,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(223), + [sym_root] = STATE(229), [sym_item] = STATE(6), - [sym_statement] = STATE(9), - [sym_comment] = STATE(103), - [sym_expression] = STATE(50), - [sym__expression_kind] = STATE(43), - [sym_value] = STATE(43), - [sym_boolean] = STATE(40), - [sym_list] = STATE(40), - [sym_function] = STATE(40), - [sym_table] = STATE(40), - [sym_map] = STATE(40), - [sym_math] = STATE(43), - [sym_logic] = STATE(43), - [sym_assignment] = STATE(103), - [sym_if_else] = STATE(103), - [sym_if] = STATE(56), - [sym_function_call] = STATE(43), - [sym_while] = STATE(103), - [sym_for] = STATE(103), - [sym_select] = STATE(103), - [sym_insert] = STATE(103), - [sym_async] = STATE(103), + [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_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(9), + [aux_sym_item_repeat1] = STATE(8), [sym_identifier] = ACTIONS(3), [aux_sym_comment_token1] = ACTIONS(5), [anon_sym_LPAREN] = ACTIONS(7), @@ -2265,51 +2287,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_select] = ACTIONS(29), - [anon_sym_insert] = ACTIONS(31), - [anon_sym_async] = ACTIONS(33), + [anon_sym_transform] = ACTIONS(29), + [anon_sym_select] = ACTIONS(31), + [anon_sym_insert] = ACTIONS(33), + [anon_sym_async] = ACTIONS(35), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 14, - ACTIONS(35), 1, - sym_identifier, ACTIONS(37), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - STATE(62), 1, + STATE(76), 1, sym_tool, - STATE(143), 1, + STATE(145), 1, sym_expression, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(152), 5, + STATE(158), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(53), 24, + ACTIONS(55), 24, + anon_sym_transform, anon_sym_assert, anon_sym_assert_equal, anon_sym_output, @@ -2327,7 +2351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_random_integer, anon_sym_length, anon_sym_sort, - anon_sym_transform, anon_sym_filter, anon_sym_to_csv, anon_sym_from_csv, @@ -2335,43 +2358,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from_json, anon_sym_help, [76] = 14, - ACTIONS(37), 1, - anon_sym_LPAREN, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(55), 1, + ACTIONS(57), 1, sym_identifier, - STATE(68), 1, + STATE(70), 1, sym_tool, - STATE(143), 1, + STATE(145), 1, sym_expression, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(154), 5, + STATE(157), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(53), 24, + ACTIONS(55), 24, + anon_sym_transform, anon_sym_assert, anon_sym_assert_equal, anon_sym_output, @@ -2389,7 +2413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_random_integer, anon_sym_length, anon_sym_sort, - anon_sym_transform, anon_sym_filter, anon_sym_to_csv, anon_sym_from_csv, @@ -2397,43 +2420,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from_json, anon_sym_help, [152] = 14, - ACTIONS(37), 1, - anon_sym_LPAREN, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(57), 1, + ACTIONS(59), 1, sym_identifier, - STATE(64), 1, + STATE(63), 1, sym_tool, - STATE(143), 1, + STATE(145), 1, sym_expression, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(151), 5, + STATE(155), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(53), 24, + ACTIONS(55), 24, + anon_sym_transform, anon_sym_assert, anon_sym_assert_equal, anon_sym_output, @@ -2451,82 +2475,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_random_integer, anon_sym_length, anon_sym_sort, - anon_sym_transform, anon_sym_filter, anon_sym_to_csv, anon_sym_from_csv, anon_sym_to_json, anon_sym_from_json, anon_sym_help, - [228] = 24, - ACTIONS(59), 1, - ts_builtin_sym_end, + [228] = 25, ACTIONS(61), 1, + ts_builtin_sym_end, + ACTIONS(63), 1, sym_identifier, - ACTIONS(64), 1, + ACTIONS(66), 1, aux_sym_comment_token1, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_LPAREN, - ACTIONS(70), 1, + ACTIONS(72), 1, sym_integer, - ACTIONS(79), 1, + ACTIONS(81), 1, anon_sym_LBRACK, - ACTIONS(82), 1, + ACTIONS(84), 1, anon_sym_function, - ACTIONS(85), 1, + ACTIONS(87), 1, anon_sym_LBRACE, - ACTIONS(88), 1, + ACTIONS(90), 1, anon_sym_table, - ACTIONS(91), 1, + ACTIONS(93), 1, anon_sym_if, - ACTIONS(94), 1, + ACTIONS(96), 1, anon_sym_while, - ACTIONS(97), 1, + ACTIONS(99), 1, anon_sym_for, - ACTIONS(100), 1, + ACTIONS(102), 1, + anon_sym_transform, + ACTIONS(105), 1, anon_sym_select, - ACTIONS(103), 1, + ACTIONS(108), 1, anon_sym_insert, - ACTIONS(106), 1, + ACTIONS(111), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_float, sym_string, - ACTIONS(76), 2, + ACTIONS(78), 2, anon_sym_true, anon_sym_false, STATE(5), 2, sym_item, aux_sym_root_repeat1, - STATE(9), 2, + STATE(8), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [320] = 24, + [324] = 25, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2550,16 +2576,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - ACTIONS(109), 1, + ACTIONS(114), 1, ts_builtin_sym_end, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, ACTIONS(11), 2, sym_float, @@ -2570,182 +2598,121 @@ static const uint16_t ts_small_parse_table[] = { STATE(5), 2, sym_item, aux_sym_root_repeat1, - STATE(9), 2, + STATE(8), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [412] = 23, - ACTIONS(113), 1, + [420] = 24, + ACTIONS(118), 1, sym_identifier, - ACTIONS(116), 1, + ACTIONS(121), 1, aux_sym_comment_token1, - ACTIONS(119), 1, + ACTIONS(124), 1, anon_sym_LPAREN, - ACTIONS(122), 1, + ACTIONS(127), 1, sym_integer, - ACTIONS(131), 1, + ACTIONS(136), 1, anon_sym_LBRACK, - ACTIONS(134), 1, + ACTIONS(139), 1, anon_sym_function, - ACTIONS(137), 1, + ACTIONS(142), 1, anon_sym_LBRACE, - ACTIONS(140), 1, + ACTIONS(145), 1, anon_sym_table, - ACTIONS(143), 1, + ACTIONS(148), 1, anon_sym_if, - ACTIONS(146), 1, + ACTIONS(151), 1, anon_sym_while, - ACTIONS(149), 1, + ACTIONS(154), 1, anon_sym_for, - ACTIONS(152), 1, + ACTIONS(157), 1, + anon_sym_transform, + ACTIONS(160), 1, anon_sym_select, - ACTIONS(155), 1, + ACTIONS(163), 1, anon_sym_insert, - ACTIONS(158), 1, + ACTIONS(166), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - ACTIONS(111), 2, + ACTIONS(116), 2, ts_builtin_sym_end, anon_sym_RBRACE, - ACTIONS(125), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(128), 2, + ACTIONS(133), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [501] = 23, - 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_select, - ACTIONS(31), 1, - anon_sym_insert, - ACTIONS(33), 1, - anon_sym_async, - STATE(50), 1, + [513] = 8, + STATE(51), 1, sym_expression, - STATE(56), 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(18), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(103), 8, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_async, - [589] = 8, - STATE(50), 1, - sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, STATE(7), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(161), 7, + ACTIONS(169), 7, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -2753,16 +2720,17 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - ACTIONS(163), 12, + ACTIONS(171), 13, sym_identifier, sym_integer, anon_sym_true, @@ -2772,10 +2740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [647] = 23, + [573] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2799,16 +2768,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(195), 1, + STATE(208), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -2816,31 +2787,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [735] = 23, + [665] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2864,16 +2836,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(206), 1, + STATE(200), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -2881,31 +2855,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [823] = 23, + [757] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2929,16 +2904,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(210), 1, + STATE(214), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -2946,31 +2923,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [911] = 23, + [849] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -2994,16 +2972,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(216), 1, + STATE(220), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3011,31 +2991,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [999] = 23, + [941] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3059,16 +3040,154 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - ACTIONS(165), 1, + 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, anon_sym_RBRACE, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, ACTIONS(11), 2, sym_float, @@ -3079,28 +3198,29 @@ static const uint16_t ts_small_parse_table[] = { STATE(19), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [1087] = 23, + [1217] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3124,16 +3244,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(207), 1, + STATE(217), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3141,31 +3263,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [1175] = 23, + [1309] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3189,16 +3312,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + ACTIONS(169), 1, + anon_sym_RBRACE, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(221), 1, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 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, + 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, + [1401] = 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(228), 1, sym_item, ACTIONS(11), 2, sym_float, @@ -3206,31 +3399,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [1263] = 23, + [1493] = 24, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3254,14 +3448,288 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + ACTIONS(175), 1, + anon_sym_RBRACE, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, + sym_if, + ACTIONS(11), 2, + sym_float, + sym_string, + ACTIONS(13), 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, + 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, + [1585] = 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(216), 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, + [1677] = 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(195), 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, + [1769] = 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(231), 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, + [1861] = 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(203), 1, sym_item, @@ -3271,47 +3739,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(18), 2, + STATE(17), 2, sym_statement, aux_sym_item_repeat1, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [1351] = 23, - ACTIONS(3), 1, - sym_identifier, + [1953] = 23, 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, @@ -3319,370 +3774,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, - ACTIONS(31), 1, - anon_sym_insert, - ACTIONS(33), 1, + anon_sym_transform, + ACTIONS(35), 1, anon_sym_async, - ACTIONS(161), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_expression, - STATE(56), 1, - sym_if, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(7), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(103), 8, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_async, - [1439] = 23, - 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_select, - ACTIONS(31), 1, - anon_sym_insert, - ACTIONS(33), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_expression, - STATE(56), 1, - sym_if, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(7), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(103), 8, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_async, - [1527] = 23, - 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_select, - ACTIONS(31), 1, - anon_sym_insert, - ACTIONS(33), 1, - anon_sym_async, - STATE(50), 1, - sym_expression, - STATE(56), 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(18), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(103), 8, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_async, - [1615] = 23, - 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_select, - ACTIONS(31), 1, - anon_sym_insert, - ACTIONS(33), 1, - anon_sym_async, - STATE(50), 1, - sym_expression, - STATE(56), 1, - sym_if, - STATE(196), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(18), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(103), 8, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_async, - [1703] = 23, - 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_select, - ACTIONS(31), 1, - anon_sym_insert, - ACTIONS(33), 1, - anon_sym_async, - STATE(50), 1, - sym_expression, - STATE(56), 1, - sym_if, - STATE(198), 1, - sym_item, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(18), 2, - sym_statement, - aux_sym_item_repeat1, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(103), 8, - sym_comment, - sym_assignment, - sym_if_else, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_async, - [1791] = 22, - 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(33), 1, - anon_sym_async, - ACTIONS(37), 1, - anon_sym_LPAREN, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(169), 1, + ACTIONS(177), 1, sym_identifier, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_select, - ACTIONS(173), 1, + ACTIONS(181), 1, anon_sym_insert, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(128), 1, + STATE(134), 1, sym_expression, - STATE(213), 1, + STATE(230), 1, sym_statement, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [1875] = 22, + [2041] = 23, ACTIONS(5), 1, aux_sym_comment_token1, ACTIONS(23), 1, @@ -3691,60 +3838,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(27), 1, anon_sym_for, - ACTIONS(33), 1, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(35), 1, anon_sym_async, - ACTIONS(37), 1, - anon_sym_LPAREN, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(169), 1, + ACTIONS(177), 1, sym_identifier, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_select, - ACTIONS(173), 1, + ACTIONS(181), 1, anon_sym_insert, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(128), 1, + STATE(134), 1, sym_expression, - STATE(199), 1, + STATE(211), 1, sym_statement, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [1959] = 22, + [2129] = 23, ACTIONS(5), 1, aux_sym_comment_token1, ACTIONS(23), 1, @@ -3753,60 +3903,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(27), 1, anon_sym_for, - ACTIONS(33), 1, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(35), 1, anon_sym_async, - ACTIONS(37), 1, - anon_sym_LPAREN, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(169), 1, + ACTIONS(177), 1, sym_identifier, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_select, - ACTIONS(173), 1, + ACTIONS(181), 1, anon_sym_insert, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(128), 1, + STATE(134), 1, sym_expression, - STATE(227), 1, + STATE(197), 1, sym_statement, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [2043] = 22, + [2217] = 23, ACTIONS(3), 1, sym_identifier, ACTIONS(5), 1, @@ -3830,16 +3983,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, - anon_sym_select, + anon_sym_transform, ACTIONS(31), 1, - anon_sym_insert, + anon_sym_select, ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, anon_sym_async, - STATE(50), 1, + STATE(51), 1, sym_expression, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(105), 1, + STATE(98), 1, sym_statement, ACTIONS(11), 2, sym_float, @@ -3847,28 +4002,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [2127] = 22, + [2305] = 23, ACTIONS(5), 1, aux_sym_comment_token1, ACTIONS(23), 1, @@ -3877,65 +4033,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(27), 1, anon_sym_for, - ACTIONS(33), 1, + ACTIONS(29), 1, + anon_sym_transform, + ACTIONS(35), 1, anon_sym_async, - ACTIONS(37), 1, - anon_sym_LPAREN, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(169), 1, + ACTIONS(177), 1, sym_identifier, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_select, - ACTIONS(173), 1, + ACTIONS(181), 1, anon_sym_insert, - STATE(56), 1, + STATE(55), 1, sym_if, - STATE(105), 1, + STATE(98), 1, sym_statement, - STATE(128), 1, + STATE(134), 1, sym_expression, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - STATE(103), 8, + STATE(101), 9, sym_comment, sym_assignment, sym_if_else, sym_while, sym_for, + sym_transform, sym_select, sym_insert, sym_async, - [2211] = 4, - STATE(81), 1, + [2393] = 4, + STATE(91), 1, sym_math_operator, - STATE(90), 1, + STATE(95), 1, sym_logic_operator, - ACTIONS(177), 16, + ACTIONS(185), 17, sym_identifier, sym_integer, anon_sym_true, @@ -3949,10 +4108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - ACTIONS(175), 20, + ACTIONS(183), 20, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -3973,29 +4133,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2258] = 8, - ACTIONS(187), 1, + [2441] = 8, + ACTIONS(195), 1, anon_sym_DASH, - STATE(81), 1, + STATE(91), 1, sym_math_operator, - STATE(90), 1, + STATE(95), 1, sym_logic_operator, - ACTIONS(183), 3, + ACTIONS(191), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(185), 4, + ACTIONS(193), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 5, + ACTIONS(197), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(179), 11, + ACTIONS(187), 11, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4007,7 +4167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(181), 12, + ACTIONS(189), 13, sym_identifier, sym_integer, anon_sym_true, @@ -4017,65 +4177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [2313] = 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(191), 1, - sym_identifier, - ACTIONS(193), 1, - anon_sym_RPAREN, - STATE(52), 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(195), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(197), 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, - [2383] = 2, - ACTIONS(201), 17, + [2497] = 2, + ACTIONS(201), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4089,6 +4196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_into, @@ -4114,15 +4222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2425] = 5, - ACTIONS(203), 1, + [2540] = 5, + ACTIONS(207), 1, anon_sym_EQ, - STATE(26), 1, + STATE(27), 1, sym_assignment_operator, - ACTIONS(205), 2, + ACTIONS(209), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(197), 16, + ACTIONS(203), 16, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4139,7 +4247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(195), 17, + ACTIONS(205), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4154,11 +4262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [2473] = 2, - ACTIONS(209), 17, + [2589] = 2, + ACTIONS(213), 18, sym_identifier, sym_integer, anon_sym_true, @@ -4172,11 +4281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_into, anon_sym_async, - ACTIONS(207), 20, + ACTIONS(211), 20, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -4197,7 +4307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2515] = 16, + [2632] = 16, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -4210,13 +4320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(211), 1, + ACTIONS(217), 1, anon_sym_RPAREN, - STATE(52), 1, + STATE(53), 1, sym_expression, - STATE(75), 1, + STATE(72), 1, aux_sym_list_repeat1, ACTIONS(11), 2, sym_float, @@ -4224,24 +4334,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - ACTIONS(195), 4, + ACTIONS(205), 4, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_PIPE_PIPE, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - ACTIONS(197), 9, + ACTIONS(203), 9, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -4251,101 +4361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2585] = 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(191), 1, - sym_identifier, - ACTIONS(213), 1, - anon_sym_RPAREN, - STATE(52), 1, - sym_expression, - STATE(60), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(195), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(197), 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, - [2655] = 2, - ACTIONS(217), 16, - 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_select, - anon_sym_insert, - anon_sym_async, - ACTIONS(215), 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, - [2696] = 2, - ACTIONS(221), 16, + [2702] = 2, + ACTIONS(221), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4359,6 +4376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4383,8 +4401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2737] = 2, - ACTIONS(225), 16, + [2744] = 2, + ACTIONS(225), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4398,6 +4416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4422,8 +4441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2778] = 2, - ACTIONS(229), 16, + [2786] = 2, + ACTIONS(229), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4437,6 +4456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4461,8 +4481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2819] = 2, - ACTIONS(233), 16, + [2828] = 2, + ACTIONS(233), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4476,6 +4496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4500,8 +4521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2860] = 2, - ACTIONS(237), 16, + [2870] = 2, + ACTIONS(237), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4515,6 +4536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4539,8 +4561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2901] = 2, - ACTIONS(241), 16, + [2912] = 2, + ACTIONS(241), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4554,6 +4576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4578,8 +4601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2942] = 2, - ACTIONS(245), 16, + [2954] = 2, + ACTIONS(245), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4593,6 +4616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4617,8 +4641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [2983] = 2, - ACTIONS(249), 16, + [2996] = 2, + ACTIONS(249), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4632,6 +4656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4656,8 +4681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3024] = 2, - ACTIONS(253), 16, + [3038] = 2, + ACTIONS(253), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4671,6 +4696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4695,36 +4721,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3065] = 2, - ACTIONS(257), 16, - 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_select, - anon_sym_insert, - anon_sym_async, - ACTIONS(255), 20, - ts_builtin_sym_end, - aux_sym_comment_token1, + [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, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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, @@ -4734,8 +4775,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3106] = 2, - ACTIONS(261), 16, + [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, sym_identifier, sym_integer, anon_sym_true, @@ -4749,6 +4844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4773,8 +4869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3147] = 2, - ACTIONS(265), 16, + [3262] = 2, + ACTIONS(265), 17, sym_identifier, sym_integer, anon_sym_true, @@ -4788,6 +4884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, @@ -4812,100 +4909,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [3188] = 8, - ACTIONS(187), 1, - anon_sym_DASH, - STATE(81), 1, - sym_math_operator, - STATE(90), 1, - sym_logic_operator, - ACTIONS(183), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(185), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(267), 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(269), 12, + [3304] = 2, + ACTIONS(269), 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, - [3240] = 8, - ACTIONS(187), 1, - anon_sym_DASH, - STATE(81), 1, - sym_math_operator, - STATE(90), 1, - sym_logic_operator, - ACTIONS(183), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(185), 4, + ACTIONS(267), 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, - ACTIONS(189), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(271), 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(273), 12, + [3346] = 2, + ACTIONS(273), 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, - [3292] = 4, - ACTIONS(195), 4, + ACTIONS(271), 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, + [3388] = 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_DASH, 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(275), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -4915,17 +5020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(197), 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(277), 12, + ACTIONS(277), 13, sym_identifier, sym_integer, anon_sym_true, @@ -4935,95 +5030,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [3334] = 9, - ACTIONS(187), 1, + [3441] = 8, + ACTIONS(195), 1, anon_sym_DASH, - ACTIONS(283), 1, - anon_sym_COMMA, - STATE(81), 1, + STATE(91), 1, sym_math_operator, - STATE(90), 1, + STATE(95), 1, sym_logic_operator, - ACTIONS(183), 3, + ACTIONS(191), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(185), 4, + ACTIONS(193), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 5, + ACTIONS(197), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(279), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - ACTIONS(281), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - [3382] = 8, - ACTIONS(187), 1, - anon_sym_DASH, - STATE(81), 1, - sym_math_operator, - STATE(90), 1, - sym_logic_operator, - ACTIONS(183), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(185), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(285), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - ACTIONS(287), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3426] = 6, - ACTIONS(293), 1, - anon_sym_elseif, - ACTIONS(295), 1, - anon_sym_else, - STATE(102), 1, - sym_else, - STATE(69), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(289), 8, + ACTIONS(279), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -5032,7 +5065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(291), 12, + ACTIONS(281), 13, sym_identifier, sym_integer, anon_sym_true, @@ -5042,60 +5075,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [3464] = 14, - ACTIONS(297), 1, - sym_identifier, - ACTIONS(300), 1, + [3494] = 4, + ACTIONS(205), 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, - ACTIONS(305), 1, - sym_integer, - ACTIONS(314), 1, - anon_sym_LBRACK, - ACTIONS(317), 1, - anon_sym_function, - ACTIONS(320), 1, - anon_sym_LBRACE, - ACTIONS(323), 1, - anon_sym_table, - STATE(52), 1, - sym_expression, - STATE(55), 1, - aux_sym_list_repeat1, - ACTIONS(303), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(308), 2, sym_float, sym_string, - ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + ACTIONS(285), 13, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3518] = 6, - ACTIONS(293), 1, + 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, + [3537] = 9, + ACTIONS(195), 1, + anon_sym_DASH, + ACTIONS(291), 1, + anon_sym_COMMA, + 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(287), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + ACTIONS(289), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + 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, anon_sym_elseif, - ACTIONS(295), 1, + ACTIONS(303), 1, anon_sym_else, STATE(99), 1, sym_else, - STATE(54), 2, + STATE(56), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(326), 8, + ACTIONS(297), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -5104,7 +5212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(328), 12, + ACTIONS(299), 13, sym_identifier, sym_integer, anon_sym_true, @@ -5114,107 +5222,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [3556] = 14, - ACTIONS(7), 1, + [3668] = 6, + ACTIONS(301), 1, + anon_sym_elseif, + ACTIONS(303), 1, + anon_sym_else, + STATE(106), 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, - 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(191), 1, - sym_identifier, - ACTIONS(330), 1, - anon_sym_RBRACE, - STATE(53), 1, - sym_expression, - STATE(66), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, sym_float, sym_string, - ACTIONS(13), 2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(307), 13, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3609] = 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(191), 1, - sym_identifier, - ACTIONS(332), 1, - anon_sym_RBRACE, - STATE(53), 1, - sym_expression, - STATE(66), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, + 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, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(309), 8, + ts_builtin_sym_end, + aux_sym_comment_token1, + anon_sym_LPAREN, sym_float, sym_string, - ACTIONS(13), 2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(311), 14, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3662] = 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(191), 1, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + [3741] = 14, + ACTIONS(316), 1, sym_identifier, - ACTIONS(334), 1, - anon_sym_RBRACE, + ACTIONS(319), 1, + anon_sym_LPAREN, + 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, @@ -5222,19 +5356,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [3715] = 14, + [3848] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5247,13 +5381,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(336), 1, + ACTIONS(347), 1, + anon_sym_RBRACE, + 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(52), 1, + STATE(53), 1, sym_expression, - STATE(55), 1, + STATE(58), 1, aux_sym_list_repeat1, ACTIONS(11), 2, sym_float, @@ -5261,19 +5434,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [3768] = 14, + [3954] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5286,13 +5459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(338), 1, + ACTIONS(351), 1, anon_sym_RBRACK, - STATE(52), 1, + STATE(53), 1, sym_expression, - STATE(55), 1, + STATE(58), 1, aux_sym_list_repeat1, ACTIONS(11), 2, sym_float, @@ -5300,19 +5473,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [3821] = 14, + [4007] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5325,50 +5498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(213), 1, + ACTIONS(257), 1, anon_sym_RPAREN, - STATE(52), 1, - sym_expression, - STATE(60), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [3874] = 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(191), 1, - sym_identifier, - ACTIONS(340), 1, - anon_sym_RBRACK, - STATE(52), 1, + STATE(53), 1, sym_expression, STATE(61), 1, aux_sym_list_repeat1, @@ -5378,19 +5512,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [3927] = 14, + [4060] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5403,13 +5537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(211), 1, - anon_sym_RPAREN, - STATE(52), 1, + ACTIONS(353), 1, + anon_sym_RBRACK, + STATE(53), 1, sym_expression, - STATE(75), 1, + STATE(62), 1, aux_sym_list_repeat1, ACTIONS(11), 2, sym_float, @@ -5417,19 +5551,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [3980] = 14, + [4113] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5442,11 +5576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(342), 1, + ACTIONS(355), 1, anon_sym_RBRACE, - STATE(53), 1, + STATE(54), 1, sym_expression, STATE(67), 1, aux_sym_table_repeat1, @@ -5456,58 +5590,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4033] = 14, - ACTIONS(344), 1, - sym_identifier, - ACTIONS(347), 1, - anon_sym_LPAREN, - ACTIONS(350), 1, - sym_integer, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(362), 1, - anon_sym_function, - ACTIONS(365), 1, - anon_sym_LBRACE, - ACTIONS(368), 1, - anon_sym_RBRACE, - ACTIONS(370), 1, - anon_sym_table, - STATE(53), 1, - sym_expression, - STATE(66), 1, - aux_sym_table_repeat1, - ACTIONS(353), 2, - sym_float, - sym_string, - ACTIONS(356), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4086] = 14, + [4166] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5520,52 +5615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(373), 1, - anon_sym_RBRACE, + ACTIONS(357), 1, + anon_sym_RBRACK, STATE(53), 1, sym_expression, - STATE(66), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4139] = 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(191), 1, - sym_identifier, - ACTIONS(193), 1, - anon_sym_RPAREN, - STATE(52), 1, - sym_expression, - STATE(71), 1, + STATE(73), 1, aux_sym_list_repeat1, ACTIONS(11), 2, sym_float, @@ -5573,48 +5629,58 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4192] = 4, - ACTIONS(379), 1, - anon_sym_elseif, - STATE(69), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(375), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, + [4219] = 14, + ACTIONS(359), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, + ACTIONS(365), 1, + sym_integer, + ACTIONS(374), 1, + anon_sym_LBRACK, + ACTIONS(377), 1, + anon_sym_function, + ACTIONS(380), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + anon_sym_RBRACE, + ACTIONS(385), 1, + anon_sym_table, + STATE(54), 1, + sym_expression, + STATE(67), 1, + aux_sym_table_repeat1, + ACTIONS(368), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(377), 13, - sym_identifier, - sym_integer, + ACTIONS(371), 2, 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_select, - anon_sym_insert, - anon_sym_async, - [4225] = 14, + 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, + [4272] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5627,11 +5693,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(382), 1, + ACTIONS(388), 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, + [4325] = 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(390), 1, + anon_sym_RBRACE, + 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(52), 1, + 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, @@ -5641,19 +6019,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4278] = 14, + [4749] = 14, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -5666,130 +6044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + ACTIONS(215), 1, sym_identifier, - ACTIONS(384), 1, - anon_sym_RPAREN, - STATE(52), 1, - sym_expression, - STATE(55), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4331] = 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(191), 1, - sym_identifier, - ACTIONS(386), 1, + ACTIONS(402), 1, anon_sym_RBRACK, - STATE(52), 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(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4384] = 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(191), 1, - sym_identifier, - ACTIONS(388), 1, - anon_sym_RBRACE, STATE(53), 1, sym_expression, - STATE(57), 1, - aux_sym_table_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4437] = 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(191), 1, - sym_identifier, - ACTIONS(390), 1, - anon_sym_RBRACK, - STATE(52), 1, - sym_expression, - STATE(55), 1, + STATE(75), 1, aux_sym_list_repeat1, ACTIONS(11), 2, sym_float, @@ -5797,485 +6058,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [4490] = 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(191), 1, - sym_identifier, - ACTIONS(392), 1, - anon_sym_RPAREN, - STATE(52), 1, - sym_expression, - STATE(55), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4543] = 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(191), 1, - sym_identifier, - ACTIONS(394), 1, - anon_sym_RBRACK, - STATE(52), 1, - sym_expression, - STATE(55), 1, - aux_sym_list_repeat1, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4596] = 13, - ACTIONS(37), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(143), 1, - sym_expression, - STATE(153), 1, - sym_logic, - ACTIONS(41), 2, - sym_float, - sym_string, - ACTIONS(43), 2, - anon_sym_true, - anon_sym_false, - STATE(129), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_function_call, - STATE(126), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [4645] = 12, - ACTIONS(37), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(123), 1, - sym_expression, - ACTIONS(41), 2, - sym_float, - sym_string, - ACTIONS(43), 2, - anon_sym_true, - anon_sym_false, - STATE(126), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(129), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4692] = 12, - ACTIONS(398), 1, - sym_identifier, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - sym_integer, - ACTIONS(408), 1, - anon_sym_LBRACK, - ACTIONS(410), 1, - anon_sym_function, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(414), 1, - anon_sym_table, - STATE(111), 1, - sym_expression, - ACTIONS(404), 2, - sym_float, - sym_string, - ACTIONS(406), 2, - anon_sym_true, - anon_sym_false, - STATE(139), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [4739] = 12, - ACTIONS(37), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(116), 1, - sym_expression, - ACTIONS(41), 2, - sym_float, - sym_string, - ACTIONS(43), 2, - anon_sym_true, - anon_sym_false, - STATE(126), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(129), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4786] = 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(191), 1, - sym_identifier, - STATE(28), 1, - sym_expression, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4833] = 12, - ACTIONS(37), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(117), 1, - sym_expression, - ACTIONS(41), 2, - sym_float, - sym_string, - ACTIONS(43), 2, - anon_sym_true, - anon_sym_false, - STATE(126), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(129), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [4880] = 12, - ACTIONS(398), 1, - sym_identifier, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - sym_integer, - ACTIONS(408), 1, - anon_sym_LBRACK, - ACTIONS(410), 1, - anon_sym_function, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(414), 1, - anon_sym_table, - STATE(110), 1, - sym_expression, - ACTIONS(404), 2, - sym_float, - sym_string, - ACTIONS(406), 2, - anon_sym_true, - anon_sym_false, - STATE(139), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [4927] = 12, - ACTIONS(398), 1, - sym_identifier, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - sym_integer, - ACTIONS(408), 1, - anon_sym_LBRACK, - ACTIONS(410), 1, - anon_sym_function, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(414), 1, - anon_sym_table, - STATE(112), 1, - sym_expression, - ACTIONS(404), 2, - sym_float, - sym_string, - ACTIONS(406), 2, - anon_sym_true, - anon_sym_false, - STATE(139), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - STATE(150), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [4974] = 12, - ACTIONS(37), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(120), 1, - sym_expression, - ACTIONS(41), 2, - sym_float, - sym_string, - ACTIONS(43), 2, - anon_sym_true, - anon_sym_false, - STATE(126), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(129), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5021] = 13, - ACTIONS(37), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(51), 1, - sym_logic, - STATE(136), 1, - sym_expression, - ACTIONS(41), 2, - sym_float, - sym_string, - ACTIONS(43), 2, - anon_sym_true, - anon_sym_false, - STATE(129), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_function_call, - STATE(126), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [5070] = 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(191), 1, - sym_identifier, - STATE(49), 1, - sym_expression, - ACTIONS(11), 2, - sym_float, - sym_string, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(43), 5, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - [5117] = 2, - ACTIONS(416), 9, + [4802] = 2, + ACTIONS(404), 9, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -6285,7 +6081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_elseif, - ACTIONS(418), 13, + ACTIONS(406), 14, sym_identifier, sym_integer, anon_sym_true, @@ -6296,45 +6092,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5144] = 12, - ACTIONS(37), 1, + [4830] = 2, + ACTIONS(408), 9, + ts_builtin_sym_end, + aux_sym_comment_token1, anon_sym_LPAREN, - ACTIONS(39), 1, - sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_function, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(396), 1, - sym_identifier, - STATE(115), 1, - sym_expression, - ACTIONS(41), 2, sym_float, sym_string, - ACTIONS(43), 2, + 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, - STATE(126), 5, + 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, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_table, + ACTIONS(412), 1, + sym_identifier, + STATE(128), 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(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5191] = 12, + [4905] = 3, + ACTIONS(418), 1, + anon_sym_where, + ACTIONS(414), 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(416), 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, + [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, + 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, + 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, + [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, + sym_identifier, + STATE(121), 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, + [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, ACTIONS(7), 1, anon_sym_LPAREN, ACTIONS(9), 1, @@ -6347,7 +6442,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(21), 1, anon_sym_table, - ACTIONS(191), 1, + 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, @@ -6357,117 +6523,162 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_true, anon_sym_false, - STATE(40), 5, + STATE(36), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(43), 5, + STATE(41), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5238] = 12, - ACTIONS(37), 1, - anon_sym_LPAREN, + [5408] = 12, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(396), 1, + ACTIONS(412), 1, sym_identifier, - STATE(109), 1, + STATE(119), 1, sym_expression, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5285] = 12, - ACTIONS(37), 1, - anon_sym_LPAREN, + [5455] = 12, ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(41), 1, sym_integer, - ACTIONS(45), 1, - anon_sym_LBRACK, ACTIONS(47), 1, - anon_sym_function, + anon_sym_LBRACK, ACTIONS(49), 1, - anon_sym_LBRACE, + anon_sym_function, ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_table, - ACTIONS(396), 1, + ACTIONS(412), 1, sym_identifier, - STATE(108), 1, + STATE(112), 1, sym_expression, - ACTIONS(41), 2, + ACTIONS(43), 2, sym_float, sym_string, - ACTIONS(43), 2, + ACTIONS(45), 2, anon_sym_true, anon_sym_false, - STATE(126), 5, + STATE(132), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(129), 5, + STATE(135), 5, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, - [5332] = 2, - ACTIONS(420), 9, - ts_builtin_sym_end, - aux_sym_comment_token1, + [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, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_elseif, - ACTIONS(422), 13, - sym_identifier, - sym_integer, + 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, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5359] = 3, - ACTIONS(428), 1, + ACTIONS(215), 1, + sym_identifier, + STATE(30), 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, + [5596] = 3, + ACTIONS(442), 1, anon_sym_where, - ACTIONS(424), 8, + ACTIONS(438), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -6476,7 +6687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(426), 12, + ACTIONS(440), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6486,81 +6697,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5387] = 3, + [5625] = 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_where, - ACTIONS(430), 8, - ts_builtin_sym_end, - aux_sym_comment_token1, - anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(436), 1, + anon_sym_table, + STATE(114), 1, + sym_expression, + ACTIONS(426), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(432), 12, - sym_identifier, - sym_integer, + ACTIONS(428), 2, anon_sym_true, anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - [5415] = 2, - ACTIONS(436), 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(438), 12, - 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_select, - anon_sym_insert, - anon_sym_async, - [5440] = 2, - ACTIONS(440), 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(442), 12, - 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_select, - anon_sym_insert, - anon_sym_async, - [5465] = 2, + 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, + [5672] = 2, ACTIONS(444), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6570,7 +6746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(446), 12, + ACTIONS(446), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6580,11 +6756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5490] = 2, - ACTIONS(289), 8, + [5698] = 2, + ACTIONS(305), 8, ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, @@ -6593,7 +6770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(291), 12, + ACTIONS(307), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6603,10 +6780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5515] = 2, + [5724] = 2, ACTIONS(448), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6616,7 +6794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(450), 12, + ACTIONS(450), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6626,10 +6804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5540] = 2, + [5750] = 2, + ACTIONS(279), 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(281), 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, + [5776] = 2, ACTIONS(452), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6639,7 +6842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(454), 12, + ACTIONS(454), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6649,10 +6852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5565] = 2, + [5802] = 2, ACTIONS(456), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6662,7 +6866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(458), 12, + ACTIONS(458), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6672,33 +6876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5590] = 2, - ACTIONS(271), 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(273), 12, - 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_select, - anon_sym_insert, - anon_sym_async, - [5615] = 2, + [5828] = 2, ACTIONS(460), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6708,7 +6890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(462), 12, + ACTIONS(462), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6718,10 +6900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5640] = 2, + [5854] = 2, ACTIONS(464), 8, ts_builtin_sym_end, aux_sym_comment_token1, @@ -6731,7 +6914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(466), 12, + ACTIONS(466), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6741,18 +6924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5665] = 2, - ACTIONS(470), 6, + [5880] = 2, + ACTIONS(468), 8, + ts_builtin_sym_end, aux_sym_comment_token1, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(468), 12, + anon_sym_RBRACE, + ACTIONS(470), 13, sym_identifier, sym_integer, anon_sym_true, @@ -6762,23 +6948,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, + anon_sym_transform, anon_sym_select, anon_sym_insert, anon_sym_async, - [5688] = 5, - ACTIONS(203), 1, + [5906] = 2, + ACTIONS(472), 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(474), 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, + [5932] = 2, + ACTIONS(476), 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(478), 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, + [5958] = 2, + ACTIONS(482), 6, + aux_sym_comment_token1, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(480), 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, + [5982] = 5, + ACTIONS(207), 1, anon_sym_EQ, - STATE(27), 1, + STATE(28), 1, sym_assignment_operator, - ACTIONS(205), 2, + ACTIONS(209), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(195), 4, + ACTIONS(205), 4, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(197), 10, + ACTIONS(203), 10, anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, @@ -6789,15 +7046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [5717] = 4, - STATE(91), 1, + [6011] = 4, + STATE(93), 1, sym_logic_operator, - STATE(92), 1, + STATE(94), 1, sym_math_operator, - ACTIONS(177), 2, + ACTIONS(185), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(175), 14, + ACTIONS(183), 14, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -6812,92 +7069,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [5744] = 6, - STATE(91), 1, + [6038] = 6, + STATE(93), 1, sym_logic_operator, - STATE(92), 1, + STATE(94), 1, sym_math_operator, - ACTIONS(183), 2, + ACTIONS(191), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(179), 3, + ACTIONS(187), 3, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(185), 5, + ACTIONS(193), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 6, + 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, - [5775] = 7, - ACTIONS(179), 1, - anon_sym_RBRACE, - ACTIONS(181), 1, - sym_identifier, + [6069] = 4, STATE(83), 1, sym_logic_operator, - STATE(84), 1, + STATE(86), 1, sym_math_operator, - ACTIONS(183), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(185), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [5807] = 7, - ACTIONS(472), 1, - sym_identifier, - ACTIONS(474), 1, - anon_sym_RBRACE, - STATE(83), 1, - sym_logic_operator, - STATE(84), 1, - sym_math_operator, - ACTIONS(183), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(185), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [5839] = 4, - STATE(83), 1, - sym_logic_operator, - STATE(84), 1, - sym_math_operator, - ACTIONS(177), 4, + ACTIONS(185), 4, sym_identifier, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(175), 11, + ACTIONS(183), 11, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -6909,411 +7116,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [5865] = 2, - ACTIONS(249), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(247), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, + [6095] = 7, + ACTIONS(484), 1, + sym_identifier, + ACTIONS(486), 1, 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, - [5886] = 2, - ACTIONS(217), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(215), 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, - [5907] = 6, - ACTIONS(476), 1, - anon_sym_LBRACE, - STATE(91), 1, + STATE(83), 1, sym_logic_operator, - STATE(92), 1, + STATE(86), 1, sym_math_operator, - ACTIONS(183), 2, + ACTIONS(191), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 5, + anon_sym_PIPE_PIPE, + ACTIONS(193), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 6, + ACTIONS(197), 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, - [5936] = 6, - ACTIONS(478), 1, - anon_sym_LBRACE, - STATE(91), 1, + [6127] = 7, + ACTIONS(187), 1, + anon_sym_RBRACE, + ACTIONS(189), 1, + sym_identifier, + STATE(83), 1, sym_logic_operator, - STATE(92), 1, + STATE(86), 1, sym_math_operator, - ACTIONS(183), 2, + ACTIONS(191), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 5, + anon_sym_PIPE_PIPE, + ACTIONS(193), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 6, + ACTIONS(197), 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, - [5965] = 6, - ACTIONS(480), 1, + [6159] = 6, + ACTIONS(488), 1, anon_sym_LBRACE, - STATE(91), 1, + STATE(93), 1, sym_logic_operator, - STATE(92), 1, + STATE(94), 1, sym_math_operator, - ACTIONS(183), 2, + ACTIONS(191), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 5, + ACTIONS(193), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 6, + 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, - [5994] = 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, - [6015] = 2, - ACTIONS(241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(239), 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, - [6036] = 6, - ACTIONS(267), 1, - anon_sym_RBRACE, - STATE(91), 1, - sym_logic_operator, - STATE(92), 1, - sym_math_operator, - ACTIONS(183), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(185), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 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, - [6065] = 2, - ACTIONS(237), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(235), 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, - [6086] = 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, - [6107] = 6, - ACTIONS(482), 1, - anon_sym_LBRACE, - STATE(91), 1, - sym_logic_operator, - STATE(92), 1, - sym_math_operator, - ACTIONS(183), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(185), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 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, - [6136] = 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, - [6157] = 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, - [6178] = 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, - [6199] = 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, - [6220] = 6, - ACTIONS(271), 1, - anon_sym_RBRACE, - STATE(91), 1, - sym_logic_operator, - STATE(92), 1, - sym_math_operator, - ACTIONS(183), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(185), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(189), 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, - [6249] = 2, - ACTIONS(245), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(243), 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, - [6270] = 2, - ACTIONS(201), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(199), 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, - [6291] = 2, - ACTIONS(209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(207), 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, - [6312] = 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, - [6333] = 2, + [6188] = 2, ACTIONS(229), 2, anon_sym_LT, anon_sym_GT, @@ -7332,13 +7208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6354] = 2, - ACTIONS(253), 4, - sym_identifier, + [6209] = 2, + ACTIONS(253), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(251), 11, + ACTIONS(251), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7348,54 +7224,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [6374] = 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, - [6394] = 5, - STATE(90), 1, + [6230] = 6, + ACTIONS(490), 1, + anon_sym_LBRACE, + STATE(93), 1, sym_logic_operator, - STATE(92), 1, + STATE(94), 1, sym_math_operator, - ACTIONS(183), 2, + ACTIONS(191), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 5, + ACTIONS(193), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 6, + 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, - [6420] = 2, - ACTIONS(201), 4, - sym_identifier, + [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, - ACTIONS(199), 11, + 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, @@ -7405,15 +7312,39 @@ 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, - [6440] = 2, - ACTIONS(261), 4, - sym_identifier, + [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, - ACTIONS(259), 11, + 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, @@ -7423,15 +7354,16 @@ 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, - [6460] = 2, - ACTIONS(245), 4, - sym_identifier, + [6388] = 2, + ACTIONS(221), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(243), 11, + ACTIONS(219), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7441,15 +7373,77 @@ 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, + [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, + ACTIONS(496), 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, [6480] = 2, - ACTIONS(209), 4, - sym_identifier, + ACTIONS(273), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(207), 11, + ACTIONS(271), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7459,15 +7453,16 @@ 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, - [6500] = 2, - ACTIONS(221), 4, - sym_identifier, + [6501] = 2, + ACTIONS(201), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(219), 11, + ACTIONS(199), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7477,15 +7472,16 @@ 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, - [6520] = 2, - ACTIONS(249), 4, - sym_identifier, + [6522] = 2, + ACTIONS(241), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(247), 11, + ACTIONS(239), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7495,36 +7491,77 @@ 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, - [6540] = 5, - STATE(91), 1, + [6543] = 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, + [6564] = 2, + ACTIONS(269), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(267), 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, + [6585] = 6, + ACTIONS(279), 1, + anon_sym_RBRACE, + STATE(93), 1, sym_logic_operator, - STATE(92), 1, + STATE(94), 1, sym_math_operator, - ACTIONS(183), 2, + ACTIONS(191), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 5, + ACTIONS(193), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(189), 6, + 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, - [6566] = 2, - ACTIONS(265), 4, - sym_identifier, + [6614] = 2, + ACTIONS(245), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE_PIPE, - ACTIONS(263), 11, + ACTIONS(243), 14, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7534,9 +7571,69 @@ 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, - [6586] = 2, + [6635] = 2, + ACTIONS(237), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(235), 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, + [6656] = 2, + ACTIONS(213), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(211), 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, + [6677] = 5, + STATE(94), 1, + sym_math_operator, + STATE(95), 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, @@ -7554,13 +7651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6606] = 2, - ACTIONS(237), 4, + [6723] = 2, + ACTIONS(273), 4, sym_identifier, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(235), 11, + ACTIONS(271), 11, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7572,13 +7669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6626] = 2, - ACTIONS(217), 4, + [6743] = 2, + ACTIONS(221), 4, sym_identifier, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(215), 11, + ACTIONS(219), 11, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7590,7 +7687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6646] = 2, + [6763] = 2, ACTIONS(241), 4, sym_identifier, anon_sym_LT, @@ -7608,13 +7705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6666] = 2, - ACTIONS(257), 4, + [6783] = 2, + ACTIONS(253), 4, sym_identifier, anon_sym_LT, anon_sym_GT, anon_sym_PIPE_PIPE, - ACTIONS(255), 11, + ACTIONS(251), 11, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -7626,7 +7723,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6686] = 2, + [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, + 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, + [6849] = 2, ACTIONS(233), 4, sym_identifier, anon_sym_LT, @@ -7644,49 +7780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6706] = 3, - ACTIONS(484), 1, - anon_sym_RPAREN, - ACTIONS(245), 2, + [6869] = 2, + ACTIONS(201), 4, + sym_identifier, anon_sym_LT, anon_sym_GT, - ACTIONS(243), 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, - [6727] = 3, - ACTIONS(486), 1, - anon_sym_RPAREN, - ACTIONS(245), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(243), 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, - [6748] = 3, - ACTIONS(275), 1, + ACTIONS(199), 11, anon_sym_RBRACE, - ACTIONS(195), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(197), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -7695,11 +7796,136 @@ 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, - [6769] = 3, - ACTIONS(488), 1, + [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, + ACTIONS(249), 4, + sym_identifier, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + ACTIONS(247), 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, + [7029] = 3, + ACTIONS(498), 1, anon_sym_RPAREN, ACTIONS(245), 2, anon_sym_LT, @@ -7716,15 +7942,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [6790] = 2, - ACTIONS(490), 6, + [7050] = 3, + ACTIONS(283), 1, + anon_sym_RBRACE, + ACTIONS(205), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(203), 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, + [7071] = 3, + ACTIONS(500), 1, + anon_sym_RPAREN, + ACTIONS(245), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(243), 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, + [7092] = 3, + ACTIONS(502), 1, + anon_sym_RPAREN, + ACTIONS(245), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(243), 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, + [7113] = 2, + ACTIONS(504), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - ACTIONS(303), 7, + ACTIONS(322), 7, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, @@ -7732,373 +8012,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, - [6808] = 2, - ACTIONS(492), 6, + [7131] = 2, + ACTIONS(506), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - ACTIONS(494), 6, + ACTIONS(508), 6, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - [6825] = 2, - ACTIONS(498), 5, + [7148] = 2, + ACTIONS(512), 5, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(496), 6, + ACTIONS(510), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - [6841] = 2, - ACTIONS(502), 5, + [7164] = 2, + ACTIONS(516), 5, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(500), 6, + ACTIONS(514), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, anon_sym_table, - [6857] = 3, - ACTIONS(504), 1, - anon_sym_LBRACK, - ACTIONS(507), 1, - anon_sym_into, - STATE(159), 2, - sym_list, - aux_sym_insert_repeat1, - [6868] = 3, + [7180] = 3, ACTIONS(15), 1, anon_sym_LBRACK, - ACTIONS(509), 1, - anon_sym_into, - STATE(159), 2, - sym_list, - aux_sym_insert_repeat1, - [6879] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(511), 1, - anon_sym_into, - STATE(159), 2, - sym_list, - aux_sym_insert_repeat1, - [6890] = 3, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(516), 1, - anon_sym_GT, - STATE(162), 1, - aux_sym_function_repeat1, - [6900] = 3, ACTIONS(518), 1, - sym_identifier, + anon_sym_into, + STATE(164), 2, + sym_list, + aux_sym_insert_repeat1, + [7191] = 3, ACTIONS(520), 1, - anon_sym_GT, - STATE(162), 1, - aux_sym_function_repeat1, - [6910] = 3, - ACTIONS(518), 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(522), 1, + ACTIONS(529), 1, anon_sym_GT, - STATE(162), 1, + STATE(178), 1, aux_sym_function_repeat1, - [6920] = 3, - ACTIONS(518), 1, + [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(524), 1, + ACTIONS(531), 1, anon_sym_GT, - STATE(163), 1, + STATE(167), 1, aux_sym_function_repeat1, - [6930] = 3, - ACTIONS(518), 1, + [7249] = 3, + ACTIONS(527), 1, sym_identifier, - ACTIONS(526), 1, + ACTIONS(533), 1, anon_sym_GT, - STATE(162), 1, + STATE(178), 1, aux_sym_function_repeat1, - [6940] = 3, - ACTIONS(518), 1, - sym_identifier, - ACTIONS(528), 1, - anon_sym_GT, - STATE(162), 1, - aux_sym_function_repeat1, - [6950] = 3, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(532), 1, - anon_sym_RBRACE, - STATE(169), 1, - aux_sym_map_repeat1, - [6960] = 3, - ACTIONS(534), 1, + [7259] = 3, + ACTIONS(535), 1, sym_identifier, ACTIONS(537), 1, anon_sym_RBRACE, - STATE(169), 1, + STATE(181), 1, aux_sym_map_repeat1, - [6970] = 3, - ACTIONS(530), 1, + [7269] = 3, + ACTIONS(527), 1, sym_identifier, ACTIONS(539), 1, - anon_sym_RBRACE, - STATE(176), 1, - aux_sym_map_repeat1, - [6980] = 3, - ACTIONS(530), 1, - sym_identifier, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [7279] = 3, ACTIONS(541), 1, - anon_sym_RBRACE, - STATE(168), 1, - aux_sym_map_repeat1, - [6990] = 3, - ACTIONS(530), 1, sym_identifier, - ACTIONS(543), 1, + ACTIONS(544), 1, anon_sym_RBRACE, - STATE(169), 1, + STATE(173), 1, aux_sym_map_repeat1, - [7000] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(161), 2, - sym_list, - aux_sym_insert_repeat1, - [7008] = 3, - ACTIONS(518), 1, + [7289] = 3, + ACTIONS(527), 1, sym_identifier, - ACTIONS(545), 1, + ACTIONS(546), 1, anon_sym_GT, - STATE(177), 1, + STATE(170), 1, aux_sym_function_repeat1, - [7018] = 3, - ACTIONS(518), 1, + [7299] = 3, + ACTIONS(527), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(548), 1, anon_sym_GT, - STATE(162), 1, + STATE(178), 1, aux_sym_function_repeat1, - [7028] = 3, - ACTIONS(530), 1, + [7309] = 3, + ACTIONS(535), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(550), 1, anon_sym_RBRACE, - STATE(169), 1, + STATE(182), 1, aux_sym_map_repeat1, - [7038] = 3, - ACTIONS(518), 1, + [7319] = 3, + ACTIONS(535), 1, sym_identifier, - ACTIONS(551), 1, + ACTIONS(552), 1, + anon_sym_RBRACE, + STATE(183), 1, + aux_sym_map_repeat1, + [7329] = 3, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(557), 1, anon_sym_GT, - STATE(162), 1, + STATE(178), 1, aux_sym_function_repeat1, - [7048] = 3, - ACTIONS(530), 1, + [7339] = 3, + ACTIONS(527), 1, sym_identifier, - ACTIONS(553), 1, - anon_sym_RBRACE, - STATE(172), 1, - aux_sym_map_repeat1, - [7058] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(160), 2, - sym_list, - aux_sym_insert_repeat1, - [7066] = 3, - ACTIONS(518), 1, - sym_identifier, - ACTIONS(555), 1, + ACTIONS(559), 1, anon_sym_GT, STATE(175), 1, aux_sym_function_repeat1, - [7076] = 2, - ACTIONS(559), 1, - anon_sym_COMMA, - ACTIONS(557), 2, + [7349] = 3, + ACTIONS(527), 1, sym_identifier, - anon_sym_GT, - [7084] = 2, ACTIONS(561), 1, - anon_sym_LT, + anon_sym_GT, + STATE(178), 1, + aux_sym_function_repeat1, + [7359] = 3, + ACTIONS(535), 1, + sym_identifier, ACTIONS(563), 1, - anon_sym_LBRACE, - [7091] = 1, - ACTIONS(516), 2, + anon_sym_RBRACE, + STATE(173), 1, + aux_sym_map_repeat1, + [7369] = 3, + ACTIONS(535), 1, + sym_identifier, + ACTIONS(565), 1, + anon_sym_RBRACE, + STATE(173), 1, + aux_sym_map_repeat1, + [7379] = 3, + ACTIONS(535), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_RBRACE, + STATE(173), 1, + aux_sym_map_repeat1, + [7389] = 2, + ACTIONS(571), 1, + anon_sym_COMMA, + ACTIONS(569), 2, sym_identifier, anon_sym_GT, - [7096] = 2, - ACTIONS(518), 1, + [7397] = 3, + ACTIONS(527), 1, sym_identifier, - STATE(166), 1, - aux_sym_function_repeat1, - [7103] = 2, - ACTIONS(518), 1, - sym_identifier, - STATE(167), 1, - aux_sym_function_repeat1, - [7110] = 2, - ACTIONS(565), 1, - anon_sym_LT, - ACTIONS(567), 1, - anon_sym_LBRACE, - [7117] = 2, - ACTIONS(430), 1, - anon_sym_RBRACE, - ACTIONS(569), 1, - anon_sym_where, - [7124] = 2, - ACTIONS(571), 1, - anon_sym_LT, ACTIONS(573), 1, - anon_sym_LBRACE, - [7131] = 2, - ACTIONS(518), 1, - sym_identifier, - STATE(164), 1, + anon_sym_GT, + STATE(178), 1, aux_sym_function_repeat1, - [7138] = 2, - ACTIONS(424), 1, + [7407] = 2, + ACTIONS(414), 1, anon_sym_RBRACE, ACTIONS(575), 1, anon_sym_where, - [7145] = 1, + [7414] = 2, ACTIONS(577), 1, - anon_sym_in, - [7149] = 1, + anon_sym_LT, ACTIONS(579), 1, anon_sym_LBRACE, - [7153] = 1, + [7421] = 2, ACTIONS(581), 1, - anon_sym_LBRACE, - [7157] = 1, + anon_sym_LT, ACTIONS(583), 1, - anon_sym_from, - [7161] = 1, - ACTIONS(585), 1, - anon_sym_RBRACE, - [7165] = 1, - ACTIONS(587), 1, - anon_sym_RBRACE, - [7169] = 1, - ACTIONS(589), 1, anon_sym_LBRACE, - [7173] = 1, + [7428] = 2, + ACTIONS(585), 1, + anon_sym_LT, + 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, + ACTIONS(589), 1, + anon_sym_where, + [7456] = 2, + ACTIONS(527), 1, + sym_identifier, + STATE(180), 1, + aux_sym_function_repeat1, + [7463] = 1, + ACTIONS(557), 2, + sym_identifier, + anon_sym_GT, + [7468] = 1, ACTIONS(591), 1, anon_sym_RBRACE, - [7177] = 1, + [7472] = 1, ACTIONS(593), 1, - anon_sym_RBRACE, - [7181] = 1, + anon_sym_LBRACE, + [7476] = 1, ACTIONS(595), 1, - sym_identifier, - [7185] = 1, + anon_sym_RBRACE, + [7480] = 1, ACTIONS(597), 1, - sym_identifier, - [7189] = 1, + anon_sym_from, + [7484] = 1, ACTIONS(599), 1, - sym_identifier, - [7193] = 1, + anon_sym_in, + [7488] = 1, ACTIONS(601), 1, anon_sym_RBRACE, - [7197] = 1, + [7492] = 1, ACTIONS(603), 1, - anon_sym_LBRACE, - [7201] = 1, + anon_sym_EQ, + [7496] = 1, ACTIONS(605), 1, - anon_sym_LT, - [7205] = 1, + anon_sym_in, + [7500] = 1, ACTIONS(607), 1, anon_sym_RBRACE, - [7209] = 1, + [7504] = 1, ACTIONS(609), 1, - anon_sym_RBRACE, - [7213] = 1, + anon_sym_LBRACE, + [7508] = 1, ACTIONS(611), 1, - anon_sym_LBRACE, - [7217] = 1, + sym_identifier, + [7512] = 1, ACTIONS(613), 1, - anon_sym_LBRACE, - [7221] = 1, + sym_identifier, + [7516] = 1, ACTIONS(615), 1, - anon_sym_RBRACE, - [7225] = 1, + sym_identifier, + [7520] = 1, ACTIONS(617), 1, - anon_sym_from, - [7229] = 1, + anon_sym_RBRACE, + [7524] = 1, ACTIONS(619), 1, anon_sym_LBRACE, - [7233] = 1, + [7528] = 1, ACTIONS(621), 1, - anon_sym_RBRACE, - [7237] = 1, - ACTIONS(623), 1, sym_identifier, - [7241] = 1, + [7532] = 1, + ACTIONS(623), 1, + anon_sym_RBRACE, + [7536] = 1, ACTIONS(625), 1, - anon_sym_LBRACE, - [7245] = 1, + anon_sym_LT, + [7540] = 1, ACTIONS(627), 1, anon_sym_RBRACE, - [7249] = 1, + [7544] = 1, ACTIONS(629), 1, - anon_sym_LBRACE, - [7253] = 1, + anon_sym_RBRACE, + [7548] = 1, ACTIONS(631), 1, - anon_sym_RBRACE, - [7257] = 1, - ACTIONS(633), 1, anon_sym_LBRACE, - [7261] = 1, + [7552] = 1, + ACTIONS(633), 1, + anon_sym_RBRACE, + [7556] = 1, ACTIONS(635), 1, - sym_identifier, - [7265] = 1, + anon_sym_RBRACE, + [7560] = 1, ACTIONS(637), 1, - anon_sym_RBRACE, - [7269] = 1, + anon_sym_from, + [7564] = 1, ACTIONS(639), 1, - anon_sym_RBRACE, - [7273] = 1, + anon_sym_LBRACE, + [7568] = 1, ACTIONS(641), 1, - ts_builtin_sym_end, - [7277] = 1, + anon_sym_RBRACE, + [7572] = 1, ACTIONS(643), 1, sym_identifier, - [7281] = 1, + [7576] = 1, ACTIONS(645), 1, - anon_sym_EQ, - [7285] = 1, - ACTIONS(647), 1, anon_sym_LBRACE, - [7289] = 1, - ACTIONS(649), 1, + [7580] = 1, + ACTIONS(647), 1, anon_sym_RBRACE, - [7293] = 1, + [7584] = 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + [7588] = 1, ACTIONS(651), 1, - anon_sym_LT, - [7297] = 1, + anon_sym_LBRACE, + [7592] = 1, ACTIONS(653), 1, - sym_identifier, - [7301] = 1, + anon_sym_LBRACE, + [7596] = 1, ACTIONS(655), 1, + sym_identifier, + [7600] = 1, + ACTIONS(657), 1, + anon_sym_RBRACE, + [7604] = 1, + ACTIONS(659), 1, + ts_builtin_sym_end, + [7608] = 1, + ACTIONS(661), 1, + anon_sym_RBRACE, + [7612] = 1, + ACTIONS(663), 1, + anon_sym_RBRACE, + [7616] = 1, + ACTIONS(665), 1, + anon_sym_LBRACE, + [7620] = 1, + ACTIONS(667), 1, + anon_sym_LBRACE, + [7624] = 1, + ACTIONS(669), 1, + sym_identifier, + [7628] = 1, + ACTIONS(671), 1, + anon_sym_LT, + [7632] = 1, + ACTIONS(673), 1, + sym_identifier, + [7636] = 1, + ACTIONS(675), 1, anon_sym_LT, }; @@ -8107,536 +8396,552 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3)] = 76, [SMALL_STATE(4)] = 152, [SMALL_STATE(5)] = 228, - [SMALL_STATE(6)] = 320, - [SMALL_STATE(7)] = 412, - [SMALL_STATE(8)] = 501, - [SMALL_STATE(9)] = 589, - [SMALL_STATE(10)] = 647, - [SMALL_STATE(11)] = 735, - [SMALL_STATE(12)] = 823, - [SMALL_STATE(13)] = 911, - [SMALL_STATE(14)] = 999, - [SMALL_STATE(15)] = 1087, - [SMALL_STATE(16)] = 1175, - [SMALL_STATE(17)] = 1263, - [SMALL_STATE(18)] = 1351, - [SMALL_STATE(19)] = 1439, - [SMALL_STATE(20)] = 1527, - [SMALL_STATE(21)] = 1615, - [SMALL_STATE(22)] = 1703, - [SMALL_STATE(23)] = 1791, - [SMALL_STATE(24)] = 1875, - [SMALL_STATE(25)] = 1959, - [SMALL_STATE(26)] = 2043, - [SMALL_STATE(27)] = 2127, - [SMALL_STATE(28)] = 2211, - [SMALL_STATE(29)] = 2258, - [SMALL_STATE(30)] = 2313, - [SMALL_STATE(31)] = 2383, - [SMALL_STATE(32)] = 2425, - [SMALL_STATE(33)] = 2473, - [SMALL_STATE(34)] = 2515, - [SMALL_STATE(35)] = 2585, - [SMALL_STATE(36)] = 2655, - [SMALL_STATE(37)] = 2696, - [SMALL_STATE(38)] = 2737, - [SMALL_STATE(39)] = 2778, - [SMALL_STATE(40)] = 2819, - [SMALL_STATE(41)] = 2860, - [SMALL_STATE(42)] = 2901, - [SMALL_STATE(43)] = 2942, - [SMALL_STATE(44)] = 2983, - [SMALL_STATE(45)] = 3024, - [SMALL_STATE(46)] = 3065, - [SMALL_STATE(47)] = 3106, - [SMALL_STATE(48)] = 3147, - [SMALL_STATE(49)] = 3188, - [SMALL_STATE(50)] = 3240, - [SMALL_STATE(51)] = 3292, - [SMALL_STATE(52)] = 3334, - [SMALL_STATE(53)] = 3382, - [SMALL_STATE(54)] = 3426, - [SMALL_STATE(55)] = 3464, - [SMALL_STATE(56)] = 3518, - [SMALL_STATE(57)] = 3556, - [SMALL_STATE(58)] = 3609, - [SMALL_STATE(59)] = 3662, - [SMALL_STATE(60)] = 3715, - [SMALL_STATE(61)] = 3768, - [SMALL_STATE(62)] = 3821, - [SMALL_STATE(63)] = 3874, - [SMALL_STATE(64)] = 3927, - [SMALL_STATE(65)] = 3980, - [SMALL_STATE(66)] = 4033, - [SMALL_STATE(67)] = 4086, - [SMALL_STATE(68)] = 4139, - [SMALL_STATE(69)] = 4192, - [SMALL_STATE(70)] = 4225, - [SMALL_STATE(71)] = 4278, - [SMALL_STATE(72)] = 4331, - [SMALL_STATE(73)] = 4384, - [SMALL_STATE(74)] = 4437, - [SMALL_STATE(75)] = 4490, - [SMALL_STATE(76)] = 4543, - [SMALL_STATE(77)] = 4596, - [SMALL_STATE(78)] = 4645, - [SMALL_STATE(79)] = 4692, - [SMALL_STATE(80)] = 4739, - [SMALL_STATE(81)] = 4786, - [SMALL_STATE(82)] = 4833, - [SMALL_STATE(83)] = 4880, - [SMALL_STATE(84)] = 4927, - [SMALL_STATE(85)] = 4974, - [SMALL_STATE(86)] = 5021, - [SMALL_STATE(87)] = 5070, - [SMALL_STATE(88)] = 5117, - [SMALL_STATE(89)] = 5144, - [SMALL_STATE(90)] = 5191, - [SMALL_STATE(91)] = 5238, - [SMALL_STATE(92)] = 5285, - [SMALL_STATE(93)] = 5332, - [SMALL_STATE(94)] = 5359, - [SMALL_STATE(95)] = 5387, - [SMALL_STATE(96)] = 5415, - [SMALL_STATE(97)] = 5440, - [SMALL_STATE(98)] = 5465, - [SMALL_STATE(99)] = 5490, - [SMALL_STATE(100)] = 5515, - [SMALL_STATE(101)] = 5540, - [SMALL_STATE(102)] = 5565, - [SMALL_STATE(103)] = 5590, - [SMALL_STATE(104)] = 5615, - [SMALL_STATE(105)] = 5640, - [SMALL_STATE(106)] = 5665, - [SMALL_STATE(107)] = 5688, - [SMALL_STATE(108)] = 5717, - [SMALL_STATE(109)] = 5744, - [SMALL_STATE(110)] = 5775, - [SMALL_STATE(111)] = 5807, - [SMALL_STATE(112)] = 5839, - [SMALL_STATE(113)] = 5865, - [SMALL_STATE(114)] = 5886, - [SMALL_STATE(115)] = 5907, - [SMALL_STATE(116)] = 5936, - [SMALL_STATE(117)] = 5965, - [SMALL_STATE(118)] = 5994, - [SMALL_STATE(119)] = 6015, - [SMALL_STATE(120)] = 6036, - [SMALL_STATE(121)] = 6065, - [SMALL_STATE(122)] = 6086, - [SMALL_STATE(123)] = 6107, - [SMALL_STATE(124)] = 6136, - [SMALL_STATE(125)] = 6157, - [SMALL_STATE(126)] = 6178, - [SMALL_STATE(127)] = 6199, - [SMALL_STATE(128)] = 6220, - [SMALL_STATE(129)] = 6249, - [SMALL_STATE(130)] = 6270, - [SMALL_STATE(131)] = 6291, - [SMALL_STATE(132)] = 6312, - [SMALL_STATE(133)] = 6333, - [SMALL_STATE(134)] = 6354, - [SMALL_STATE(135)] = 6374, - [SMALL_STATE(136)] = 6394, - [SMALL_STATE(137)] = 6420, - [SMALL_STATE(138)] = 6440, - [SMALL_STATE(139)] = 6460, - [SMALL_STATE(140)] = 6480, - [SMALL_STATE(141)] = 6500, - [SMALL_STATE(142)] = 6520, - [SMALL_STATE(143)] = 6540, - [SMALL_STATE(144)] = 6566, - [SMALL_STATE(145)] = 6586, - [SMALL_STATE(146)] = 6606, - [SMALL_STATE(147)] = 6626, - [SMALL_STATE(148)] = 6646, - [SMALL_STATE(149)] = 6666, - [SMALL_STATE(150)] = 6686, - [SMALL_STATE(151)] = 6706, - [SMALL_STATE(152)] = 6727, - [SMALL_STATE(153)] = 6748, - [SMALL_STATE(154)] = 6769, - [SMALL_STATE(155)] = 6790, - [SMALL_STATE(156)] = 6808, - [SMALL_STATE(157)] = 6825, - [SMALL_STATE(158)] = 6841, - [SMALL_STATE(159)] = 6857, - [SMALL_STATE(160)] = 6868, - [SMALL_STATE(161)] = 6879, - [SMALL_STATE(162)] = 6890, - [SMALL_STATE(163)] = 6900, - [SMALL_STATE(164)] = 6910, - [SMALL_STATE(165)] = 6920, - [SMALL_STATE(166)] = 6930, - [SMALL_STATE(167)] = 6940, - [SMALL_STATE(168)] = 6950, - [SMALL_STATE(169)] = 6960, - [SMALL_STATE(170)] = 6970, - [SMALL_STATE(171)] = 6980, - [SMALL_STATE(172)] = 6990, - [SMALL_STATE(173)] = 7000, - [SMALL_STATE(174)] = 7008, - [SMALL_STATE(175)] = 7018, - [SMALL_STATE(176)] = 7028, - [SMALL_STATE(177)] = 7038, - [SMALL_STATE(178)] = 7048, - [SMALL_STATE(179)] = 7058, - [SMALL_STATE(180)] = 7066, - [SMALL_STATE(181)] = 7076, - [SMALL_STATE(182)] = 7084, - [SMALL_STATE(183)] = 7091, - [SMALL_STATE(184)] = 7096, - [SMALL_STATE(185)] = 7103, - [SMALL_STATE(186)] = 7110, - [SMALL_STATE(187)] = 7117, - [SMALL_STATE(188)] = 7124, - [SMALL_STATE(189)] = 7131, - [SMALL_STATE(190)] = 7138, - [SMALL_STATE(191)] = 7145, - [SMALL_STATE(192)] = 7149, - [SMALL_STATE(193)] = 7153, - [SMALL_STATE(194)] = 7157, - [SMALL_STATE(195)] = 7161, - [SMALL_STATE(196)] = 7165, - [SMALL_STATE(197)] = 7169, - [SMALL_STATE(198)] = 7173, - [SMALL_STATE(199)] = 7177, - [SMALL_STATE(200)] = 7181, - [SMALL_STATE(201)] = 7185, - [SMALL_STATE(202)] = 7189, - [SMALL_STATE(203)] = 7193, - [SMALL_STATE(204)] = 7197, - [SMALL_STATE(205)] = 7201, - [SMALL_STATE(206)] = 7205, - [SMALL_STATE(207)] = 7209, - [SMALL_STATE(208)] = 7213, - [SMALL_STATE(209)] = 7217, - [SMALL_STATE(210)] = 7221, - [SMALL_STATE(211)] = 7225, - [SMALL_STATE(212)] = 7229, - [SMALL_STATE(213)] = 7233, - [SMALL_STATE(214)] = 7237, - [SMALL_STATE(215)] = 7241, - [SMALL_STATE(216)] = 7245, - [SMALL_STATE(217)] = 7249, - [SMALL_STATE(218)] = 7253, - [SMALL_STATE(219)] = 7257, - [SMALL_STATE(220)] = 7261, - [SMALL_STATE(221)] = 7265, - [SMALL_STATE(222)] = 7269, - [SMALL_STATE(223)] = 7273, - [SMALL_STATE(224)] = 7277, - [SMALL_STATE(225)] = 7281, - [SMALL_STATE(226)] = 7285, - [SMALL_STATE(227)] = 7289, - [SMALL_STATE(228)] = 7293, - [SMALL_STATE(229)] = 7297, - [SMALL_STATE(230)] = 7301, + [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, }; 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(101), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [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 = true}}, REDUCE(aux_sym_root_repeat1, 2), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(32), - [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(101), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(48), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(188), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(205), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(89), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(201), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(200), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(179), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(209), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(32), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(101), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(3), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(40), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(40), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(48), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(70), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(188), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(171), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(205), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(89), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(80), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(201), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(200), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(179), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(209), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [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 = false}}, SHIFT(106), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [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_call, 4), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 1), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 1), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(43), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(3), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(40), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(40), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(48), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(70), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(188), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(171), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(205), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(43), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(3), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(40), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(40), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(48), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(70), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(188), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(171), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(205), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(78), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), SHIFT_REPEAT(70), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(181), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(225), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [641] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [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), + [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), + [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), }; #ifdef __cplusplus