dust/tree-sitter-dust/src/parser.c

8596 lines
220 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2023-10-21 17:04:17 +00:00
#define STATE_COUNT 256
#define LARGE_STATE_COUNT 31
#define SYMBOL_COUNT 89
#define ALIAS_COUNT 0
2023-10-21 17:04:17 +00:00
#define TOKEN_COUNT 50
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
2023-10-21 17:04:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 9
#define PRODUCTION_ID_COUNT 1
enum {
sym_identifier = 1,
aux_sym_comment_token1 = 2,
anon_sym_LPAREN = 3,
anon_sym_RPAREN = 4,
sym_integer = 5,
sym_float = 6,
sym_string = 7,
anon_sym_true = 8,
anon_sym_false = 9,
anon_sym_LBRACK = 10,
anon_sym_COMMA = 11,
anon_sym_RBRACK = 12,
anon_sym_function = 13,
anon_sym_LT = 14,
anon_sym_GT = 15,
anon_sym_LBRACE = 16,
anon_sym_RBRACE = 17,
anon_sym_table = 18,
anon_sym_EQ = 19,
anon_sym_PLUS = 20,
anon_sym_DASH = 21,
anon_sym_STAR = 22,
anon_sym_SLASH = 23,
anon_sym_PERCENT = 24,
anon_sym_EQ_EQ = 25,
anon_sym_BANG_EQ = 26,
anon_sym_AMP_AMP = 27,
anon_sym_PIPE_PIPE = 28,
anon_sym_GT_EQ = 29,
anon_sym_LT_EQ = 30,
anon_sym_PLUS_EQ = 31,
anon_sym_DASH_EQ = 32,
anon_sym_if = 33,
anon_sym_elseif = 34,
anon_sym_else = 35,
anon_sym_while = 36,
anon_sym_for = 37,
anon_sym_in = 38,
anon_sym_transform = 39,
anon_sym_filter = 40,
2023-10-18 22:18:41 +00:00
anon_sym_find = 41,
2023-10-19 01:50:45 +00:00
anon_sym_remove = 42,
2023-10-21 17:04:17 +00:00
anon_sym_select = 43,
anon_sym_from = 44,
anon_sym_insert = 45,
anon_sym_into = 46,
anon_sym_where = 47,
anon_sym_async = 48,
anon_sym_assert = 49,
sym_root = 50,
sym_item = 51,
sym_statement = 52,
sym_comment = 53,
sym_expression = 54,
sym__expression_kind = 55,
sym_value = 56,
sym_boolean = 57,
sym_list = 58,
sym_function = 59,
sym_table = 60,
sym_map = 61,
sym_math = 62,
sym_math_operator = 63,
sym_logic = 64,
sym_logic_operator = 65,
sym_assignment = 66,
sym_assignment_operator = 67,
sym_if_else = 68,
sym_if = 69,
sym_else_if = 70,
sym_else = 71,
sym_function_call = 72,
sym_while = 73,
sym_for = 74,
sym_transform = 75,
sym_filter = 76,
sym_find = 77,
sym_remove = 78,
sym_select = 79,
sym_insert = 80,
sym_async = 81,
aux_sym_root_repeat1 = 82,
aux_sym_item_repeat1 = 83,
aux_sym_list_repeat1 = 84,
aux_sym_function_repeat1 = 85,
aux_sym_map_repeat1 = 86,
aux_sym_if_else_repeat1 = 87,
aux_sym_insert_repeat1 = 88,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[aux_sym_comment_token1] = "comment_token1",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_table] = "table",
[anon_sym_EQ] = "=",
[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] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_in] = "in",
[anon_sym_transform] = "transform",
[anon_sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[anon_sym_find] = "find",
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = "remove",
[anon_sym_select] = "select",
[anon_sym_from] = "from",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
2023-10-21 17:04:17 +00:00
[anon_sym_where] = "where",
[anon_sym_async] = "async",
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = "assert",
[sym_root] = "root",
[sym_item] = "item",
[sym_statement] = "statement",
[sym_comment] = "comment",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_function] = "function",
[sym_table] = "table",
[sym_map] = "map",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_function_call] = "function_call",
[sym_while] = "while",
[sym_for] = "for",
[sym_transform] = "transform",
[sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[sym_find] = "find",
2023-10-19 01:50:45 +00:00
[sym_remove] = "remove",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_async] = "async",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_item_repeat1] = "item_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
[aux_sym_insert_repeat1] = "insert_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[aux_sym_comment_token1] = aux_sym_comment_token1,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_table] = anon_sym_table,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_if] = anon_sym_if,
[anon_sym_elseif] = anon_sym_elseif,
[anon_sym_else] = anon_sym_else,
[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_filter] = anon_sym_filter,
2023-10-18 22:18:41 +00:00
[anon_sym_find] = anon_sym_find,
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = anon_sym_remove,
[anon_sym_select] = anon_sym_select,
[anon_sym_from] = anon_sym_from,
[anon_sym_insert] = anon_sym_insert,
[anon_sym_into] = anon_sym_into,
2023-10-21 17:04:17 +00:00
[anon_sym_where] = anon_sym_where,
[anon_sym_async] = anon_sym_async,
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = anon_sym_assert,
[sym_root] = sym_root,
[sym_item] = sym_item,
[sym_statement] = sym_statement,
[sym_comment] = sym_comment,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_function] = sym_function,
[sym_table] = sym_table,
[sym_map] = sym_map,
[sym_math] = sym_math,
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_function_call] = sym_function_call,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_transform] = sym_transform,
[sym_filter] = sym_filter,
2023-10-18 22:18:41 +00:00
[sym_find] = sym_find,
2023-10-19 01:50:45 +00:00
[sym_remove] = sym_remove,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_async] = sym_async,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_item_repeat1] = aux_sym_item_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
[aux_sym_insert_repeat1] = aux_sym_insert_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[aux_sym_comment_token1] = {
.visible = false,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_function] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_elseif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_transform] = {
.visible = true,
.named = false,
},
[anon_sym_filter] = {
.visible = true,
.named = false,
},
2023-10-18 22:18:41 +00:00
[anon_sym_find] = {
.visible = true,
.named = false,
},
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_select] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_from] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_insert] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_into] = {
.visible = true,
.named = false,
},
[anon_sym_where] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_async] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
[sym_item] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[sym_value] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
2023-10-18 22:18:41 +00:00
[sym_find] = {
.visible = true,
.named = true,
},
2023-10-19 01:50:45 +00:00
[sym_remove] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_async] = {
.visible = true,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_item_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_insert_repeat1] = {
.visible = false,
.named = false,
},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
2023-10-18 22:18:41 +00:00
[5] = 5,
[6] = 6,
[7] = 7,
[8] = 8,
2023-10-18 23:26:49 +00:00
[9] = 9,
[10] = 10,
2023-10-21 17:04:17 +00:00
[11] = 8,
[12] = 9,
[13] = 10,
[14] = 8,
[15] = 15,
2023-10-19 01:50:45 +00:00
[16] = 16,
2023-10-21 17:04:17 +00:00
[17] = 17,
[18] = 18,
[19] = 19,
[20] = 20,
[21] = 10,
[22] = 9,
2023-10-19 01:50:45 +00:00
[23] = 23,
2023-10-21 17:04:17 +00:00
[24] = 6,
2023-10-18 23:26:49 +00:00
[25] = 25,
[26] = 26,
[27] = 27,
[28] = 28,
2023-10-21 17:04:17 +00:00
[29] = 29,
[30] = 26,
[31] = 31,
[32] = 32,
[33] = 33,
[34] = 34,
[35] = 35,
[36] = 36,
[37] = 37,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
[48] = 48,
[49] = 49,
2023-10-18 22:18:41 +00:00
[50] = 50,
2023-10-19 01:50:45 +00:00
[51] = 51,
[52] = 51,
2023-10-21 17:04:17 +00:00
[53] = 51,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
2023-10-18 22:18:41 +00:00
[64] = 64,
[65] = 65,
[66] = 66,
2023-10-19 01:50:45 +00:00
[67] = 67,
[68] = 68,
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
2023-10-21 17:04:17 +00:00
[73] = 73,
2023-10-19 01:50:45 +00:00
[74] = 74,
2023-10-18 23:26:49 +00:00
[75] = 75,
2023-10-21 17:04:17 +00:00
[76] = 76,
[77] = 68,
[78] = 76,
2023-10-18 23:26:49 +00:00
[79] = 79,
2023-10-21 17:04:17 +00:00
[80] = 74,
[81] = 81,
2023-10-18 23:26:49 +00:00
[82] = 82,
2023-10-21 17:04:17 +00:00
[83] = 68,
[84] = 84,
[85] = 76,
[86] = 86,
[87] = 74,
[88] = 88,
[89] = 89,
[90] = 90,
[91] = 91,
[92] = 92,
[93] = 93,
2023-10-21 17:04:17 +00:00
[94] = 90,
[95] = 95,
2023-10-19 01:50:45 +00:00
[96] = 96,
[97] = 97,
[98] = 98,
2023-10-18 22:18:41 +00:00
[99] = 99,
2023-10-19 01:50:45 +00:00
[100] = 100,
[101] = 101,
[102] = 102,
2023-10-21 17:04:17 +00:00
[103] = 103,
[104] = 104,
[105] = 101,
[106] = 106,
[107] = 89,
[108] = 106,
[109] = 89,
[110] = 100,
[111] = 100,
[112] = 88,
[113] = 102,
[114] = 90,
[115] = 102,
2023-10-19 01:50:45 +00:00
[116] = 33,
2023-10-21 17:04:17 +00:00
[117] = 31,
[118] = 32,
[119] = 35,
[120] = 33,
[121] = 32,
[122] = 122,
[123] = 50,
[124] = 49,
[125] = 31,
2023-10-18 22:18:41 +00:00
[126] = 126,
2023-10-21 17:04:17 +00:00
[127] = 127,
[128] = 34,
[129] = 37,
[130] = 42,
[131] = 39,
2023-10-19 01:50:45 +00:00
[132] = 36,
2023-10-21 17:04:17 +00:00
[133] = 38,
[134] = 48,
[135] = 40,
[136] = 43,
2023-10-19 01:50:45 +00:00
[137] = 137,
2023-10-21 17:04:17 +00:00
[138] = 44,
[139] = 41,
[140] = 140,
[141] = 46,
[142] = 142,
[143] = 45,
[144] = 144,
2023-10-19 01:50:45 +00:00
[145] = 145,
2023-10-21 17:04:17 +00:00
[146] = 146,
[147] = 47,
[148] = 43,
[149] = 47,
[150] = 45,
2023-10-19 01:50:45 +00:00
[151] = 46,
2023-10-21 17:04:17 +00:00
[152] = 44,
[153] = 41,
[154] = 40,
[155] = 38,
[156] = 36,
[157] = 157,
[158] = 39,
[159] = 157,
[160] = 42,
[161] = 37,
[162] = 34,
[163] = 54,
2023-10-19 01:50:45 +00:00
[164] = 164,
2023-10-21 17:04:17 +00:00
[165] = 164,
[166] = 164,
[167] = 167,
[168] = 168,
2023-10-21 17:04:17 +00:00
[169] = 169,
[170] = 170,
2023-10-21 17:04:17 +00:00
[171] = 170,
2023-10-18 23:26:49 +00:00
[172] = 172,
2023-10-21 17:04:17 +00:00
[173] = 173,
[174] = 174,
2023-10-19 01:50:45 +00:00
[175] = 175,
2023-10-21 17:04:17 +00:00
[176] = 173,
[177] = 174,
2023-10-19 01:50:45 +00:00
[178] = 178,
2023-10-18 23:26:49 +00:00
[179] = 179,
2023-10-21 17:04:17 +00:00
[180] = 175,
[181] = 181,
[182] = 182,
[183] = 179,
[184] = 184,
[185] = 185,
2023-10-19 01:50:45 +00:00
[186] = 179,
2023-10-21 17:04:17 +00:00
[187] = 182,
[188] = 178,
[189] = 174,
2023-10-19 01:50:45 +00:00
[190] = 190,
2023-10-21 17:04:17 +00:00
[191] = 178,
[192] = 181,
[193] = 193,
[194] = 190,
[195] = 173,
[196] = 175,
[197] = 197,
2023-10-19 01:50:45 +00:00
[198] = 61,
2023-10-21 17:04:17 +00:00
[199] = 197,
2023-10-18 23:26:49 +00:00
[200] = 200,
2023-10-21 17:04:17 +00:00
[201] = 200,
[202] = 200,
[203] = 197,
2023-10-19 01:50:45 +00:00
[204] = 204,
2023-10-21 17:04:17 +00:00
[205] = 205,
[206] = 206,
[207] = 207,
2023-10-19 01:50:45 +00:00
[208] = 208,
[209] = 209,
2023-10-19 01:50:45 +00:00
[210] = 210,
[211] = 211,
2023-10-18 22:18:41 +00:00
[212] = 212,
2023-10-21 17:04:17 +00:00
[213] = 206,
[214] = 214,
2023-10-21 17:04:17 +00:00
[215] = 215,
2023-10-18 22:18:41 +00:00
[216] = 216,
2023-10-21 17:04:17 +00:00
[217] = 217,
[218] = 218,
[219] = 219,
[220] = 220,
2023-10-18 22:18:41 +00:00
[221] = 221,
2023-10-21 17:04:17 +00:00
[222] = 222,
[223] = 210,
[224] = 212,
[225] = 206,
[226] = 215,
[227] = 211,
2023-10-18 22:18:41 +00:00
[228] = 228,
2023-10-19 01:50:45 +00:00
[229] = 229,
[230] = 230,
2023-10-21 17:04:17 +00:00
[231] = 231,
[232] = 232,
[233] = 215,
[234] = 234,
[235] = 210,
[236] = 236,
2023-10-18 23:26:49 +00:00
[237] = 237,
2023-10-21 17:04:17 +00:00
[238] = 238,
[239] = 239,
[240] = 240,
[241] = 236,
[242] = 209,
[243] = 205,
[244] = 214,
[245] = 230,
2023-10-19 01:50:45 +00:00
[246] = 246,
2023-10-21 17:04:17 +00:00
[247] = 236,
[248] = 205,
[249] = 230,
[250] = 250,
[251] = 251,
[252] = 252,
[253] = 253,
[254] = 254,
[255] = 255,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(16);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(43);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(23);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(6);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(6);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(39);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(7);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 3:
if (lookahead == '"') ADVANCE(29);
if (lookahead != 0) ADVANCE(3);
END_STATE();
case 4:
if (lookahead == '&') ADVANCE(49);
END_STATE();
case 5:
if (lookahead == '\'') ADVANCE(29);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '=') ADVANCE(48);
END_STATE();
case 7:
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 8:
if (lookahead == '`') ADVANCE(29);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == 'f') ADVANCE(56);
END_STATE();
case 10:
if (lookahead == 'i') ADVANCE(9);
END_STATE();
case 11:
if (lookahead == '|') ADVANCE(50);
END_STATE();
case 12:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 13:
if (eof) ADVANCE(16);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(43);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(13)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 14:
if (eof) ADVANCE(16);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '>') ADVANCE(34);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(14)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(26);
END_STATE();
case 15:
if (eof) ADVANCE(16);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '[') ADVANCE(30);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(23);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(15)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(26);
END_STATE();
case 16:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 17:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '#') ADVANCE(17);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(18);
END_STATE();
case 18:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(18);
END_STATE();
case 19:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 20:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 21:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 22:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(57);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 23:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(24);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 24:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(22);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 25:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '|') ADVANCE(51);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 26:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 27:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(28);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 28:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
END_STATE();
case 29:
ACCEPT_TOKEN(sym_string);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(53);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(52);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(54);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(55);
END_STATE();
case 43:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(55);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 44:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 46:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 47:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 50:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_else);
if (lookahead == ' ') ADVANCE(10);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'a') ADVANCE(1);
2023-10-21 17:04:17 +00:00
if (lookahead == 'f') ADVANCE(2);
if (lookahead == 'i') ADVANCE(3);
if (lookahead == 'r') ADVANCE(4);
if (lookahead == 's') ADVANCE(5);
if (lookahead == 't') ADVANCE(6);
if (lookahead == 'w') ADVANCE(7);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-10-21 17:04:17 +00:00
if (lookahead == 's') ADVANCE(8);
END_STATE();
case 2:
2023-10-21 17:04:17 +00:00
if (lookahead == 'a') ADVANCE(9);
if (lookahead == 'i') ADVANCE(10);
if (lookahead == 'o') ADVANCE(11);
if (lookahead == 'r') ADVANCE(12);
if (lookahead == 'u') ADVANCE(13);
END_STATE();
case 3:
2023-10-21 17:04:17 +00:00
if (lookahead == 'f') ADVANCE(14);
if (lookahead == 'n') ADVANCE(15);
END_STATE();
case 4:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(16);
END_STATE();
case 5:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(17);
END_STATE();
case 6:
2023-10-21 17:04:17 +00:00
if (lookahead == 'a') ADVANCE(18);
if (lookahead == 'r') ADVANCE(19);
END_STATE();
case 7:
2023-10-21 17:04:17 +00:00
if (lookahead == 'h') ADVANCE(20);
END_STATE();
case 8:
2023-10-21 17:04:17 +00:00
if (lookahead == 's') ADVANCE(21);
if (lookahead == 'y') ADVANCE(22);
END_STATE();
case 9:
2023-10-21 17:04:17 +00:00
if (lookahead == 'l') ADVANCE(23);
END_STATE();
case 10:
2023-10-21 17:04:17 +00:00
if (lookahead == 'l') ADVANCE(24);
if (lookahead == 'n') ADVANCE(25);
END_STATE();
case 11:
2023-10-21 17:04:17 +00:00
if (lookahead == 'r') ADVANCE(26);
END_STATE();
case 12:
2023-10-21 17:04:17 +00:00
if (lookahead == 'o') ADVANCE(27);
END_STATE();
case 13:
2023-10-21 17:04:17 +00:00
if (lookahead == 'n') ADVANCE(28);
END_STATE();
case 14:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 15:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 's') ADVANCE(29);
if (lookahead == 't') ADVANCE(30);
END_STATE();
case 16:
2023-10-21 17:04:17 +00:00
if (lookahead == 'm') ADVANCE(31);
END_STATE();
case 17:
2023-10-21 17:04:17 +00:00
if (lookahead == 'l') ADVANCE(32);
END_STATE();
case 18:
2023-10-21 17:04:17 +00:00
if (lookahead == 'b') ADVANCE(33);
END_STATE();
case 19:
2023-10-21 17:04:17 +00:00
if (lookahead == 'a') ADVANCE(34);
if (lookahead == 'u') ADVANCE(35);
END_STATE();
case 20:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(36);
if (lookahead == 'i') ADVANCE(37);
END_STATE();
case 21:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(38);
END_STATE();
case 22:
2023-10-21 17:04:17 +00:00
if (lookahead == 'n') ADVANCE(39);
END_STATE();
case 23:
2023-10-21 17:04:17 +00:00
if (lookahead == 's') ADVANCE(40);
END_STATE();
case 24:
2023-10-21 17:04:17 +00:00
if (lookahead == 't') ADVANCE(41);
END_STATE();
case 25:
2023-10-21 17:04:17 +00:00
if (lookahead == 'd') ADVANCE(42);
END_STATE();
case 26:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 27:
2023-10-21 17:04:17 +00:00
if (lookahead == 'm') ADVANCE(43);
END_STATE();
case 28:
2023-10-21 17:04:17 +00:00
if (lookahead == 'c') ADVANCE(44);
END_STATE();
case 29:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(45);
END_STATE();
case 30:
2023-10-21 17:04:17 +00:00
if (lookahead == 'o') ADVANCE(46);
END_STATE();
case 31:
2023-10-21 17:04:17 +00:00
if (lookahead == 'o') ADVANCE(47);
END_STATE();
case 32:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(48);
END_STATE();
case 33:
2023-10-21 17:04:17 +00:00
if (lookahead == 'l') ADVANCE(49);
END_STATE();
case 34:
2023-10-21 17:04:17 +00:00
if (lookahead == 'n') ADVANCE(50);
END_STATE();
case 35:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(51);
END_STATE();
case 36:
2023-10-21 17:04:17 +00:00
if (lookahead == 'r') ADVANCE(52);
END_STATE();
case 37:
2023-10-21 17:04:17 +00:00
if (lookahead == 'l') ADVANCE(53);
END_STATE();
case 38:
2023-10-21 17:04:17 +00:00
if (lookahead == 'r') ADVANCE(54);
END_STATE();
case 39:
2023-10-21 17:04:17 +00:00
if (lookahead == 'c') ADVANCE(55);
END_STATE();
case 40:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(56);
END_STATE();
case 41:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(57);
END_STATE();
case 42:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_find);
END_STATE();
case 43:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_from);
END_STATE();
case 44:
2023-10-21 17:04:17 +00:00
if (lookahead == 't') ADVANCE(58);
END_STATE();
case 45:
2023-10-21 17:04:17 +00:00
if (lookahead == 'r') ADVANCE(59);
END_STATE();
case 46:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_into);
END_STATE();
case 47:
2023-10-21 17:04:17 +00:00
if (lookahead == 'v') ADVANCE(60);
END_STATE();
case 48:
2023-10-21 17:04:17 +00:00
if (lookahead == 'c') ADVANCE(61);
END_STATE();
case 49:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(62);
END_STATE();
case 50:
2023-10-21 17:04:17 +00:00
if (lookahead == 's') ADVANCE(63);
END_STATE();
case 51:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 52:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(64);
END_STATE();
case 53:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(65);
END_STATE();
case 54:
2023-10-21 17:04:17 +00:00
if (lookahead == 't') ADVANCE(66);
END_STATE();
case 55:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 56:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 57:
2023-10-21 17:04:17 +00:00
if (lookahead == 'r') ADVANCE(67);
END_STATE();
case 58:
2023-10-21 17:04:17 +00:00
if (lookahead == 'i') ADVANCE(68);
END_STATE();
case 59:
2023-10-21 17:04:17 +00:00
if (lookahead == 't') ADVANCE(69);
END_STATE();
case 60:
2023-10-21 17:04:17 +00:00
if (lookahead == 'e') ADVANCE(70);
END_STATE();
case 61:
2023-10-21 17:04:17 +00:00
if (lookahead == 't') ADVANCE(71);
END_STATE();
case 62:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_table);
END_STATE();
case 63:
2023-10-21 17:04:17 +00:00
if (lookahead == 'f') ADVANCE(72);
END_STATE();
case 64:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_where);
END_STATE();
case 65:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 66:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_assert);
END_STATE();
case 67:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_filter);
END_STATE();
case 68:
2023-10-21 17:04:17 +00:00
if (lookahead == 'o') ADVANCE(73);
END_STATE();
case 69:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_insert);
END_STATE();
case 70:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_remove);
END_STATE();
case 71:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_select);
END_STATE();
case 72:
2023-10-21 17:04:17 +00:00
if (lookahead == 'o') ADVANCE(74);
END_STATE();
case 73:
2023-10-21 17:04:17 +00:00
if (lookahead == 'n') ADVANCE(75);
END_STATE();
case 74:
2023-10-21 17:04:17 +00:00
if (lookahead == 'r') ADVANCE(76);
END_STATE();
case 75:
2023-10-21 17:04:17 +00:00
ACCEPT_TOKEN(anon_sym_function);
END_STATE();
case 76:
2023-10-21 17:04:17 +00:00
if (lookahead == 'm') ADVANCE(77);
END_STATE();
case 77:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_transform);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 14},
[2] = {.lex_state = 14},
[3] = {.lex_state = 14},
[4] = {.lex_state = 14},
[5] = {.lex_state = 14},
[6] = {.lex_state = 14},
[7] = {.lex_state = 14},
[8] = {.lex_state = 14},
[9] = {.lex_state = 14},
[10] = {.lex_state = 14},
[11] = {.lex_state = 14},
[12] = {.lex_state = 14},
[13] = {.lex_state = 14},
[14] = {.lex_state = 14},
[15] = {.lex_state = 14},
[16] = {.lex_state = 14},
[17] = {.lex_state = 14},
[18] = {.lex_state = 14},
[19] = {.lex_state = 14},
[20] = {.lex_state = 14},
[21] = {.lex_state = 14},
[22] = {.lex_state = 14},
[23] = {.lex_state = 14},
[24] = {.lex_state = 14},
[25] = {.lex_state = 14},
[26] = {.lex_state = 14},
[27] = {.lex_state = 14},
[28] = {.lex_state = 14},
[29] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[30] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[31] = {.lex_state = 13},
[32] = {.lex_state = 13},
[33] = {.lex_state = 13},
[34] = {.lex_state = 13},
[35] = {.lex_state = 13},
[36] = {.lex_state = 13},
[37] = {.lex_state = 13},
[38] = {.lex_state = 13},
[39] = {.lex_state = 13},
[40] = {.lex_state = 13},
[41] = {.lex_state = 13},
[42] = {.lex_state = 13},
[43] = {.lex_state = 13},
[44] = {.lex_state = 13},
[45] = {.lex_state = 13},
[46] = {.lex_state = 13},
[47] = {.lex_state = 13},
[48] = {.lex_state = 13},
[49] = {.lex_state = 13},
[50] = {.lex_state = 13},
[51] = {.lex_state = 13},
[52] = {.lex_state = 13},
[53] = {.lex_state = 13},
[54] = {.lex_state = 13},
2023-10-21 17:04:17 +00:00
[55] = {.lex_state = 13},
[56] = {.lex_state = 15},
2023-10-18 22:18:41 +00:00
[57] = {.lex_state = 15},
[58] = {.lex_state = 15},
2023-10-18 23:26:49 +00:00
[59] = {.lex_state = 15},
2023-10-19 01:50:45 +00:00
[60] = {.lex_state = 15},
2023-10-18 23:26:49 +00:00
[61] = {.lex_state = 14},
[62] = {.lex_state = 14},
[63] = {.lex_state = 14},
[64] = {.lex_state = 14},
[65] = {.lex_state = 14},
[66] = {.lex_state = 14},
[67] = {.lex_state = 14},
[68] = {.lex_state = 14},
[69] = {.lex_state = 14},
[70] = {.lex_state = 14},
[71] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[72] = {.lex_state = 14},
[73] = {.lex_state = 14},
[74] = {.lex_state = 14},
[75] = {.lex_state = 14},
[76] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[77] = {.lex_state = 14},
[78] = {.lex_state = 14},
[79] = {.lex_state = 14},
[80] = {.lex_state = 14},
[81] = {.lex_state = 14},
[82] = {.lex_state = 14},
[83] = {.lex_state = 14},
[84] = {.lex_state = 14},
[85] = {.lex_state = 14},
[86] = {.lex_state = 14},
[87] = {.lex_state = 14},
[88] = {.lex_state = 14},
[89] = {.lex_state = 14},
[90] = {.lex_state = 14},
[91] = {.lex_state = 14},
[92] = {.lex_state = 14},
[93] = {.lex_state = 14},
[94] = {.lex_state = 14},
[95] = {.lex_state = 14},
[96] = {.lex_state = 14},
[97] = {.lex_state = 14},
[98] = {.lex_state = 14},
[99] = {.lex_state = 14},
[100] = {.lex_state = 14},
[101] = {.lex_state = 14},
[102] = {.lex_state = 14},
[103] = {.lex_state = 14},
[104] = {.lex_state = 14},
[105] = {.lex_state = 14},
[106] = {.lex_state = 14},
[107] = {.lex_state = 14},
[108] = {.lex_state = 14},
[109] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[110] = {.lex_state = 14},
[111] = {.lex_state = 14},
[112] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[113] = {.lex_state = 14},
[114] = {.lex_state = 14},
[115] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[116] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[117] = {.lex_state = 1},
[118] = {.lex_state = 1},
[119] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[120] = {.lex_state = 2},
2023-10-21 17:04:17 +00:00
[121] = {.lex_state = 2},
[122] = {.lex_state = 2},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[125] = {.lex_state = 2},
[126] = {.lex_state = 1},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 1},
[130] = {.lex_state = 1},
[131] = {.lex_state = 1},
[132] = {.lex_state = 1},
[133] = {.lex_state = 1},
[134] = {.lex_state = 1},
[135] = {.lex_state = 1},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
[139] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
2023-10-18 22:18:41 +00:00
[143] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[144] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[145] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[146] = {.lex_state = 1},
[147] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[148] = {.lex_state = 2},
[149] = {.lex_state = 2},
2023-10-21 17:04:17 +00:00
[150] = {.lex_state = 2},
[151] = {.lex_state = 2},
[152] = {.lex_state = 2},
[153] = {.lex_state = 2},
[154] = {.lex_state = 2},
2023-10-19 01:50:45 +00:00
[155] = {.lex_state = 2},
[156] = {.lex_state = 2},
2023-10-21 17:04:17 +00:00
[157] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[158] = {.lex_state = 2},
[159] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[160] = {.lex_state = 2},
[161] = {.lex_state = 2},
[162] = {.lex_state = 2},
[163] = {.lex_state = 1},
[164] = {.lex_state = 1},
[165] = {.lex_state = 1},
[166] = {.lex_state = 1},
[167] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[168] = {.lex_state = 14},
[169] = {.lex_state = 14},
[170] = {.lex_state = 14},
[171] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[172] = {.lex_state = 14},
[173] = {.lex_state = 14},
[174] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[175] = {.lex_state = 14},
[176] = {.lex_state = 14},
[177] = {.lex_state = 14},
[178] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[179] = {.lex_state = 14},
[180] = {.lex_state = 14},
[181] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[182] = {.lex_state = 0},
[183] = {.lex_state = 14},
[184] = {.lex_state = 14},
[185] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[186] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[187] = {.lex_state = 0},
[188] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[189] = {.lex_state = 14},
[190] = {.lex_state = 14},
[191] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[192] = {.lex_state = 14},
[193] = {.lex_state = 14},
[194] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[195] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[196] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[197] = {.lex_state = 14},
[198] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[199] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[200] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[201] = {.lex_state = 0},
[202] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[203] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[204] = {.lex_state = 14},
[205] = {.lex_state = 0},
[206] = {.lex_state = 0},
[207] = {.lex_state = 0},
[208] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[209] = {.lex_state = 0},
[210] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[211] = {.lex_state = 14},
[212] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[213] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[214] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[215] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[216] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[217] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[218] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[219] = {.lex_state = 0},
[220] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[221] = {.lex_state = 0},
[222] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[223] = {.lex_state = 0},
[224] = {.lex_state = 14},
[225] = {.lex_state = 0},
[226] = {.lex_state = 0},
[227] = {.lex_state = 14},
[228] = {.lex_state = 14},
[229] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[230] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[231] = {.lex_state = 0},
[232] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[233] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[234] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[235] = {.lex_state = 0},
2023-10-18 22:18:41 +00:00
[236] = {.lex_state = 0},
[237] = {.lex_state = 0},
[238] = {.lex_state = 0},
[239] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[240] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[241] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[242] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[243] = {.lex_state = 0},
[244] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[245] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[246] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[247] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[248] = {.lex_state = 0},
[249] = {.lex_state = 0},
[250] = {.lex_state = 14},
[251] = {.lex_state = 14},
[252] = {.lex_state = 14},
[253] = {.lex_state = 14},
[254] = {.lex_state = 0},
[255] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[aux_sym_comment_token1] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[sym_integer] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_transform] = ACTIONS(1),
[anon_sym_filter] = ACTIONS(1),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(1),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(1),
[anon_sym_select] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
[anon_sym_insert] = ACTIONS(1),
[anon_sym_into] = ACTIONS(1),
2023-10-21 17:04:17 +00:00
[anon_sym_where] = ACTIONS(1),
[anon_sym_async] = ACTIONS(1),
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = ACTIONS(1),
},
[1] = {
2023-10-21 17:04:17 +00:00
[sym_root] = STATE(207),
[sym_item] = STATE(2),
[sym_statement] = STATE(6),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_root_repeat1] = STATE(2),
[aux_sym_item_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[2] = {
2023-10-19 01:50:45 +00:00
[sym_item] = STATE(3),
2023-10-18 23:26:49 +00:00
[sym_statement] = STATE(6),
2023-10-21 17:04:17 +00:00
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
2023-10-19 01:50:45 +00:00
[aux_sym_root_repeat1] = STATE(3),
2023-10-18 23:26:49 +00:00
[aux_sym_item_repeat1] = STATE(6),
2023-10-21 17:04:17 +00:00
[ts_builtin_sym_end] = ACTIONS(43),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(33),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
2023-10-21 17:04:17 +00:00
[3] = {
[sym_item] = STATE(3),
[sym_statement] = STATE(6),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_root_repeat1] = STATE(3),
[aux_sym_item_repeat1] = STATE(6),
[ts_builtin_sym_end] = ACTIONS(45),
[sym_identifier] = ACTIONS(47),
[aux_sym_comment_token1] = ACTIONS(50),
[anon_sym_LPAREN] = ACTIONS(53),
[sym_integer] = ACTIONS(56),
[sym_float] = ACTIONS(59),
[sym_string] = ACTIONS(59),
[anon_sym_true] = ACTIONS(62),
[anon_sym_false] = ACTIONS(62),
[anon_sym_LBRACK] = ACTIONS(65),
[anon_sym_function] = ACTIONS(68),
[anon_sym_LBRACE] = ACTIONS(71),
[anon_sym_table] = ACTIONS(74),
[anon_sym_if] = ACTIONS(77),
[anon_sym_while] = ACTIONS(80),
[anon_sym_for] = ACTIONS(83),
[anon_sym_transform] = ACTIONS(86),
[anon_sym_filter] = ACTIONS(89),
[anon_sym_find] = ACTIONS(92),
[anon_sym_remove] = ACTIONS(95),
[anon_sym_select] = ACTIONS(98),
[anon_sym_insert] = ACTIONS(101),
[anon_sym_async] = ACTIONS(104),
},
[4] = {
[sym_statement] = STATE(4),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(4),
[ts_builtin_sym_end] = ACTIONS(107),
[sym_identifier] = ACTIONS(109),
[aux_sym_comment_token1] = ACTIONS(112),
[anon_sym_LPAREN] = ACTIONS(115),
[sym_integer] = ACTIONS(118),
[sym_float] = ACTIONS(121),
[sym_string] = ACTIONS(121),
[anon_sym_true] = ACTIONS(124),
[anon_sym_false] = ACTIONS(124),
[anon_sym_LBRACK] = ACTIONS(127),
[anon_sym_function] = ACTIONS(130),
[anon_sym_LBRACE] = ACTIONS(133),
[anon_sym_RBRACE] = ACTIONS(107),
[anon_sym_table] = ACTIONS(136),
[anon_sym_if] = ACTIONS(139),
[anon_sym_while] = ACTIONS(142),
[anon_sym_for] = ACTIONS(145),
[anon_sym_transform] = ACTIONS(148),
[anon_sym_filter] = ACTIONS(151),
[anon_sym_find] = ACTIONS(154),
[anon_sym_remove] = ACTIONS(157),
[anon_sym_select] = ACTIONS(160),
[anon_sym_insert] = ACTIONS(163),
[anon_sym_async] = ACTIONS(166),
},
[5] = {
[sym_item] = STATE(217),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[6] = {
[sym_statement] = STATE(4),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(4),
[ts_builtin_sym_end] = ACTIONS(169),
[sym_identifier] = ACTIONS(171),
[aux_sym_comment_token1] = ACTIONS(169),
[anon_sym_LPAREN] = ACTIONS(169),
[sym_integer] = ACTIONS(171),
[sym_float] = ACTIONS(169),
[sym_string] = ACTIONS(169),
[anon_sym_true] = ACTIONS(171),
[anon_sym_false] = ACTIONS(171),
[anon_sym_LBRACK] = ACTIONS(169),
[anon_sym_function] = ACTIONS(171),
[anon_sym_LBRACE] = ACTIONS(169),
[anon_sym_table] = ACTIONS(171),
[anon_sym_if] = ACTIONS(171),
[anon_sym_while] = ACTIONS(171),
[anon_sym_for] = ACTIONS(171),
[anon_sym_transform] = ACTIONS(171),
[anon_sym_filter] = ACTIONS(171),
[anon_sym_find] = ACTIONS(171),
[anon_sym_remove] = ACTIONS(171),
[anon_sym_select] = ACTIONS(171),
[anon_sym_insert] = ACTIONS(171),
[anon_sym_async] = ACTIONS(171),
},
[7] = {
[sym_statement] = STATE(25),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(25),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_RBRACE] = ACTIONS(173),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[8] = {
[sym_item] = STATE(225),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[9] = {
[sym_item] = STATE(223),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[10] = {
[sym_item] = STATE(215),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[11] = {
[sym_item] = STATE(213),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[12] = {
[sym_item] = STATE(210),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[13] = {
[sym_item] = STATE(233),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[14] = {
[sym_item] = STATE(206),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[15] = {
[sym_item] = STATE(254),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[16] = {
[sym_item] = STATE(221),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[17] = {
[sym_item] = STATE(240),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[18] = {
[sym_item] = STATE(239),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[19] = {
[sym_item] = STATE(238),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[20] = {
[sym_item] = STATE(237),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[21] = {
[sym_item] = STATE(226),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[22] = {
[sym_item] = STATE(235),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[23] = {
[sym_item] = STATE(234),
[sym_statement] = STATE(24),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(24),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[24] = {
[sym_statement] = STATE(4),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(4),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_RBRACE] = ACTIONS(169),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[25] = {
[sym_statement] = STATE(4),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[aux_sym_item_repeat1] = STATE(4),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_RBRACE] = ACTIONS(175),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[26] = {
[sym_statement] = STATE(65),
[sym_comment] = STATE(73),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(38),
[sym_value] = STATE(38),
[sym_boolean] = STATE(43),
[sym_list] = STATE(43),
[sym_function] = STATE(43),
[sym_table] = STATE(43),
[sym_map] = STATE(43),
[sym_math] = STATE(38),
[sym_logic] = STATE(38),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(38),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
[27] = {
[sym_statement] = STATE(219),
[sym_comment] = STATE(73),
[sym_expression] = STATE(134),
[sym__expression_kind] = STATE(133),
[sym_value] = STATE(133),
[sym_boolean] = STATE(136),
[sym_list] = STATE(136),
[sym_function] = STATE(136),
[sym_table] = STATE(136),
[sym_map] = STATE(136),
[sym_math] = STATE(133),
[sym_logic] = STATE(133),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(133),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[sym_identifier] = ACTIONS(177),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(179),
[sym_integer] = ACTIONS(181),
[sym_float] = ACTIONS(183),
[sym_string] = ACTIONS(183),
[anon_sym_true] = ACTIONS(185),
[anon_sym_false] = ACTIONS(185),
[anon_sym_LBRACK] = ACTIONS(187),
[anon_sym_function] = ACTIONS(189),
[anon_sym_LBRACE] = ACTIONS(191),
[anon_sym_table] = ACTIONS(193),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(195),
[anon_sym_insert] = ACTIONS(197),
[anon_sym_async] = ACTIONS(41),
},
[28] = {
[sym_statement] = STATE(229),
[sym_comment] = STATE(73),
[sym_expression] = STATE(134),
[sym__expression_kind] = STATE(133),
[sym_value] = STATE(133),
[sym_boolean] = STATE(136),
[sym_list] = STATE(136),
[sym_function] = STATE(136),
[sym_table] = STATE(136),
[sym_map] = STATE(136),
[sym_math] = STATE(133),
[sym_logic] = STATE(133),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(133),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[sym_identifier] = ACTIONS(177),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(179),
[sym_integer] = ACTIONS(181),
[sym_float] = ACTIONS(183),
[sym_string] = ACTIONS(183),
[anon_sym_true] = ACTIONS(185),
[anon_sym_false] = ACTIONS(185),
[anon_sym_LBRACK] = ACTIONS(187),
[anon_sym_function] = ACTIONS(189),
[anon_sym_LBRACE] = ACTIONS(191),
[anon_sym_table] = ACTIONS(193),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(195),
[anon_sym_insert] = ACTIONS(197),
[anon_sym_async] = ACTIONS(41),
},
[29] = {
[sym_statement] = STATE(232),
[sym_comment] = STATE(73),
[sym_expression] = STATE(134),
[sym__expression_kind] = STATE(133),
[sym_value] = STATE(133),
[sym_boolean] = STATE(136),
[sym_list] = STATE(136),
[sym_function] = STATE(136),
[sym_table] = STATE(136),
[sym_map] = STATE(136),
[sym_math] = STATE(133),
[sym_logic] = STATE(133),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(133),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[sym_identifier] = ACTIONS(177),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(179),
[sym_integer] = ACTIONS(181),
[sym_float] = ACTIONS(183),
[sym_string] = ACTIONS(183),
[anon_sym_true] = ACTIONS(185),
[anon_sym_false] = ACTIONS(185),
[anon_sym_LBRACK] = ACTIONS(187),
[anon_sym_function] = ACTIONS(189),
[anon_sym_LBRACE] = ACTIONS(191),
[anon_sym_table] = ACTIONS(193),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(195),
[anon_sym_insert] = ACTIONS(197),
[anon_sym_async] = ACTIONS(41),
},
[30] = {
[sym_statement] = STATE(65),
[sym_comment] = STATE(73),
[sym_expression] = STATE(134),
[sym__expression_kind] = STATE(133),
[sym_value] = STATE(133),
[sym_boolean] = STATE(136),
[sym_list] = STATE(136),
[sym_function] = STATE(136),
[sym_table] = STATE(136),
[sym_map] = STATE(136),
[sym_math] = STATE(133),
[sym_logic] = STATE(133),
[sym_assignment] = STATE(73),
[sym_if_else] = STATE(73),
[sym_if] = STATE(56),
[sym_function_call] = STATE(133),
[sym_while] = STATE(73),
[sym_for] = STATE(73),
[sym_transform] = STATE(73),
[sym_filter] = STATE(73),
[sym_find] = STATE(73),
[sym_remove] = STATE(73),
[sym_select] = STATE(73),
[sym_insert] = STATE(73),
[sym_async] = STATE(73),
[sym_identifier] = ACTIONS(177),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(179),
[sym_integer] = ACTIONS(181),
[sym_float] = ACTIONS(183),
[sym_string] = ACTIONS(183),
[anon_sym_true] = ACTIONS(185),
[anon_sym_false] = ACTIONS(185),
[anon_sym_LBRACK] = ACTIONS(187),
[anon_sym_function] = ACTIONS(189),
[anon_sym_LBRACE] = ACTIONS(191),
[anon_sym_table] = ACTIONS(193),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(195),
[anon_sym_insert] = ACTIONS(197),
[anon_sym_async] = ACTIONS(41),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 8,
ACTIONS(207), 1,
anon_sym_DASH,
STATE(110), 1,
sym_logic_operator,
STATE(115), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(199), 11,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
ACTIONS(201), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[59] = 4,
STATE(110), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(115), 1,
sym_math_operator,
ACTIONS(211), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(213), 20,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[110] = 8,
ACTIONS(207), 1,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
STATE(110), 1,
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(115), 1,
sym_math_operator,
ACTIONS(203), 3,
2023-10-19 01:50:45 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 4,
2023-10-19 01:50:45 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
2023-10-19 01:50:45 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(215), 11,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
ACTIONS(217), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[169] = 2,
ACTIONS(219), 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,
2023-10-21 17:04:17 +00:00
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(221), 21,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-21 17:04:17 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
2023-10-21 17:04:17 +00:00
anon_sym_into,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[215] = 5,
ACTIONS(227), 1,
2023-10-18 22:18:41 +00:00
anon_sym_EQ,
2023-10-21 17:04:17 +00:00
STATE(26), 1,
2023-10-18 22:18:41 +00:00
sym_assignment_operator,
2023-10-21 17:04:17 +00:00
ACTIONS(229), 2,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(223), 16,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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,
2023-10-21 17:04:17 +00:00
ACTIONS(225), 21,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[267] = 2,
ACTIONS(231), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(233), 21,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_into,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[313] = 2,
ACTIONS(235), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-18 22:18:41 +00:00
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,
2023-10-21 17:04:17 +00:00
ACTIONS(237), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[358] = 2,
ACTIONS(239), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(241), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[403] = 2,
ACTIONS(243), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(245), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[448] = 2,
ACTIONS(247), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(249), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[493] = 2,
ACTIONS(251), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(253), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[538] = 2,
ACTIONS(255), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(257), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[583] = 2,
ACTIONS(259), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(261), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[628] = 2,
ACTIONS(263), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(265), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[673] = 2,
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,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(269), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[718] = 2,
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,
2023-10-21 17:04:17 +00:00
ACTIONS(273), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[763] = 2,
ACTIONS(275), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(277), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[808] = 8,
ACTIONS(207), 1,
anon_sym_DASH,
STATE(110), 1,
sym_logic_operator,
STATE(115), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
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), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[864] = 9,
ACTIONS(207), 1,
2023-10-19 01:50:45 +00:00
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
ACTIONS(287), 1,
anon_sym_LBRACE,
STATE(110), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(115), 1,
sym_math_operator,
ACTIONS(203), 3,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 4,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(283), 7,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(285), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[922] = 9,
ACTIONS(207), 1,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
ACTIONS(293), 1,
anon_sym_LBRACE,
STATE(110), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(115), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(289), 7,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(291), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[980] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(297), 1,
anon_sym_RPAREN,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(85), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
ACTIONS(223), 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,
2023-10-21 17:04:17 +00:00
[1050] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(299), 1,
anon_sym_RPAREN,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(78), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
ACTIONS(223), 9,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[1120] = 16,
2023-10-19 01:50:45 +00:00
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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(301), 1,
anon_sym_RPAREN,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(76), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
ACTIONS(223), 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,
2023-10-21 17:04:17 +00:00
[1190] = 4,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(303), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(223), 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(305), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1236] = 9,
ACTIONS(207), 1,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
ACTIONS(311), 1,
anon_sym_COMMA,
2023-10-21 17:04:17 +00:00
STATE(110), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(115), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
ACTIONS(307), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(309), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
[1284] = 6,
ACTIONS(317), 1,
anon_sym_elseif,
ACTIONS(319), 1,
anon_sym_else,
STATE(75), 1,
sym_else,
STATE(57), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(313), 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(315), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[1326] = 6,
ACTIONS(317), 1,
2023-10-19 01:50:45 +00:00
anon_sym_elseif,
2023-10-21 17:04:17 +00:00
ACTIONS(319), 1,
anon_sym_else,
2023-10-21 17:04:17 +00:00
STATE(64), 1,
sym_else,
2023-10-19 01:50:45 +00:00
STATE(58), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-19 01:50:45 +00:00
ACTIONS(321), 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,
2023-10-19 01:50:45 +00:00
ACTIONS(323), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1368] = 4,
2023-10-19 01:50:45 +00:00
ACTIONS(329), 1,
anon_sym_elseif,
2023-10-19 01:50:45 +00:00
STATE(58), 2,
2023-10-18 22:18:41 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-19 01:50:45 +00:00
ACTIONS(325), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(327), 17,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-19 01:50:45 +00:00
anon_sym_else,
2023-10-18 22:18:41 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1405] = 2,
2023-10-19 01:50:45 +00:00
ACTIONS(332), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_elseif,
ACTIONS(334), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-18 22:18:41 +00:00
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1436] = 2,
2023-10-19 01:50:45 +00:00
ACTIONS(336), 9,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
2023-10-19 01:50:45 +00:00
ACTIONS(338), 17,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1467] = 3,
2023-10-19 01:50:45 +00:00
ACTIONS(344), 1,
anon_sym_where,
ACTIONS(340), 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,
2023-10-19 01:50:45 +00:00
ACTIONS(342), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1499] = 14,
2023-10-19 01:50:45 +00:00
ACTIONS(346), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(349), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(354), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(363), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(366), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(369), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(372), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
2023-10-19 01:50:45 +00:00
ACTIONS(352), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(357), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(360), 2,
anon_sym_true,
anon_sym_false,
STATE(38), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[1553] = 2,
ACTIONS(375), 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(377), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[1582] = 2,
ACTIONS(379), 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(381), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[1611] = 2,
ACTIONS(383), 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(385), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[1640] = 2,
ACTIONS(387), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(389), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1669] = 2,
ACTIONS(391), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(393), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1698] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(395), 1,
anon_sym_RBRACK,
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[1751] = 2,
ACTIONS(397), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(399), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1780] = 2,
ACTIONS(401), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(403), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1809] = 2,
ACTIONS(405), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(407), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1838] = 2,
ACTIONS(409), 8,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(411), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1867] = 2,
ACTIONS(279), 8,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(281), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1896] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(413), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACK,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(77), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[1949] = 2,
ACTIONS(321), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(323), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[1978] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(415), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(62), 1,
2023-10-18 22:18:41 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2031] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(417), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACK,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2084] = 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,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(419), 1,
anon_sym_RPAREN,
STATE(55), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2137] = 2,
2023-10-19 01:50:45 +00:00
ACTIONS(421), 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,
2023-10-19 01:50:45 +00:00
ACTIONS(423), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[2166] = 14,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
ACTIONS(425), 1,
anon_sym_RBRACK,
2023-10-21 17:04:17 +00:00
STATE(55), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(83), 1,
2023-10-19 01:50:45 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2219] = 2,
ACTIONS(427), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(429), 16,
sym_identifier,
2023-10-18 22:18:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 22:18:41 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[2248] = 2,
ACTIONS(431), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(433), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[2277] = 14,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(435), 1,
anon_sym_RBRACK,
STATE(55), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2330] = 2,
ACTIONS(437), 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,
2023-10-21 17:04:17 +00:00
ACTIONS(439), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[2359] = 14,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(441), 1,
anon_sym_RPAREN,
STATE(55), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(62), 1,
2023-10-19 01:50:45 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2412] = 2,
ACTIONS(443), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(445), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-21 17:04:17 +00:00
[2441] = 14,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(447), 1,
anon_sym_RBRACK,
STATE(55), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(68), 1,
2023-10-19 01:50:45 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2494] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(49), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2541] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(449), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(451), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(453), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(459), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(461), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(463), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(465), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
STATE(120), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(455), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(457), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(148), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(155), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[2588] = 12,
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(181), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(187), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(189), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(191), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(193), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(467), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(157), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(183), 2,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(185), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(165), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
[2635] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(146), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2682] = 12,
ACTIONS(449), 1,
sym_identifier,
ACTIONS(451), 1,
anon_sym_LPAREN,
ACTIONS(453), 1,
sym_integer,
ACTIONS(459), 1,
anon_sym_LBRACK,
ACTIONS(461), 1,
anon_sym_function,
ACTIONS(463), 1,
anon_sym_LBRACE,
ACTIONS(465), 1,
anon_sym_table,
STATE(122), 1,
sym_expression,
ACTIONS(455), 2,
sym_float,
sym_string,
ACTIONS(457), 2,
anon_sym_true,
anon_sym_false,
STATE(148), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(155), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
[2729] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(145), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
2023-10-21 17:04:17 +00:00
sym_logic,
2023-10-19 01:50:45 +00:00
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[2776] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(471), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(157), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(166), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
[2823] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(144), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[2870] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
sym_identifier,
STATE(142), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[2917] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(127), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(136), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[2964] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(469), 1,
sym_identifier,
STATE(140), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3011] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(137), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3058] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(469), 1,
sym_identifier,
STATE(117), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3105] = 13,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(157), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
STATE(163), 1,
sym_logic,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 4,
sym__expression_kind,
sym_value,
sym_math,
sym_function_call,
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3154] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(469), 1,
sym_identifier,
STATE(118), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3201] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(126), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3248] = 2,
ACTIONS(475), 6,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
ACTIONS(473), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3275] = 13,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(54), 1,
sym_logic,
STATE(159), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 4,
sym__expression_kind,
sym_value,
sym_math,
sym_function_call,
STATE(136), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3324] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(295), 1,
sym_identifier,
STATE(50), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
sym__expression_kind,
sym_value,
sym_math,
2023-10-19 01:50:45 +00:00
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3371] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(116), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3418] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(123), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3465] = 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(295), 1,
sym_identifier,
STATE(33), 1,
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3512] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(31), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
2023-10-21 17:04:17 +00:00
sym_logic,
2023-10-19 01:50:45 +00:00
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3559] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(449), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(451), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(453), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(459), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(461), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(463), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(465), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
STATE(125), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(455), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(457), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(148), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(155), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[3606] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(469), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(124), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(133), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[3653] = 12,
ACTIONS(449), 1,
sym_identifier,
ACTIONS(451), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(453), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(459), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(461), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(463), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(465), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
STATE(121), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(455), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(457), 2,
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(148), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(155), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
[3700] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(477), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(157), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(136), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
STATE(164), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
[3747] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(32), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
STATE(38), 5,
2023-10-19 01:50:45 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:04:17 +00:00
STATE(43), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-21 17:04:17 +00:00
[3794] = 6,
STATE(100), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(215), 3,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[3825] = 6,
STATE(100), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(199), 3,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[3856] = 4,
STATE(100), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(213), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(211), 14,
2023-10-19 01:50:45 +00:00
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,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[3883] = 5,
ACTIONS(227), 1,
anon_sym_EQ,
STATE(30), 1,
sym_assignment_operator,
ACTIONS(229), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
ACTIONS(223), 10,
anon_sym_RBRACE,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[3912] = 7,
ACTIONS(215), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(217), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(111), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(113), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[3944] = 4,
STATE(111), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(113), 1,
sym_math_operator,
ACTIONS(213), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(211), 11,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[3970] = 7,
ACTIONS(479), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(481), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
STATE(111), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(113), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4002] = 7,
ACTIONS(289), 1,
anon_sym_RBRACE,
ACTIONS(293), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_logic_operator,
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4034] = 7,
ACTIONS(283), 1,
anon_sym_RBRACE,
ACTIONS(287), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_logic_operator,
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4066] = 7,
ACTIONS(199), 1,
anon_sym_RBRACE,
ACTIONS(201), 1,
sym_identifier,
STATE(111), 1,
sym_logic_operator,
STATE(113), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-21 17:04:17 +00:00
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4098] = 6,
ACTIONS(483), 1,
anon_sym_LBRACE,
STATE(100), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4127] = 6,
ACTIONS(485), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
STATE(100), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4156] = 2,
ACTIONS(221), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4177] = 2,
ACTIONS(237), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4198] = 2,
ACTIONS(257), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(255), 14,
2023-10-18 22:18:41 +00:00
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,
2023-10-21 17:04:17 +00:00
[4219] = 2,
ACTIONS(245), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4240] = 2,
ACTIONS(233), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(231), 14,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[4261] = 2,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4282] = 6,
ACTIONS(279), 1,
anon_sym_RBRACE,
STATE(100), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4311] = 2,
ACTIONS(249), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(247), 14,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[4332] = 2,
ACTIONS(261), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4353] = 6,
ACTIONS(487), 1,
anon_sym_LBRACE,
STATE(100), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4382] = 2,
ACTIONS(265), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4403] = 2,
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(251), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[4424] = 6,
2023-10-19 01:50:45 +00:00
ACTIONS(489), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
STATE(100), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
2023-10-19 01:50:45 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4453] = 2,
2023-10-19 01:50:45 +00:00
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(271), 14,
2023-10-18 23:26:49 +00:00
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,
2023-10-21 17:04:17 +00:00
[4474] = 6,
ACTIONS(491), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_logic_operator,
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(209), 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,
[4503] = 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,
2023-10-21 17:04:17 +00:00
[4524] = 6,
ACTIONS(493), 1,
anon_sym_LBRACE,
STATE(100), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:04:17 +00:00
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 6,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4553] = 6,
ACTIONS(495), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_logic_operator,
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 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,
2023-10-21 17:04:17 +00:00
[4582] = 6,
ACTIONS(497), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_logic_operator,
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4611] = 2,
ACTIONS(277), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(275), 14,
2023-10-18 23:26:49 +00:00
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,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4632] = 2,
ACTIONS(261), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(259), 11,
2023-10-18 23:26:49 +00:00
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,
2023-10-21 17:04:17 +00:00
[4652] = 2,
ACTIONS(277), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(275), 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,
2023-10-21 17:04:17 +00:00
[4672] = 2,
ACTIONS(269), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4692] = 2,
ACTIONS(273), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(271), 11,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[4712] = 2,
ACTIONS(265), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4732] = 2,
ACTIONS(253), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(251), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4752] = 2,
ACTIONS(249), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4772] = 2,
ACTIONS(241), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(239), 11,
2023-10-19 01:50:45 +00:00
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,
2023-10-21 17:04:17 +00:00
[4792] = 2,
ACTIONS(233), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(231), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4812] = 5,
STATE(100), 1,
sym_logic_operator,
STATE(102), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4838] = 2,
ACTIONS(245), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4858] = 5,
STATE(102), 1,
sym_math_operator,
STATE(110), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 17:04:17 +00:00
ACTIONS(209), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4884] = 2,
ACTIONS(257), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(255), 11,
2023-10-18 23:26:49 +00:00
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,
2023-10-21 17:04:17 +00:00
[4904] = 2,
ACTIONS(237), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
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,
2023-10-21 17:04:17 +00:00
[4924] = 2,
ACTIONS(221), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
ACTIONS(219), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4944] = 3,
ACTIONS(303), 1,
anon_sym_RBRACE,
ACTIONS(225), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(223), 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,
2023-10-21 17:04:17 +00:00
[4965] = 3,
ACTIONS(499), 1,
anon_sym_RPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(239), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[4986] = 3,
ACTIONS(501), 1,
anon_sym_RPAREN,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(239), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[5007] = 3,
ACTIONS(503), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
ACTIONS(239), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 17:04:17 +00:00
[5028] = 2,
ACTIONS(505), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(352), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
[5046] = 2,
ACTIONS(509), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(507), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-21 17:04:17 +00:00
[5062] = 2,
ACTIONS(513), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(511), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-21 17:04:17 +00:00
[5078] = 3,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(515), 1,
anon_sym_into,
2023-10-21 17:04:17 +00:00
STATE(172), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-21 17:04:17 +00:00
[5089] = 3,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(517), 1,
anon_sym_into,
2023-10-21 17:04:17 +00:00
STATE(172), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-21 17:04:17 +00:00
[5100] = 3,
ACTIONS(519), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(522), 1,
anon_sym_into,
2023-10-21 17:04:17 +00:00
STATE(172), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-21 17:04:17 +00:00
[5111] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(526), 1,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(184), 1,
aux_sym_function_repeat1,
[5121] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(528), 1,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(184), 1,
2023-10-18 23:26:49 +00:00
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5131] = 3,
ACTIONS(530), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(532), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
STATE(185), 1,
aux_sym_map_repeat1,
[5141] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(534), 1,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(184), 1,
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5151] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(536), 1,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(184), 1,
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5161] = 3,
ACTIONS(524), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(538), 1,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(177), 1,
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5171] = 3,
ACTIONS(530), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(540), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
STATE(180), 1,
2023-10-18 22:18:41 +00:00
aux_sym_map_repeat1,
2023-10-21 17:04:17 +00:00
[5181] = 3,
ACTIONS(530), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(542), 1,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
STATE(185), 1,
aux_sym_map_repeat1,
2023-10-21 17:04:17 +00:00
[5191] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(544), 1,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(194), 1,
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5201] = 2,
ACTIONS(15), 1,
anon_sym_LBRACK,
STATE(171), 2,
sym_list,
aux_sym_insert_repeat1,
[5209] = 3,
ACTIONS(530), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(546), 1,
anon_sym_RBRACE,
STATE(175), 1,
aux_sym_map_repeat1,
[5219] = 3,
2023-10-18 23:26:49 +00:00
ACTIONS(548), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
ACTIONS(551), 1,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(184), 1,
2023-10-18 23:26:49 +00:00
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5229] = 3,
ACTIONS(553), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(556), 1,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
STATE(185), 1,
aux_sym_map_repeat1,
2023-10-21 17:04:17 +00:00
[5239] = 3,
ACTIONS(530), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(558), 1,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
STATE(196), 1,
aux_sym_map_repeat1,
2023-10-21 17:04:17 +00:00
[5249] = 2,
ACTIONS(15), 1,
anon_sym_LBRACK,
STATE(170), 2,
sym_list,
aux_sym_insert_repeat1,
[5257] = 3,
ACTIONS(524), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(560), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(174), 1,
2023-10-19 01:50:45 +00:00
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5267] = 3,
ACTIONS(524), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(562), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
2023-10-21 17:04:17 +00:00
STATE(184), 1,
2023-10-19 01:50:45 +00:00
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5277] = 3,
ACTIONS(524), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(564), 1,
anon_sym_GT,
STATE(184), 1,
aux_sym_function_repeat1,
[5287] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(566), 1,
anon_sym_GT,
STATE(189), 1,
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5297] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-21 17:04:17 +00:00
ACTIONS(568), 1,
anon_sym_GT,
STATE(190), 1,
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5307] = 2,
ACTIONS(572), 1,
anon_sym_COMMA,
ACTIONS(570), 2,
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
2023-10-21 17:04:17 +00:00
[5315] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(574), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
STATE(184), 1,
aux_sym_function_repeat1,
[5325] = 3,
ACTIONS(524), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(576), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
STATE(184), 1,
aux_sym_function_repeat1,
[5335] = 3,
ACTIONS(530), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(578), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
STATE(185), 1,
aux_sym_map_repeat1,
[5345] = 2,
ACTIONS(524), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(176), 1,
2023-10-19 01:50:45 +00:00
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5352] = 2,
ACTIONS(340), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(580), 1,
2023-10-19 01:50:45 +00:00
anon_sym_where,
2023-10-21 17:04:17 +00:00
[5359] = 2,
ACTIONS(524), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(195), 1,
2023-10-19 01:50:45 +00:00
aux_sym_function_repeat1,
2023-10-21 17:04:17 +00:00
[5366] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(582), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(584), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5373] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(586), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-19 01:50:45 +00:00
ACTIONS(588), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5380] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(590), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(592), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5387] = 2,
ACTIONS(524), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
STATE(173), 1,
aux_sym_function_repeat1,
[5394] = 1,
ACTIONS(551), 2,
sym_identifier,
anon_sym_GT,
[5399] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(594), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5403] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(596), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5407] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(598), 1,
2023-10-21 17:04:17 +00:00
ts_builtin_sym_end,
[5411] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(600), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
[5415] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(602), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
[5419] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(604), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5423] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(606), 1,
2023-10-21 17:04:17 +00:00
anon_sym_from,
[5427] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(608), 1,
2023-10-19 01:50:45 +00:00
anon_sym_from,
2023-10-21 17:04:17 +00:00
[5431] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(610), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5435] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(612), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
[5439] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(614), 1,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5443] = 1,
ACTIONS(616), 1,
sym_identifier,
[5447] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(618), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5451] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(620), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
[5455] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(622), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5459] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(624), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
[5463] = 1,
ACTIONS(626), 1,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5467] = 1,
ACTIONS(628), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
[5471] = 1,
ACTIONS(630), 1,
anon_sym_RBRACE,
[5475] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(632), 1,
2023-10-21 17:04:17 +00:00
anon_sym_from,
[5479] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(634), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5483] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(636), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5487] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(638), 1,
2023-10-21 17:04:17 +00:00
anon_sym_from,
[5491] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(640), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
[5495] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(642), 1,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5499] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(644), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5503] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(646), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5507] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(648), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
[5511] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(650), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5515] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(652), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5519] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(654), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5523] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(656), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
[5527] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(658), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5531] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(660), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5535] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(662), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5539] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(664), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[5543] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(666), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
[5547] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(668), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
[5551] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(670), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5555] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(672), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
[5559] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(674), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
[5563] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(676), 1,
2023-10-21 17:04:17 +00:00
anon_sym_in,
[5567] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(678), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
[5571] = 1,
2023-10-19 01:50:45 +00:00
ACTIONS(680), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
[5575] = 1,
ACTIONS(682), 1,
anon_sym_LBRACE,
[5579] = 1,
ACTIONS(684), 1,
anon_sym_in,
[5583] = 1,
ACTIONS(686), 1,
anon_sym_in,
[5587] = 1,
ACTIONS(688), 1,
anon_sym_in,
[5591] = 1,
ACTIONS(690), 1,
anon_sym_in,
[5595] = 1,
ACTIONS(692), 1,
anon_sym_RBRACE,
[5599] = 1,
ACTIONS(694), 1,
anon_sym_EQ,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-10-21 17:04:17 +00:00
[SMALL_STATE(31)] = 0,
[SMALL_STATE(32)] = 59,
[SMALL_STATE(33)] = 110,
[SMALL_STATE(34)] = 169,
[SMALL_STATE(35)] = 215,
[SMALL_STATE(36)] = 267,
[SMALL_STATE(37)] = 313,
[SMALL_STATE(38)] = 358,
[SMALL_STATE(39)] = 403,
[SMALL_STATE(40)] = 448,
[SMALL_STATE(41)] = 493,
[SMALL_STATE(42)] = 538,
[SMALL_STATE(43)] = 583,
[SMALL_STATE(44)] = 628,
[SMALL_STATE(45)] = 673,
[SMALL_STATE(46)] = 718,
[SMALL_STATE(47)] = 763,
[SMALL_STATE(48)] = 808,
[SMALL_STATE(49)] = 864,
[SMALL_STATE(50)] = 922,
[SMALL_STATE(51)] = 980,
[SMALL_STATE(52)] = 1050,
[SMALL_STATE(53)] = 1120,
[SMALL_STATE(54)] = 1190,
[SMALL_STATE(55)] = 1236,
[SMALL_STATE(56)] = 1284,
[SMALL_STATE(57)] = 1326,
[SMALL_STATE(58)] = 1368,
[SMALL_STATE(59)] = 1405,
[SMALL_STATE(60)] = 1436,
[SMALL_STATE(61)] = 1467,
[SMALL_STATE(62)] = 1499,
[SMALL_STATE(63)] = 1553,
[SMALL_STATE(64)] = 1582,
[SMALL_STATE(65)] = 1611,
[SMALL_STATE(66)] = 1640,
[SMALL_STATE(67)] = 1669,
[SMALL_STATE(68)] = 1698,
[SMALL_STATE(69)] = 1751,
[SMALL_STATE(70)] = 1780,
[SMALL_STATE(71)] = 1809,
[SMALL_STATE(72)] = 1838,
[SMALL_STATE(73)] = 1867,
[SMALL_STATE(74)] = 1896,
[SMALL_STATE(75)] = 1949,
[SMALL_STATE(76)] = 1978,
[SMALL_STATE(77)] = 2031,
[SMALL_STATE(78)] = 2084,
[SMALL_STATE(79)] = 2137,
[SMALL_STATE(80)] = 2166,
[SMALL_STATE(81)] = 2219,
[SMALL_STATE(82)] = 2248,
[SMALL_STATE(83)] = 2277,
[SMALL_STATE(84)] = 2330,
[SMALL_STATE(85)] = 2359,
[SMALL_STATE(86)] = 2412,
[SMALL_STATE(87)] = 2441,
[SMALL_STATE(88)] = 2494,
[SMALL_STATE(89)] = 2541,
[SMALL_STATE(90)] = 2588,
[SMALL_STATE(91)] = 2635,
[SMALL_STATE(92)] = 2682,
[SMALL_STATE(93)] = 2729,
[SMALL_STATE(94)] = 2776,
[SMALL_STATE(95)] = 2823,
[SMALL_STATE(96)] = 2870,
[SMALL_STATE(97)] = 2917,
[SMALL_STATE(98)] = 2964,
[SMALL_STATE(99)] = 3011,
[SMALL_STATE(100)] = 3058,
[SMALL_STATE(101)] = 3105,
[SMALL_STATE(102)] = 3154,
[SMALL_STATE(103)] = 3201,
[SMALL_STATE(104)] = 3248,
[SMALL_STATE(105)] = 3275,
[SMALL_STATE(106)] = 3324,
[SMALL_STATE(107)] = 3371,
[SMALL_STATE(108)] = 3418,
[SMALL_STATE(109)] = 3465,
[SMALL_STATE(110)] = 3512,
[SMALL_STATE(111)] = 3559,
[SMALL_STATE(112)] = 3606,
[SMALL_STATE(113)] = 3653,
[SMALL_STATE(114)] = 3700,
[SMALL_STATE(115)] = 3747,
[SMALL_STATE(116)] = 3794,
[SMALL_STATE(117)] = 3825,
[SMALL_STATE(118)] = 3856,
[SMALL_STATE(119)] = 3883,
[SMALL_STATE(120)] = 3912,
[SMALL_STATE(121)] = 3944,
[SMALL_STATE(122)] = 3970,
[SMALL_STATE(123)] = 4002,
[SMALL_STATE(124)] = 4034,
[SMALL_STATE(125)] = 4066,
[SMALL_STATE(126)] = 4098,
[SMALL_STATE(127)] = 4127,
[SMALL_STATE(128)] = 4156,
[SMALL_STATE(129)] = 4177,
[SMALL_STATE(130)] = 4198,
[SMALL_STATE(131)] = 4219,
[SMALL_STATE(132)] = 4240,
[SMALL_STATE(133)] = 4261,
[SMALL_STATE(134)] = 4282,
[SMALL_STATE(135)] = 4311,
[SMALL_STATE(136)] = 4332,
[SMALL_STATE(137)] = 4353,
[SMALL_STATE(138)] = 4382,
[SMALL_STATE(139)] = 4403,
[SMALL_STATE(140)] = 4424,
[SMALL_STATE(141)] = 4453,
[SMALL_STATE(142)] = 4474,
[SMALL_STATE(143)] = 4503,
[SMALL_STATE(144)] = 4524,
[SMALL_STATE(145)] = 4553,
[SMALL_STATE(146)] = 4582,
[SMALL_STATE(147)] = 4611,
[SMALL_STATE(148)] = 4632,
[SMALL_STATE(149)] = 4652,
[SMALL_STATE(150)] = 4672,
[SMALL_STATE(151)] = 4692,
[SMALL_STATE(152)] = 4712,
[SMALL_STATE(153)] = 4732,
[SMALL_STATE(154)] = 4752,
[SMALL_STATE(155)] = 4772,
[SMALL_STATE(156)] = 4792,
[SMALL_STATE(157)] = 4812,
[SMALL_STATE(158)] = 4838,
[SMALL_STATE(159)] = 4858,
[SMALL_STATE(160)] = 4884,
[SMALL_STATE(161)] = 4904,
[SMALL_STATE(162)] = 4924,
[SMALL_STATE(163)] = 4944,
[SMALL_STATE(164)] = 4965,
[SMALL_STATE(165)] = 4986,
[SMALL_STATE(166)] = 5007,
[SMALL_STATE(167)] = 5028,
[SMALL_STATE(168)] = 5046,
[SMALL_STATE(169)] = 5062,
[SMALL_STATE(170)] = 5078,
[SMALL_STATE(171)] = 5089,
[SMALL_STATE(172)] = 5100,
[SMALL_STATE(173)] = 5111,
[SMALL_STATE(174)] = 5121,
[SMALL_STATE(175)] = 5131,
[SMALL_STATE(176)] = 5141,
[SMALL_STATE(177)] = 5151,
[SMALL_STATE(178)] = 5161,
[SMALL_STATE(179)] = 5171,
[SMALL_STATE(180)] = 5181,
[SMALL_STATE(181)] = 5191,
[SMALL_STATE(182)] = 5201,
[SMALL_STATE(183)] = 5209,
[SMALL_STATE(184)] = 5219,
[SMALL_STATE(185)] = 5229,
[SMALL_STATE(186)] = 5239,
[SMALL_STATE(187)] = 5249,
[SMALL_STATE(188)] = 5257,
[SMALL_STATE(189)] = 5267,
[SMALL_STATE(190)] = 5277,
[SMALL_STATE(191)] = 5287,
[SMALL_STATE(192)] = 5297,
[SMALL_STATE(193)] = 5307,
[SMALL_STATE(194)] = 5315,
[SMALL_STATE(195)] = 5325,
[SMALL_STATE(196)] = 5335,
[SMALL_STATE(197)] = 5345,
[SMALL_STATE(198)] = 5352,
[SMALL_STATE(199)] = 5359,
[SMALL_STATE(200)] = 5366,
[SMALL_STATE(201)] = 5373,
[SMALL_STATE(202)] = 5380,
[SMALL_STATE(203)] = 5387,
[SMALL_STATE(204)] = 5394,
[SMALL_STATE(205)] = 5399,
[SMALL_STATE(206)] = 5403,
[SMALL_STATE(207)] = 5407,
[SMALL_STATE(208)] = 5411,
[SMALL_STATE(209)] = 5415,
[SMALL_STATE(210)] = 5419,
[SMALL_STATE(211)] = 5423,
[SMALL_STATE(212)] = 5427,
[SMALL_STATE(213)] = 5431,
[SMALL_STATE(214)] = 5435,
[SMALL_STATE(215)] = 5439,
[SMALL_STATE(216)] = 5443,
[SMALL_STATE(217)] = 5447,
[SMALL_STATE(218)] = 5451,
[SMALL_STATE(219)] = 5455,
[SMALL_STATE(220)] = 5459,
[SMALL_STATE(221)] = 5463,
[SMALL_STATE(222)] = 5467,
[SMALL_STATE(223)] = 5471,
[SMALL_STATE(224)] = 5475,
[SMALL_STATE(225)] = 5479,
[SMALL_STATE(226)] = 5483,
[SMALL_STATE(227)] = 5487,
[SMALL_STATE(228)] = 5491,
[SMALL_STATE(229)] = 5495,
[SMALL_STATE(230)] = 5499,
[SMALL_STATE(231)] = 5503,
[SMALL_STATE(232)] = 5507,
[SMALL_STATE(233)] = 5511,
[SMALL_STATE(234)] = 5515,
[SMALL_STATE(235)] = 5519,
[SMALL_STATE(236)] = 5523,
[SMALL_STATE(237)] = 5527,
[SMALL_STATE(238)] = 5531,
[SMALL_STATE(239)] = 5535,
[SMALL_STATE(240)] = 5539,
[SMALL_STATE(241)] = 5543,
[SMALL_STATE(242)] = 5547,
[SMALL_STATE(243)] = 5551,
[SMALL_STATE(244)] = 5555,
[SMALL_STATE(245)] = 5559,
[SMALL_STATE(246)] = 5563,
[SMALL_STATE(247)] = 5567,
[SMALL_STATE(248)] = 5571,
[SMALL_STATE(249)] = 5575,
[SMALL_STATE(250)] = 5579,
[SMALL_STATE(251)] = 5583,
[SMALL_STATE(252)] = 5587,
[SMALL_STATE(253)] = 5591,
[SMALL_STATE(254)] = 5595,
[SMALL_STATE(255)] = 5599,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-19 01:50:45 +00:00
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35),
2023-10-21 17:04:17 +00:00
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208),
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(35),
[50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(84),
[53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(114),
[56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(43),
[59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(43),
[62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40),
[65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(87),
[68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(200),
[71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(183),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(236),
[77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(91),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(93),
[83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(228),
[86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(222),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(220),
[92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(218),
[95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(216),
[98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(209),
[101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(182),
[104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(208),
2023-10-19 01:50:45 +00:00
[107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(35),
2023-10-21 17:04:17 +00:00
[112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(84),
[115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(114),
[118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(43),
[121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(43),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(40),
[127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(87),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(200),
[133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(183),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(236),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(91),
[142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(93),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(228),
[148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(222),
[151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(220),
[154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(218),
[157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(216),
[160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(209),
[163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(182),
[166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(208),
2023-10-19 01:50:45 +00:00
[169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
2023-10-21 17:04:17 +00:00
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242),
[197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169),
[209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
2023-10-19 01:50:45 +00:00
[267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
2023-10-21 17:04:17 +00:00
[271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[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_select, 6),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38),
[297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6),
[305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
2023-10-19 01:50:45 +00:00
[321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
2023-10-21 17:04:17 +00:00
[329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(103),
[332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(38),
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(114),
2023-10-19 01:50:45 +00:00
[352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
2023-10-21 17:04:17 +00:00
[354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(43),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(43),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(40),
[363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(87),
[366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(200),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(183),
[372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(236),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 9),
[377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 9),
[379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8),
[389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8),
[391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155),
[451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148),
[455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154),
[459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
[463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247),
[467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51),
[469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
[471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52),
[473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53),
[479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3),
[481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), SHIFT_REPEAT(87),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(193),
[551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(255),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[598] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_dust(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif