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

13899 lines
310 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
#define STATE_COUNT 325
#define LARGE_STATE_COUNT 2
2023-12-02 03:54:25 +00:00
#define SYMBOL_COUNT 94
#define ALIAS_COUNT 0
2023-11-30 14:48:56 +00:00
#define TOKEN_COUNT 56
#define EXTERNAL_TOKEN_COUNT 0
2023-11-30 14:30:25 +00:00
#define FIELD_COUNT 0
2023-11-28 22:54:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 6
2023-11-30 14:30:25 +00:00
#define PRODUCTION_ID_COUNT 1
enum {
sym_identifier = 1,
sym__comment = 2,
anon_sym_async = 3,
anon_sym_LBRACE = 4,
anon_sym_RBRACE = 5,
anon_sym_SEMI = 6,
2023-11-30 16:05:09 +00:00
anon_sym_COMMA = 7,
sym_integer = 8,
sym_float = 9,
sym_string = 10,
anon_sym_true = 11,
anon_sym_false = 12,
anon_sym_LBRACK = 13,
anon_sym_RBRACK = 14,
anon_sym_EQ = 15,
anon_sym_COLON = 16,
anon_sym_DOT_DOT = 17,
anon_sym_LPAREN = 18,
anon_sym_RPAREN = 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 = 29,
anon_sym_LT = 30,
anon_sym_GT_EQ = 31,
anon_sym_LT_EQ = 32,
anon_sym_PLUS_EQ = 33,
anon_sym_DASH_EQ = 34,
anon_sym_if = 35,
anon_sym_elseif = 36,
anon_sym_else = 37,
anon_sym_match = 38,
anon_sym_EQ_GT = 39,
anon_sym_while = 40,
anon_sym_for = 41,
anon_sym_asyncfor = 42,
anon_sym_in = 43,
2023-12-05 21:42:11 +00:00
anon_sym_return = 44,
anon_sym_use = 45,
anon_sym_any = 46,
anon_sym_bool = 47,
anon_sym_float = 48,
anon_sym_DASH_GT = 49,
anon_sym_int = 50,
anon_sym_map = 51,
anon_sym_num = 52,
anon_sym_str = 53,
anon_sym_fn = 54,
anon_sym_PIPE = 55,
2023-11-30 14:48:56 +00:00
sym_root = 56,
sym_block = 57,
sym_statement = 58,
sym_expression = 59,
2023-11-30 16:05:09 +00:00
aux_sym__expression_list = 60,
sym_value = 61,
sym_boolean = 62,
sym_list = 63,
sym_map = 64,
sym_index = 65,
sym_math = 66,
sym_math_operator = 67,
sym_logic = 68,
sym_logic_operator = 69,
sym_assignment = 70,
sym_index_assignment = 71,
sym_assignment_operator = 72,
sym_if_else = 73,
sym_if = 74,
sym_else_if = 75,
sym_else = 76,
sym_match = 77,
sym_while = 78,
sym_for = 79,
sym_return = 80,
sym_use = 81,
sym_type_definition = 82,
sym_type = 83,
2023-12-02 03:54:25 +00:00
sym_function = 84,
sym_function_call = 85,
sym_yield = 86,
aux_sym_root_repeat1 = 87,
aux_sym_list_repeat1 = 88,
aux_sym_map_repeat1 = 89,
aux_sym_if_else_repeat1 = 90,
aux_sym_match_repeat1 = 91,
2023-12-05 21:42:11 +00:00
aux_sym_type_repeat1 = 92,
aux_sym_function_repeat1 = 93,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[sym__comment] = "_comment",
[anon_sym_async] = "async",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_SEMI] = ";",
[anon_sym_COMMA] = ",",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
[anon_sym_EQ] = "=",
[anon_sym_COLON] = ":",
[anon_sym_DOT_DOT] = "..",
2023-11-30 16:05:09 +00:00
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[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] = ">",
[anon_sym_LT] = "<",
[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_match] = "match",
[anon_sym_EQ_GT] = "=>",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_asyncfor] = "async for",
[anon_sym_in] = "in",
[anon_sym_return] = "return",
[anon_sym_use] = "use",
[anon_sym_any] = "any",
[anon_sym_bool] = "bool",
2023-11-30 14:30:25 +00:00
[anon_sym_float] = "float",
2023-11-30 00:23:42 +00:00
[anon_sym_DASH_GT] = "->",
[anon_sym_int] = "int",
[anon_sym_map] = "map",
2023-11-30 00:23:42 +00:00
[anon_sym_num] = "num",
[anon_sym_str] = "str",
2023-12-05 21:42:11 +00:00
[anon_sym_fn] = "fn",
[anon_sym_PIPE] = "|",
[sym_root] = "root",
[sym_block] = "block",
[sym_statement] = "statement",
[sym_expression] = "expression",
[aux_sym__expression_list] = "_expression_list",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_map] = "map",
[sym_index] = "index",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_index_assignment] = "index_assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_match] = "match",
[sym_while] = "while",
[sym_for] = "for",
[sym_return] = "return",
[sym_use] = "use",
2023-11-30 00:23:42 +00:00
[sym_type_definition] = "type_definition",
[sym_type] = "type",
[sym_function] = "function",
[sym_function_call] = "function_call",
[sym_yield] = "yield",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
[aux_sym_match_repeat1] = "match_repeat1",
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = "type_repeat1",
2023-12-05 21:42:11 +00:00
[aux_sym_function_repeat1] = "function_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[sym__comment] = sym__comment,
[anon_sym_async] = anon_sym_async,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_COMMA] = anon_sym_COMMA,
[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_RBRACK] = anon_sym_RBRACK,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_COLON] = anon_sym_COLON,
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[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] = anon_sym_GT,
[anon_sym_LT] = anon_sym_LT,
[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_match] = anon_sym_match,
[anon_sym_EQ_GT] = anon_sym_EQ_GT,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[anon_sym_asyncfor] = anon_sym_asyncfor,
[anon_sym_in] = anon_sym_in,
[anon_sym_return] = anon_sym_return,
[anon_sym_use] = anon_sym_use,
[anon_sym_any] = anon_sym_any,
[anon_sym_bool] = anon_sym_bool,
2023-11-30 14:30:25 +00:00
[anon_sym_float] = anon_sym_float,
2023-11-30 00:23:42 +00:00
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
[anon_sym_int] = anon_sym_int,
[anon_sym_map] = anon_sym_map,
2023-11-30 00:23:42 +00:00
[anon_sym_num] = anon_sym_num,
[anon_sym_str] = anon_sym_str,
2023-12-05 21:42:11 +00:00
[anon_sym_fn] = anon_sym_fn,
[anon_sym_PIPE] = anon_sym_PIPE,
[sym_root] = sym_root,
[sym_block] = sym_block,
[sym_statement] = sym_statement,
[sym_expression] = sym_expression,
[aux_sym__expression_list] = aux_sym__expression_list,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_map] = sym_map,
[sym_index] = sym_index,
[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_index_assignment] = sym_index_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_match] = sym_match,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_return] = sym_return,
[sym_use] = sym_use,
2023-11-30 00:23:42 +00:00
[sym_type_definition] = sym_type_definition,
[sym_type] = sym_type,
[sym_function] = sym_function,
[sym_function_call] = sym_function_call,
[sym_yield] = sym_yield,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
[aux_sym_match_repeat1] = aux_sym_match_repeat1,
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = aux_sym_type_repeat1,
2023-12-05 21:42:11 +00:00
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym__comment] = {
.visible = false,
.named = true,
},
[anon_sym_async] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.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_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
2023-11-30 16:05:09 +00:00
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.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] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.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_match] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_GT] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_asyncfor] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_return] = {
.visible = true,
.named = false,
},
[anon_sym_use] = {
.visible = true,
.named = false,
},
[anon_sym_any] = {
.visible = true,
.named = false,
},
[anon_sym_bool] = {
.visible = true,
.named = false,
},
2023-11-30 14:30:25 +00:00
[anon_sym_float] = {
.visible = true,
.named = false,
},
2023-11-30 00:23:42 +00:00
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
[anon_sym_int] = {
.visible = true,
.named = false,
},
[anon_sym_map] = {
.visible = true,
.named = false,
},
2023-11-30 00:23:42 +00:00
[anon_sym_num] = {
.visible = true,
.named = false,
},
2023-11-30 00:23:42 +00:00
[anon_sym_str] = {
.visible = true,
.named = false,
},
2023-12-05 21:42:11 +00:00
[anon_sym_fn] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
[sym_block] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[aux_sym__expression_list] = {
.visible = false,
.named = false,
},
[sym_value] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
[sym_index] = {
.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_index_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_match] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_return] = {
.visible = true,
.named = true,
},
[sym_use] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_type_definition] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_type] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_yield] = {
.visible = true,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
2023-12-05 21:42:11 +00:00
[aux_sym_type_repeat1] = {
.visible = false,
.named = false,
},
2023-12-05 21:42:11 +00:00
[aux_sym_function_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] = 2,
2023-12-05 21:42:11 +00:00
[4] = 2,
2023-11-28 22:54:17 +00:00
[5] = 5,
2023-12-02 07:34:23 +00:00
[6] = 6,
2023-11-30 16:05:09 +00:00
[7] = 7,
[8] = 6,
2023-12-05 21:42:11 +00:00
[9] = 7,
[10] = 10,
[11] = 7,
[12] = 6,
[13] = 7,
2023-12-05 21:42:11 +00:00
[14] = 14,
[15] = 15,
[16] = 6,
[17] = 7,
[18] = 18,
[19] = 10,
[20] = 6,
2023-12-05 21:42:11 +00:00
[21] = 21,
[22] = 14,
2023-12-05 21:42:11 +00:00
[23] = 23,
[24] = 23,
[25] = 25,
2023-12-05 21:42:11 +00:00
[26] = 23,
[27] = 25,
[28] = 25,
2023-12-05 21:42:11 +00:00
[29] = 23,
[30] = 15,
[31] = 25,
[32] = 18,
[33] = 23,
2023-12-05 21:42:11 +00:00
[34] = 34,
[35] = 25,
2023-11-30 16:05:09 +00:00
[36] = 36,
2023-12-05 21:42:11 +00:00
[37] = 37,
[38] = 38,
2023-12-02 07:34:23 +00:00
[39] = 39,
[40] = 40,
[41] = 37,
2023-12-05 21:42:11 +00:00
[42] = 42,
[43] = 43,
[44] = 42,
2023-12-05 21:42:11 +00:00
[45] = 45,
2023-11-30 01:59:58 +00:00
[46] = 46,
2023-12-05 21:42:11 +00:00
[47] = 47,
[48] = 48,
2023-11-30 16:05:09 +00:00
[49] = 49,
2023-12-02 03:54:25 +00:00
[50] = 50,
[51] = 39,
[52] = 52,
[53] = 37,
[54] = 54,
[55] = 38,
2023-12-02 03:54:25 +00:00
[56] = 56,
[57] = 57,
[58] = 58,
2023-11-30 14:30:25 +00:00
[59] = 59,
2023-12-02 03:54:25 +00:00
[60] = 60,
[61] = 61,
2023-12-02 07:34:23 +00:00
[62] = 62,
[63] = 63,
2023-12-02 03:54:25 +00:00
[64] = 64,
[65] = 43,
[66] = 38,
[67] = 42,
[68] = 43,
[69] = 39,
[70] = 70,
2023-12-05 21:42:11 +00:00
[71] = 71,
2023-12-02 07:34:23 +00:00
[72] = 72,
[73] = 73,
[74] = 73,
[75] = 10,
[76] = 10,
[77] = 14,
[78] = 18,
[79] = 15,
[80] = 18,
[81] = 15,
[82] = 14,
[83] = 71,
[84] = 64,
[85] = 60,
[86] = 45,
2023-12-05 21:42:11 +00:00
[87] = 47,
[88] = 54,
[89] = 49,
[90] = 46,
[91] = 63,
[92] = 59,
[93] = 52,
[94] = 70,
[95] = 57,
[96] = 62,
[97] = 36,
[98] = 40,
[99] = 34,
[100] = 61,
[101] = 73,
[102] = 102,
[103] = 103,
[104] = 73,
[105] = 72,
[106] = 106,
[107] = 106,
[108] = 14,
[109] = 109,
[110] = 106,
[111] = 15,
[112] = 10,
[113] = 18,
[114] = 10,
[115] = 15,
[116] = 14,
[117] = 18,
[118] = 36,
[119] = 46,
[120] = 49,
[121] = 60,
[122] = 122,
[123] = 59,
[124] = 64,
[125] = 63,
[126] = 57,
[127] = 54,
[128] = 52,
[129] = 62,
[130] = 70,
[131] = 131,
[132] = 45,
[133] = 71,
[134] = 40,
[135] = 47,
2023-12-05 21:42:11 +00:00
[136] = 136,
[137] = 34,
[138] = 138,
2023-12-02 07:34:23 +00:00
[139] = 139,
[140] = 140,
[141] = 141,
[142] = 142,
[143] = 143,
2023-12-02 07:34:23 +00:00
[144] = 144,
[145] = 61,
[146] = 143,
[147] = 138,
[148] = 144,
[149] = 138,
[150] = 150,
[151] = 144,
[152] = 152,
[153] = 49,
[154] = 59,
2023-11-30 14:30:25 +00:00
[155] = 155,
[156] = 141,
[157] = 150,
[158] = 141,
[159] = 143,
2023-12-05 21:42:11 +00:00
[160] = 160,
[161] = 160,
[162] = 162,
[163] = 73,
2023-12-02 07:34:23 +00:00
[164] = 164,
[165] = 72,
2023-12-05 21:42:11 +00:00
[166] = 166,
[167] = 167,
2023-12-02 07:34:23 +00:00
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 164,
[172] = 172,
[173] = 173,
[174] = 174,
[175] = 166,
[176] = 176,
[177] = 170,
[178] = 169,
[179] = 170,
[180] = 169,
[181] = 181,
[182] = 172,
[183] = 162,
2023-12-05 21:42:11 +00:00
[184] = 184,
[185] = 174,
[186] = 184,
[187] = 176,
[188] = 188,
[189] = 170,
[190] = 169,
[191] = 176,
[192] = 173,
[193] = 73,
[194] = 167,
[195] = 195,
[196] = 196,
[197] = 166,
[198] = 198,
2023-12-05 21:42:11 +00:00
[199] = 199,
[200] = 168,
[201] = 169,
[202] = 170,
[203] = 168,
[204] = 169,
[205] = 168,
[206] = 181,
[207] = 170,
[208] = 188,
[209] = 168,
[210] = 210,
[211] = 211,
[212] = 174,
[213] = 213,
[214] = 214,
[215] = 181,
[216] = 168,
[217] = 217,
2023-12-02 07:34:23 +00:00
[218] = 218,
[219] = 219,
[220] = 172,
2023-12-05 21:42:11 +00:00
[221] = 221,
[222] = 222,
[223] = 222,
[224] = 224,
[225] = 225,
[226] = 226,
[227] = 224,
[228] = 225,
[229] = 226,
[230] = 131,
2023-12-05 21:42:11 +00:00
[231] = 231,
[232] = 231,
[233] = 122,
[234] = 234,
[235] = 235,
[236] = 136,
[237] = 59,
[238] = 49,
[239] = 142,
[240] = 152,
2023-11-30 16:05:09 +00:00
[241] = 241,
2023-12-02 07:34:23 +00:00
[242] = 242,
[243] = 213,
[244] = 198,
[245] = 196,
[246] = 195,
2023-12-05 21:42:11 +00:00
[247] = 247,
2023-11-30 16:05:09 +00:00
[248] = 248,
2023-12-02 03:54:25 +00:00
[249] = 249,
[250] = 184,
2023-12-02 07:34:23 +00:00
[251] = 251,
[252] = 214,
[253] = 217,
[254] = 219,
[255] = 218,
[256] = 211,
[257] = 184,
[258] = 210,
[259] = 199,
[260] = 260,
[261] = 261,
[262] = 262,
[263] = 263,
[264] = 264,
[265] = 265,
[266] = 266,
[267] = 267,
[268] = 268,
[269] = 269,
2023-12-05 21:42:11 +00:00
[270] = 270,
[271] = 271,
[272] = 272,
[273] = 273,
[274] = 274,
[275] = 274,
[276] = 274,
[277] = 277,
[278] = 278,
2023-12-05 21:42:11 +00:00
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 282,
[283] = 277,
2023-12-02 07:34:23 +00:00
[284] = 284,
[285] = 285,
[286] = 282,
[287] = 280,
[288] = 277,
[289] = 289,
2023-12-05 21:42:11 +00:00
[290] = 290,
[291] = 291,
[292] = 292,
[293] = 280,
[294] = 282,
[295] = 290,
[296] = 289,
[297] = 285,
[298] = 284,
[299] = 289,
[300] = 290,
[301] = 285,
[302] = 302,
[303] = 303,
[304] = 304,
[305] = 305,
[306] = 306,
[307] = 307,
[308] = 308,
[309] = 309,
2023-12-05 21:42:11 +00:00
[310] = 310,
[311] = 311,
[312] = 307,
[313] = 309,
2023-12-02 07:34:23 +00:00
[314] = 314,
[315] = 315,
[316] = 311,
2023-12-05 21:42:11 +00:00
[317] = 315,
[318] = 309,
[319] = 314,
[320] = 315,
[321] = 309,
[322] = 309,
2023-12-05 21:42:11 +00:00
[323] = 314,
[324] = 305,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-12-05 21:42:11 +00:00
if (eof) ADVANCE(25);
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '%') ADVANCE(61);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-12-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == ')') ADVANCE(53);
if (lookahead == '*') ADVANCE(59);
2023-12-05 21:42:11 +00:00
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(58);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(60);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(68);
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(67);
2023-12-05 21:42:11 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(14);
2023-12-05 21:42:11 +00:00
if (lookahead == 'a') ADVANCE(39);
if (lookahead == 'e') ADVANCE(37);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(77);
2023-12-05 21:42:11 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-05 21:42:11 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 1:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '%') ADVANCE(61);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-12-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == ')') ADVANCE(53);
if (lookahead == '*') ADVANCE(59);
if (lookahead == '+') ADVANCE(55);
2023-12-05 21:42:11 +00:00
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(58);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(60);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(68);
if (lookahead == '=') ADVANCE(48);
if (lookahead == '>') ADVANCE(67);
2023-12-05 21:42:11 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(14);
2023-12-05 21:42:11 +00:00
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(21);
2023-12-05 21:42:11 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-05 21:42:11 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 2:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '%') ADVANCE(61);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(59);
2023-12-05 21:42:11 +00:00
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(56);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(60);
2023-12-05 21:42:11 +00:00
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(68);
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(67);
2023-12-05 21:42:11 +00:00
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(21);
2023-12-05 21:42:11 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 3:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '%') ADVANCE(61);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(59);
2023-12-05 21:42:11 +00:00
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(56);
if (lookahead == '/') ADVANCE(60);
2023-12-05 21:42:11 +00:00
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(68);
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(48);
if (lookahead == '>') ADVANCE(67);
if (lookahead == '|') ADVANCE(21);
2023-12-05 21:42:11 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 4:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '%') ADVANCE(61);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(59);
2023-12-05 21:42:11 +00:00
if (lookahead == '+') ADVANCE(54);
if (lookahead == '-') ADVANCE(57);
if (lookahead == '/') ADVANCE(60);
2023-12-05 21:42:11 +00:00
if (lookahead == ':') ADVANCE(50);
if (lookahead == '<') ADVANCE(68);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(67);
if (lookahead == '|') ADVANCE(21);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(52);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(22);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '>') ADVANCE(66);
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(14);
if (lookahead == 'e') ADVANCE(37);
2023-12-05 21:42:11 +00:00
if (lookahead == '{') ADVANCE(28);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-02 03:54:25 +00:00
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
2023-12-02 03:54:25 +00:00
END_STATE();
case 6:
2023-12-05 21:42:11 +00:00
if (lookahead == '"') ADVANCE(45);
2023-12-02 03:54:25 +00:00
if (lookahead != 0) ADVANCE(6);
END_STATE();
case 7:
if (lookahead == '#') ADVANCE(20);
2023-12-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == ')') ADVANCE(53);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(13);
if (lookahead == '>') ADVANCE(66);
2023-12-05 21:42:11 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '|') ADVANCE(77);
2023-12-02 03:54:25 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(7)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 8:
if (lookahead == '&') ADVANCE(64);
END_STATE();
case 9:
2023-12-05 21:42:11 +00:00
if (lookahead == '\'') ADVANCE(45);
2023-12-02 03:54:25 +00:00
if (lookahead != 0) ADVANCE(9);
END_STATE();
case 10:
2023-12-05 21:42:11 +00:00
if (lookahead == '.') ADVANCE(51);
END_STATE();
case 11:
if (lookahead == '=') ADVANCE(63);
END_STATE();
case 12:
if (lookahead == '=') ADVANCE(62);
if (lookahead == '>') ADVANCE(74);
END_STATE();
case 13:
if (lookahead == '>') ADVANCE(76);
END_STATE();
case 14:
if (lookahead == '`') ADVANCE(45);
if (lookahead != 0) ADVANCE(14);
END_STATE();
case 15:
if (lookahead == 'f') ADVANCE(18);
END_STATE();
case 16:
if (lookahead == 'f') ADVANCE(73);
END_STATE();
case 17:
if (lookahead == 'i') ADVANCE(16);
END_STATE();
case 18:
if (lookahead == 'o') ADVANCE(19);
END_STATE();
case 19:
if (lookahead == 'r') ADVANCE(75);
END_STATE();
case 20:
2023-12-05 21:42:11 +00:00
if (lookahead == '|') ADVANCE(27);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(20);
END_STATE();
case 21:
if (lookahead == '|') ADVANCE(65);
END_STATE();
case 22:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
case 23:
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
END_STATE();
case 24:
2023-12-05 21:42:11 +00:00
if (eof) ADVANCE(25);
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(20);
if (lookahead == '%') ADVANCE(61);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-12-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == '*') ADVANCE(59);
2023-12-05 21:42:11 +00:00
if (lookahead == '+') ADVANCE(55);
if (lookahead == '-') ADVANCE(58);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(60);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(68);
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(48);
if (lookahead == '>') ADVANCE(67);
2023-12-05 21:42:11 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(14);
2023-12-05 21:42:11 +00:00
if (lookahead == 'a') ADVANCE(39);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(21);
2023-12-05 21:42:11 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-05 21:42:11 +00:00
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-05 21:42:11 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-12-05 21:42:11 +00:00
case 25:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-12-05 21:42:11 +00:00
case 26:
ACCEPT_TOKEN(sym__comment);
END_STATE();
2023-12-05 21:42:11 +00:00
case 27:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym__comment);
2023-12-05 21:42:11 +00:00
if (lookahead == '|') ADVANCE(27);
2023-12-02 03:54:25 +00:00
if (lookahead == '\n' ||
2023-12-05 21:42:11 +00:00
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(20);
END_STATE();
2023-12-05 21:42:11 +00:00
case 28:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-12-05 21:42:11 +00:00
case 29:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-12-05 21:42:11 +00:00
case 30:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
2023-12-05 21:42:11 +00:00
case 31:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-12-05 21:42:11 +00:00
case 32:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-11-30 14:30:25 +00:00
case 33:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(17);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 34:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(15);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
2023-11-30 16:05:09 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 35:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'c') ADVANCE(34);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'e') ADVANCE(33);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 37:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'l') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 38:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'n') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 39:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 's') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 40:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 's') ADVANCE(36);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 41:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'y') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 42:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 43:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
2023-11-30 16:05:09 +00:00
case 44:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(sym_float);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
END_STATE();
2023-11-30 16:05:09 +00:00
case 45:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-11-30 16:05:09 +00:00
case 46:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 47:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 48:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(62);
END_STATE();
2023-11-30 16:05:09 +00:00
case 49:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(62);
if (lookahead == '>') ADVANCE(74);
END_STATE();
2023-11-30 16:05:09 +00:00
case 50:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
2023-11-30 16:05:09 +00:00
case 51:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
2023-11-30 16:05:09 +00:00
case 52:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
2023-11-30 16:05:09 +00:00
case 53:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
2023-11-30 16:05:09 +00:00
END_STATE();
case 54:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
2023-11-30 16:05:09 +00:00
END_STATE();
2023-11-30 14:30:25 +00:00
case 55:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(71);
END_STATE();
2023-11-30 14:30:25 +00:00
case 56:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(72);
if (lookahead == '>') ADVANCE(76);
END_STATE();
2023-11-30 14:30:25 +00:00
case 57:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '>') ADVANCE(76);
END_STATE();
2023-11-30 14:30:25 +00:00
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == '=') ADVANCE(72);
if (lookahead == '>') ADVANCE(76);
END_STATE();
2023-11-30 14:30:25 +00:00
case 59:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-30 14:30:25 +00:00
case 60:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-30 14:30:25 +00:00
case 61:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 62:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 63:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 64:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-30 14:30:25 +00:00
case 65:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 66:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 67:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(69);
END_STATE();
2023-11-30 14:30:25 +00:00
case 68:
ACCEPT_TOKEN(anon_sym_LT);
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(70);
END_STATE();
2023-11-30 14:30:25 +00:00
case 69:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 70:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 71:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 72:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 73:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 74:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
case 75:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
case 76:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
case 77:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_PIPE);
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);
if (lookahead == 'b') ADVANCE(2);
2023-11-28 22:54:17 +00:00
if (lookahead == 'e') ADVANCE(3);
if (lookahead == 'f') ADVANCE(4);
if (lookahead == 'i') ADVANCE(5);
2023-11-30 14:48:56 +00:00
if (lookahead == 'm') ADVANCE(6);
if (lookahead == 'n') ADVANCE(7);
if (lookahead == 'r') ADVANCE(8);
if (lookahead == 's') ADVANCE(9);
if (lookahead == 't') ADVANCE(10);
if (lookahead == 'u') ADVANCE(11);
if (lookahead == 'w') ADVANCE(12);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-11-30 14:48:56 +00:00
if (lookahead == 'n') ADVANCE(13);
if (lookahead == 's') ADVANCE(14);
END_STATE();
case 2:
2023-11-30 14:48:56 +00:00
if (lookahead == 'o') ADVANCE(15);
END_STATE();
case 3:
2023-11-30 14:48:56 +00:00
if (lookahead == 'l') ADVANCE(16);
END_STATE();
case 4:
2023-11-30 14:48:56 +00:00
if (lookahead == 'a') ADVANCE(17);
if (lookahead == 'l') ADVANCE(18);
if (lookahead == 'n') ADVANCE(19);
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 5:
2023-11-30 14:48:56 +00:00
if (lookahead == 'f') ADVANCE(21);
if (lookahead == 'n') ADVANCE(22);
END_STATE();
case 6:
2023-11-30 14:48:56 +00:00
if (lookahead == 'a') ADVANCE(23);
END_STATE();
case 7:
2023-11-30 14:48:56 +00:00
if (lookahead == 'u') ADVANCE(24);
END_STATE();
case 8:
2023-11-30 14:48:56 +00:00
if (lookahead == 'e') ADVANCE(25);
END_STATE();
case 9:
2023-11-30 14:48:56 +00:00
if (lookahead == 't') ADVANCE(26);
END_STATE();
case 10:
2023-11-30 14:48:56 +00:00
if (lookahead == 'r') ADVANCE(27);
END_STATE();
case 11:
2023-11-30 14:48:56 +00:00
if (lookahead == 's') ADVANCE(28);
END_STATE();
case 12:
2023-11-30 14:48:56 +00:00
if (lookahead == 'h') ADVANCE(29);
END_STATE();
case 13:
2023-11-30 14:48:56 +00:00
if (lookahead == 'y') ADVANCE(30);
END_STATE();
case 14:
2023-11-30 14:48:56 +00:00
if (lookahead == 'y') ADVANCE(31);
END_STATE();
case 15:
2023-11-30 14:48:56 +00:00
if (lookahead == 'o') ADVANCE(32);
END_STATE();
case 16:
2023-11-30 14:48:56 +00:00
if (lookahead == 's') ADVANCE(33);
END_STATE();
case 17:
2023-11-30 14:48:56 +00:00
if (lookahead == 'l') ADVANCE(34);
END_STATE();
case 18:
2023-11-30 14:48:56 +00:00
if (lookahead == 'o') ADVANCE(35);
END_STATE();
case 19:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_fn);
END_STATE();
case 20:
2023-11-30 14:48:56 +00:00
if (lookahead == 'r') ADVANCE(36);
END_STATE();
case 21:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 22:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 't') ADVANCE(37);
END_STATE();
case 23:
2023-11-30 14:48:56 +00:00
if (lookahead == 'p') ADVANCE(38);
2023-11-30 14:30:25 +00:00
if (lookahead == 't') ADVANCE(39);
END_STATE();
case 24:
2023-11-30 14:48:56 +00:00
if (lookahead == 'm') ADVANCE(40);
END_STATE();
case 25:
2023-11-30 14:48:56 +00:00
if (lookahead == 't') ADVANCE(41);
END_STATE();
case 26:
2023-11-30 14:48:56 +00:00
if (lookahead == 'r') ADVANCE(42);
END_STATE();
case 27:
2023-11-30 14:48:56 +00:00
if (lookahead == 'u') ADVANCE(43);
END_STATE();
case 28:
2023-11-30 14:48:56 +00:00
if (lookahead == 'e') ADVANCE(44);
END_STATE();
case 29:
2023-11-30 14:48:56 +00:00
if (lookahead == 'i') ADVANCE(45);
END_STATE();
case 30:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_any);
END_STATE();
case 31:
2023-11-30 14:48:56 +00:00
if (lookahead == 'n') ADVANCE(46);
END_STATE();
case 32:
2023-11-30 14:48:56 +00:00
if (lookahead == 'l') ADVANCE(47);
END_STATE();
case 33:
2023-11-30 14:48:56 +00:00
if (lookahead == 'e') ADVANCE(48);
END_STATE();
case 34:
2023-11-30 14:48:56 +00:00
if (lookahead == 's') ADVANCE(49);
END_STATE();
case 35:
2023-11-30 14:48:56 +00:00
if (lookahead == 'a') ADVANCE(50);
END_STATE();
case 36:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 37:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_int);
END_STATE();
case 38:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_map);
END_STATE();
case 39:
2023-11-30 14:48:56 +00:00
if (lookahead == 'c') ADVANCE(51);
END_STATE();
case 40:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_num);
END_STATE();
case 41:
2023-11-30 14:48:56 +00:00
if (lookahead == 'u') ADVANCE(52);
END_STATE();
case 42:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_str);
END_STATE();
case 43:
2023-11-30 14:48:56 +00:00
if (lookahead == 'e') ADVANCE(53);
END_STATE();
case 44:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_use);
END_STATE();
case 45:
2023-11-30 14:48:56 +00:00
if (lookahead == 'l') ADVANCE(54);
END_STATE();
case 46:
2023-11-30 14:48:56 +00:00
if (lookahead == 'c') ADVANCE(55);
END_STATE();
case 47:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_bool);
END_STATE();
case 48:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 49:
2023-11-30 14:48:56 +00:00
if (lookahead == 'e') ADVANCE(56);
END_STATE();
case 50:
2023-11-30 14:48:56 +00:00
if (lookahead == 't') ADVANCE(57);
END_STATE();
case 51:
2023-11-30 14:48:56 +00:00
if (lookahead == 'h') ADVANCE(58);
END_STATE();
case 52:
2023-11-30 14:48:56 +00:00
if (lookahead == 'r') ADVANCE(59);
END_STATE();
case 53:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 54:
2023-11-30 14:48:56 +00:00
if (lookahead == 'e') ADVANCE(60);
END_STATE();
case 55:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 56:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 57:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_float);
END_STATE();
case 58:
2023-11-30 14:48:56 +00:00
ACCEPT_TOKEN(anon_sym_match);
END_STATE();
case 59:
2023-11-30 14:48:56 +00:00
if (lookahead == 'n') ADVANCE(61);
END_STATE();
case 60:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
2023-11-30 14:48:56 +00:00
case 61:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_return);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[1] = {.lex_state = 24},
[2] = {.lex_state = 24},
[3] = {.lex_state = 24},
[4] = {.lex_state = 24},
[5] = {.lex_state = 24},
[6] = {.lex_state = 24},
[7] = {.lex_state = 24},
[8] = {.lex_state = 24},
[9] = {.lex_state = 24},
[10] = {.lex_state = 24},
[11] = {.lex_state = 24},
[12] = {.lex_state = 24},
[13] = {.lex_state = 24},
[14] = {.lex_state = 24},
[15] = {.lex_state = 24},
[16] = {.lex_state = 24},
[17] = {.lex_state = 24},
[18] = {.lex_state = 24},
[19] = {.lex_state = 24},
[20] = {.lex_state = 24},
[21] = {.lex_state = 24},
[22] = {.lex_state = 24},
[23] = {.lex_state = 24},
[24] = {.lex_state = 24},
[25] = {.lex_state = 24},
[26] = {.lex_state = 24},
[27] = {.lex_state = 24},
[28] = {.lex_state = 24},
[29] = {.lex_state = 24},
[30] = {.lex_state = 24},
[31] = {.lex_state = 24},
[32] = {.lex_state = 24},
[33] = {.lex_state = 24},
[34] = {.lex_state = 24},
[35] = {.lex_state = 24},
[36] = {.lex_state = 24},
[37] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[38] = {.lex_state = 24},
[39] = {.lex_state = 24},
[40] = {.lex_state = 24},
[41] = {.lex_state = 1},
[42] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[43] = {.lex_state = 24},
[44] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[45] = {.lex_state = 24},
[46] = {.lex_state = 24},
[47] = {.lex_state = 24},
[48] = {.lex_state = 24},
[49] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[50] = {.lex_state = 24},
[51] = {.lex_state = 24},
[52] = {.lex_state = 24},
[53] = {.lex_state = 1},
[54] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[55] = {.lex_state = 24},
[56] = {.lex_state = 24},
[57] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[58] = {.lex_state = 24},
[59] = {.lex_state = 24},
[60] = {.lex_state = 24},
[61] = {.lex_state = 24},
[62] = {.lex_state = 24},
[63] = {.lex_state = 24},
[64] = {.lex_state = 24},
[65] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[66] = {.lex_state = 24},
[67] = {.lex_state = 1},
[68] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[69] = {.lex_state = 24},
[70] = {.lex_state = 24},
[71] = {.lex_state = 24},
[72] = {.lex_state = 24},
[73] = {.lex_state = 24},
[74] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[75] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[76] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[77] = {.lex_state = 1},
[78] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[79] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[80] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[81] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[82] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[83] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[84] = {.lex_state = 1},
[85] = {.lex_state = 1},
[86] = {.lex_state = 1},
[87] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[88] = {.lex_state = 1},
[89] = {.lex_state = 1},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[92] = {.lex_state = 1},
[93] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[94] = {.lex_state = 1},
[95] = {.lex_state = 1},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
[104] = {.lex_state = 1},
[105] = {.lex_state = 1},
[106] = {.lex_state = 1},
[107] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[108] = {.lex_state = 2},
[109] = {.lex_state = 1},
[110] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[111] = {.lex_state = 2},
[112] = {.lex_state = 2},
[113] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[114] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[115] = {.lex_state = 2},
[116] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[117] = {.lex_state = 2},
[118] = {.lex_state = 2},
[119] = {.lex_state = 2},
[120] = {.lex_state = 2},
[121] = {.lex_state = 2},
[122] = {.lex_state = 0},
[123] = {.lex_state = 2},
[124] = {.lex_state = 2},
[125] = {.lex_state = 2},
[126] = {.lex_state = 2},
[127] = {.lex_state = 2},
[128] = {.lex_state = 2},
[129] = {.lex_state = 2},
[130] = {.lex_state = 2},
[131] = {.lex_state = 0},
[132] = {.lex_state = 2},
[133] = {.lex_state = 2},
[134] = {.lex_state = 2},
[135] = {.lex_state = 2},
[136] = {.lex_state = 0},
[137] = {.lex_state = 3},
2023-12-02 07:34:23 +00:00
[138] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 0},
[143] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[144] = {.lex_state = 1},
[145] = {.lex_state = 3},
[146] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[147] = {.lex_state = 1},
[148] = {.lex_state = 1},
[149] = {.lex_state = 1},
[150] = {.lex_state = 1},
[151] = {.lex_state = 1},
[152] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[153] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[154] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[155] = {.lex_state = 1},
[156] = {.lex_state = 1},
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 1},
[162] = {.lex_state = 1},
[163] = {.lex_state = 2},
[164] = {.lex_state = 1},
[165] = {.lex_state = 2},
2023-11-30 14:48:56 +00:00
[166] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[167] = {.lex_state = 1},
[168] = {.lex_state = 1},
[169] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[170] = {.lex_state = 1},
[171] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[172] = {.lex_state = 1},
[173] = {.lex_state = 1},
[174] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[175] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[176] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[177] = {.lex_state = 1},
[178] = {.lex_state = 1},
[179] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[180] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[181] = {.lex_state = 1},
[182] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[183] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[184] = {.lex_state = 24},
[185] = {.lex_state = 1},
[186] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[187] = {.lex_state = 1},
[188] = {.lex_state = 1},
[189] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[190] = {.lex_state = 1},
[191] = {.lex_state = 1},
[192] = {.lex_state = 1},
[193] = {.lex_state = 2},
[194] = {.lex_state = 1},
[195] = {.lex_state = 24},
[196] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[197] = {.lex_state = 1},
[198] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[199] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[200] = {.lex_state = 1},
[201] = {.lex_state = 1},
[202] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[203] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[204] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[205] = {.lex_state = 1},
[206] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[207] = {.lex_state = 1},
[208] = {.lex_state = 1},
[209] = {.lex_state = 1},
[210] = {.lex_state = 24},
[211] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[212] = {.lex_state = 1},
[213] = {.lex_state = 24},
[214] = {.lex_state = 24},
[215] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[216] = {.lex_state = 1},
[217] = {.lex_state = 24},
2023-12-05 21:42:11 +00:00
[218] = {.lex_state = 24},
[219] = {.lex_state = 24},
[220] = {.lex_state = 1},
[221] = {.lex_state = 1},
[222] = {.lex_state = 2},
[223] = {.lex_state = 2},
[224] = {.lex_state = 2},
[225] = {.lex_state = 2},
[226] = {.lex_state = 2},
[227] = {.lex_state = 2},
[228] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[229] = {.lex_state = 2},
[230] = {.lex_state = 5},
2023-12-02 03:54:25 +00:00
[231] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[232] = {.lex_state = 2},
[233] = {.lex_state = 5},
[234] = {.lex_state = 4},
[235] = {.lex_state = 24},
[236] = {.lex_state = 5},
[237] = {.lex_state = 5},
[238] = {.lex_state = 5},
[239] = {.lex_state = 5},
[240] = {.lex_state = 5},
2023-12-02 07:34:23 +00:00
[241] = {.lex_state = 7},
[242] = {.lex_state = 7},
[243] = {.lex_state = 1},
[244] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[245] = {.lex_state = 1},
[246] = {.lex_state = 1},
[247] = {.lex_state = 7},
[248] = {.lex_state = 7},
[249] = {.lex_state = 7},
2023-12-05 21:42:11 +00:00
[250] = {.lex_state = 1},
[251] = {.lex_state = 7},
2023-12-05 21:42:11 +00:00
[252] = {.lex_state = 1},
[253] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[254] = {.lex_state = 1},
[255] = {.lex_state = 1},
[256] = {.lex_state = 1},
[257] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[258] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[259] = {.lex_state = 1},
[260] = {.lex_state = 1},
[261] = {.lex_state = 1},
[262] = {.lex_state = 1},
[263] = {.lex_state = 1},
[264] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[265] = {.lex_state = 1},
[266] = {.lex_state = 1},
[267] = {.lex_state = 1},
[268] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[269] = {.lex_state = 1},
[270] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[271] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[272] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[273] = {.lex_state = 1},
[274] = {.lex_state = 24},
[275] = {.lex_state = 24},
[276] = {.lex_state = 24},
[277] = {.lex_state = 7},
[278] = {.lex_state = 7},
2023-11-30 14:48:56 +00:00
[279] = {.lex_state = 1},
[280] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[281] = {.lex_state = 24},
[282] = {.lex_state = 1},
[283] = {.lex_state = 7},
2023-11-30 14:48:56 +00:00
[284] = {.lex_state = 1},
[285] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[286] = {.lex_state = 1},
[287] = {.lex_state = 1},
[288] = {.lex_state = 7},
[289] = {.lex_state = 1},
[290] = {.lex_state = 7},
[291] = {.lex_state = 1},
[292] = {.lex_state = 7},
[293] = {.lex_state = 1},
[294] = {.lex_state = 1},
[295] = {.lex_state = 7},
2023-12-05 21:42:11 +00:00
[296] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[297] = {.lex_state = 1},
[298] = {.lex_state = 1},
[299] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[300] = {.lex_state = 7},
[301] = {.lex_state = 1},
[302] = {.lex_state = 7},
2023-12-02 07:34:23 +00:00
[303] = {.lex_state = 1},
[304] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[305] = {.lex_state = 1},
[306] = {.lex_state = 5},
[307] = {.lex_state = 0},
[308] = {.lex_state = 0},
[309] = {.lex_state = 0},
[310] = {.lex_state = 24},
[311] = {.lex_state = 1},
[312] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[313] = {.lex_state = 0},
[314] = {.lex_state = 0},
[315] = {.lex_state = 0},
[316] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[317] = {.lex_state = 0},
[318] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[319] = {.lex_state = 0},
[320] = {.lex_state = 0},
[321] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[322] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[323] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[324] = {.lex_state = 1},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_COMMA] = 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_RBRACK] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[anon_sym_DOT_DOT] = ACTIONS(1),
2023-11-30 16:05:09 +00:00
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = 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_GT] = ACTIONS(1),
[anon_sym_LT] = 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_match] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_asyncfor] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_return] = ACTIONS(1),
[anon_sym_use] = ACTIONS(1),
[anon_sym_any] = ACTIONS(1),
[anon_sym_bool] = ACTIONS(1),
2023-11-30 14:30:25 +00:00
[anon_sym_float] = ACTIONS(1),
2023-11-30 00:23:42 +00:00
[anon_sym_DASH_GT] = ACTIONS(1),
[anon_sym_int] = ACTIONS(1),
[anon_sym_map] = ACTIONS(1),
2023-11-30 00:23:42 +00:00
[anon_sym_num] = ACTIONS(1),
[anon_sym_str] = ACTIONS(1),
2023-12-05 21:42:11 +00:00
[anon_sym_fn] = ACTIONS(1),
[anon_sym_PIPE] = ACTIONS(1),
},
[1] = {
[sym_root] = STATE(308),
[sym_block] = STATE(184),
[sym_statement] = STATE(21),
[sym_expression] = STATE(74),
[sym_value] = STATE(62),
[sym_boolean] = STATE(40),
[sym_list] = STATE(40),
[sym_map] = STATE(40),
[sym_index] = STATE(61),
[sym_math] = STATE(62),
[sym_logic] = STATE(62),
[sym_assignment] = STATE(184),
[sym_index_assignment] = STATE(184),
[sym_if_else] = STATE(184),
[sym_if] = STATE(131),
[sym_match] = STATE(184),
[sym_while] = STATE(184),
[sym_for] = STATE(184),
[sym_return] = STATE(184),
[sym_use] = STATE(184),
[sym_function] = STATE(40),
[sym_function_call] = STATE(62),
[sym_yield] = STATE(62),
[aux_sym_root_repeat1] = STATE(21),
[sym_identifier] = ACTIONS(5),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(7),
[anon_sym_LBRACE] = ACTIONS(9),
2023-11-30 16:05:09 +00:00
[sym_integer] = ACTIONS(11),
[sym_float] = ACTIONS(13),
[sym_string] = ACTIONS(13),
[anon_sym_true] = ACTIONS(15),
[anon_sym_false] = ACTIONS(15),
[anon_sym_LBRACK] = ACTIONS(17),
[anon_sym_LPAREN] = ACTIONS(19),
2023-12-05 21:42:11 +00:00
[anon_sym_if] = ACTIONS(21),
[anon_sym_match] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_asyncfor] = ACTIONS(29),
[anon_sym_return] = ACTIONS(31),
[anon_sym_use] = ACTIONS(33),
[anon_sym_fn] = ACTIONS(35),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-12-05 21:42:11 +00:00
[0] = 26,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
2023-12-02 07:34:23 +00:00
ACTIONS(37), 1,
sym_identifier,
ACTIONS(39), 1,
anon_sym_RBRACE,
STATE(61), 1,
2023-11-28 22:54:17 +00:00
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
2023-11-28 22:54:17 +00:00
sym_if,
STATE(299), 1,
2023-12-02 07:34:23 +00:00
aux_sym_map_repeat1,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-11-28 22:54:17 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[97] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
ACTIONS(23), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
ACTIONS(25), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
ACTIONS(27), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
ACTIONS(29), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
ACTIONS(33), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(37), 1,
sym_identifier,
ACTIONS(41), 1,
anon_sym_RBRACE,
STATE(61), 1,
2023-11-28 22:54:17 +00:00
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
2023-11-28 22:54:17 +00:00
sym_if,
STATE(296), 1,
aux_sym_map_repeat1,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-11-28 22:54:17 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[194] = 26,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(37), 1,
sym_identifier,
ACTIONS(43), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
STATE(289), 1,
2023-12-05 21:42:11 +00:00
aux_sym_map_repeat1,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[291] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
sym_identifier,
ACTIONS(50), 1,
anon_sym_async,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(56), 1,
sym_integer,
ACTIONS(65), 1,
anon_sym_LBRACK,
ACTIONS(68), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(71), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(74), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(77), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(80), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(83), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
ACTIONS(86), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(89), 1,
anon_sym_use,
ACTIONS(92), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
ACTIONS(45), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(62), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[386] = 25,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(5), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-11-30 16:05:09 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-11-30 16:05:09 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-11-30 16:05:09 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-11-30 16:05:09 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-11-30 16:05:09 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
2023-11-30 16:05:09 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(95), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
STATE(61), 1,
2023-12-02 03:54:25 +00:00
sym_index,
STATE(74), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(131), 1,
2023-12-02 03:54:25 +00:00
sym_if,
ACTIONS(13), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[480] = 25,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(97), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[574] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(99), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[668] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(101), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[762] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(189), 1,
sym_logic_operator,
STATE(190), 1,
sym_math_operator,
ACTIONS(105), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(103), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[816] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(107), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[910] = 25,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(109), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1004] = 25,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(5), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(111), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1098] = 5,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(189), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
STATE(190), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
ACTIONS(115), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(113), 23,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[1152] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(121), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(190), 1,
sym_math_operator,
ACTIONS(119), 17,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(117), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[1208] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(123), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1302] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(125), 1,
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1396] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(121), 1,
anon_sym_COLON,
ACTIONS(139), 1,
anon_sym_DASH_GT,
STATE(189), 1,
sym_logic_operator,
STATE(190), 1,
sym_math_operator,
ACTIONS(131), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
ACTIONS(127), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(129), 13,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[1462] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(141), 1,
anon_sym_DOT_DOT,
STATE(189), 1,
sym_logic_operator,
STATE(190), 1,
sym_math_operator,
ACTIONS(105), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(103), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[1518] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(143), 1,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1612] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(145), 1,
ts_builtin_sym_end,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1706] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(204), 1,
sym_math_operator,
STATE(207), 1,
sym_logic_operator,
ACTIONS(115), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(113), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[1759] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(20), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1850] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(6), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[1941] = 24,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(5), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
2023-11-30 16:05:09 +00:00
sym_index,
STATE(74), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
STATE(131), 1,
2023-11-30 16:05:09 +00:00
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(13), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-11-30 16:05:09 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2032] = 24,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
2023-11-30 16:05:09 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
2023-11-30 16:05:09 +00:00
sym_index,
STATE(74), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
STATE(131), 1,
2023-11-30 16:05:09 +00:00
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(8), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-11-30 16:05:09 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2123] = 24,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(5), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
2023-11-30 16:05:09 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
2023-11-30 16:05:09 +00:00
sym_index,
STATE(74), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
STATE(131), 1,
2023-11-30 16:05:09 +00:00
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(9), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-11-30 16:05:09 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2214] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2305] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(16), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2396] = 6,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(147), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
STATE(204), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(207), 1,
sym_logic_operator,
ACTIONS(119), 17,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(117), 21,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[2451] = 24,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(5), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(31), 1,
2023-11-30 14:30:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(33), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
2023-12-02 03:54:25 +00:00
sym_index,
STATE(74), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(131), 1,
2023-12-02 03:54:25 +00:00
sym_if,
ACTIONS(13), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(11), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2542] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(139), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(147), 1,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
STATE(204), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
STATE(207), 1,
sym_logic_operator,
ACTIONS(131), 2,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 3,
2023-12-05 21:42:11 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-12-05 21:42:11 +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,
ACTIONS(127), 11,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(129), 13,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[2607] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(35), 1,
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2698] = 8,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
anon_sym_EQ,
ACTIONS(155), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
STATE(55), 1,
2023-12-05 21:42:11 +00:00
sym_assignment_operator,
STATE(276), 1,
2023-12-05 21:42:11 +00:00
sym_type_definition,
ACTIONS(157), 2,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 15,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(149), 20,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[2757] = 24,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(74), 1,
sym_expression,
STATE(131), 1,
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(184), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2848] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(161), 17,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(159), 23,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[2896] = 22,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(179), 1,
anon_sym_RPAREN,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(183), 1,
anon_sym_fn,
STATE(103), 1,
sym_expression,
STATE(148), 1,
aux_sym__expression_list,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(133), 4,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(135), 6,
2023-12-05 21:42:11 +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,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[2982] = 24,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(167), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(183), 1,
anon_sym_fn,
ACTIONS(185), 1,
sym_identifier,
ACTIONS(187), 1,
anon_sym_async,
ACTIONS(189), 1,
anon_sym_LBRACE,
ACTIONS(191), 1,
2023-11-30 14:30:25 +00:00
anon_sym_if,
ACTIONS(193), 1,
2023-11-30 14:30:25 +00:00
anon_sym_match,
ACTIONS(195), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
ACTIONS(197), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
ACTIONS(199), 1,
anon_sym_asyncfor,
ACTIONS(201), 1,
2023-11-30 14:30:25 +00:00
anon_sym_return,
ACTIONS(203), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
STATE(100), 1,
sym_index,
STATE(104), 1,
sym_expression,
STATE(230), 1,
sym_if,
STATE(256), 1,
sym_statement,
ACTIONS(169), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(257), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3072] = 24,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(167), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(173), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(183), 1,
anon_sym_fn,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(189), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(191), 1,
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(193), 1,
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(195), 1,
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(197), 1,
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(199), 1,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(201), 1,
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_use,
STATE(100), 1,
2023-12-02 03:54:25 +00:00
sym_index,
STATE(104), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(230), 1,
2023-12-02 03:54:25 +00:00
sym_if,
STATE(254), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
ACTIONS(169), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(257), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3162] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(207), 17,
anon_sym_async,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(205), 23,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[3210] = 22,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(183), 1,
anon_sym_fn,
ACTIONS(209), 1,
anon_sym_RPAREN,
STATE(103), 1,
sym_expression,
STATE(144), 1,
aux_sym__expression_list,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(133), 4,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(135), 6,
2023-12-05 21:42:11 +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,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3296] = 22,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(183), 1,
anon_sym_fn,
ACTIONS(211), 1,
anon_sym_RPAREN,
STATE(103), 1,
sym_expression,
STATE(147), 1,
aux_sym__expression_list,
STATE(174), 1,
sym_logic_operator,
STATE(221), 1,
sym_math_operator,
ACTIONS(137), 2,
2023-12-02 07:34:23 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(133), 4,
anon_sym_PLUS,
2023-12-02 07:34:23 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(135), 6,
2023-12-02 07:34:23 +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,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3382] = 24,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(183), 1,
anon_sym_fn,
ACTIONS(185), 1,
sym_identifier,
ACTIONS(187), 1,
anon_sym_async,
ACTIONS(189), 1,
anon_sym_LBRACE,
ACTIONS(191), 1,
2023-12-05 21:42:11 +00:00
anon_sym_if,
ACTIONS(193), 1,
2023-12-05 21:42:11 +00:00
anon_sym_match,
ACTIONS(195), 1,
2023-12-05 21:42:11 +00:00
anon_sym_while,
ACTIONS(197), 1,
2023-12-05 21:42:11 +00:00
anon_sym_for,
ACTIONS(199), 1,
anon_sym_asyncfor,
ACTIONS(201), 1,
2023-12-05 21:42:11 +00:00
anon_sym_return,
ACTIONS(203), 1,
2023-12-05 21:42:11 +00:00
anon_sym_use,
STATE(100), 1,
sym_index,
STATE(104), 1,
sym_expression,
STATE(230), 1,
sym_if,
STATE(243), 1,
sym_statement,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(257), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3472] = 22,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(183), 1,
anon_sym_fn,
ACTIONS(213), 1,
anon_sym_RPAREN,
STATE(103), 1,
sym_expression,
STATE(138), 1,
aux_sym__expression_list,
STATE(212), 1,
sym_logic_operator,
STATE(221), 1,
sym_math_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(135), 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,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3558] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(217), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(215), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
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-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[3606] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(221), 17,
2023-12-02 07:34:23 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(219), 23,
ts_builtin_sym_end,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
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,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3654] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(225), 17,
2023-12-02 07:34:23 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(223), 23,
2023-12-02 07:34:23 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[3702] = 24,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
ACTIONS(191), 1,
anon_sym_if,
ACTIONS(193), 1,
anon_sym_match,
ACTIONS(195), 1,
anon_sym_while,
ACTIONS(197), 1,
anon_sym_for,
ACTIONS(199), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
ACTIONS(203), 1,
anon_sym_use,
ACTIONS(227), 1,
sym_identifier,
ACTIONS(229), 1,
anon_sym_LBRACE,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_return,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(145), 1,
2023-12-02 03:54:25 +00:00
sym_index,
STATE(193), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(230), 1,
2023-12-02 03:54:25 +00:00
sym_if,
STATE(279), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(250), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3792] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(247), 17,
anon_sym_async,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
2023-12-02 07:34:23 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(245), 23,
2023-12-02 07:34:23 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[3840] = 24,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(167), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(185), 1,
sym_identifier,
ACTIONS(187), 1,
anon_sym_async,
ACTIONS(189), 1,
anon_sym_LBRACE,
ACTIONS(191), 1,
anon_sym_if,
ACTIONS(193), 1,
anon_sym_match,
ACTIONS(195), 1,
anon_sym_while,
ACTIONS(197), 1,
anon_sym_for,
ACTIONS(199), 1,
anon_sym_asyncfor,
ACTIONS(201), 1,
anon_sym_return,
ACTIONS(203), 1,
anon_sym_use,
STATE(100), 1,
sym_index,
STATE(101), 1,
sym_expression,
STATE(230), 1,
sym_if,
STATE(265), 1,
sym_statement,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(250), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3930] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(61), 1,
sym_index,
STATE(73), 1,
sym_expression,
STATE(131), 1,
sym_if,
STATE(219), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(186), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4020] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(251), 17,
2023-12-02 07:34:23 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(249), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[4068] = 22,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
ACTIONS(163), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(181), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(253), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(103), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
STATE(151), 1,
2023-12-02 07:34:23 +00:00
aux_sym__expression_list,
STATE(169), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
STATE(170), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(133), 4,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(98), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(135), 6,
2023-11-30 16:05:09 +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,
STATE(96), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4154] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(257), 17,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(255), 23,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4202] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(7), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
ACTIONS(9), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(17), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-05 21:42:11 +00:00
anon_sym_if,
ACTIONS(23), 1,
2023-12-05 21:42:11 +00:00
anon_sym_match,
ACTIONS(25), 1,
2023-12-05 21:42:11 +00:00
anon_sym_while,
ACTIONS(27), 1,
2023-12-05 21:42:11 +00:00
anon_sym_for,
ACTIONS(29), 1,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(31), 1,
2023-12-05 21:42:11 +00:00
anon_sym_return,
ACTIONS(33), 1,
2023-12-05 21:42:11 +00:00
anon_sym_use,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(61), 1,
2023-12-05 21:42:11 +00:00
sym_index,
STATE(73), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
STATE(131), 1,
2023-12-05 21:42:11 +00:00
sym_if,
STATE(211), 1,
2023-12-05 21:42:11 +00:00
sym_statement,
ACTIONS(13), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(186), 9,
2023-12-05 21:42:11 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4292] = 8,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(155), 1,
anon_sym_LT,
ACTIONS(259), 1,
anon_sym_EQ,
STATE(55), 1,
sym_assignment_operator,
STATE(276), 1,
sym_type_definition,
ACTIONS(157), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 15,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(149), 19,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
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_asyncfor,
anon_sym_DASH_GT,
[4350] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(263), 17,
anon_sym_async,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(261), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
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_asyncfor,
anon_sym_DASH_GT,
[4398] = 24,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(187), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
ACTIONS(191), 1,
2023-12-05 21:42:11 +00:00
anon_sym_if,
ACTIONS(193), 1,
2023-12-05 21:42:11 +00:00
anon_sym_match,
ACTIONS(195), 1,
2023-12-05 21:42:11 +00:00
anon_sym_while,
ACTIONS(197), 1,
2023-12-05 21:42:11 +00:00
anon_sym_for,
ACTIONS(199), 1,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(203), 1,
2023-12-05 21:42:11 +00:00
anon_sym_use,
ACTIONS(227), 1,
sym_identifier,
ACTIONS(229), 1,
anon_sym_LBRACE,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_return,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(145), 1,
2023-12-05 21:42:11 +00:00
sym_index,
STATE(193), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
STATE(230), 1,
2023-12-05 21:42:11 +00:00
sym_if,
STATE(279), 1,
2023-12-05 21:42:11 +00:00
sym_statement,
ACTIONS(233), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(250), 9,
2023-12-05 21:42:11 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4488] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(267), 17,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
2023-11-30 16:05:09 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(265), 23,
2023-12-02 07:34:23 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4536] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(271), 17,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(269), 23,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
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_asyncfor,
anon_sym_DASH_GT,
[4584] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
anon_sym_EQ,
STATE(51), 1,
sym_assignment_operator,
ACTIONS(157), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 16,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(149), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[4638] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(151), 17,
2023-11-30 16:05:09 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(149), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
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-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4686] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(275), 17,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(273), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
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-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[4734] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(279), 17,
2023-11-30 01:59:58 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(277), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-28 22:54:17 +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-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[4782] = 24,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(187), 1,
anon_sym_async,
ACTIONS(191), 1,
anon_sym_if,
ACTIONS(193), 1,
anon_sym_match,
ACTIONS(195), 1,
anon_sym_while,
ACTIONS(197), 1,
anon_sym_for,
ACTIONS(199), 1,
anon_sym_asyncfor,
ACTIONS(203), 1,
anon_sym_use,
ACTIONS(227), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(229), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
STATE(145), 1,
sym_index,
STATE(163), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
STATE(230), 1,
sym_if,
STATE(243), 1,
sym_statement,
ACTIONS(233), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(257), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4872] = 24,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(187), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
ACTIONS(191), 1,
2023-11-30 14:30:25 +00:00
anon_sym_if,
ACTIONS(193), 1,
2023-11-30 14:30:25 +00:00
anon_sym_match,
ACTIONS(195), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
ACTIONS(197), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
ACTIONS(199), 1,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(203), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
ACTIONS(227), 1,
sym_identifier,
ACTIONS(229), 1,
anon_sym_LBRACE,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_return,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(145), 1,
2023-12-05 21:42:11 +00:00
sym_index,
STATE(163), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(230), 1,
2023-12-05 21:42:11 +00:00
sym_if,
STATE(256), 1,
2023-12-05 21:42:11 +00:00
sym_statement,
ACTIONS(233), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 5,
2023-12-05 21:42:11 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(257), 9,
2023-12-05 21:42:11 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4962] = 22,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(175), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(281), 1,
anon_sym_RPAREN,
STATE(103), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(149), 1,
aux_sym__expression_list,
STATE(185), 1,
sym_logic_operator,
STATE(221), 1,
sym_math_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(133), 4,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(135), 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,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5048] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(17), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(61), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(73), 1,
sym_expression,
STATE(131), 1,
sym_if,
STATE(213), 1,
sym_statement,
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 5,
2023-12-05 21:42:11 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(186), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[5138] = 24,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(187), 1,
anon_sym_async,
ACTIONS(191), 1,
anon_sym_if,
ACTIONS(193), 1,
anon_sym_match,
ACTIONS(195), 1,
anon_sym_while,
ACTIONS(197), 1,
anon_sym_for,
ACTIONS(199), 1,
anon_sym_asyncfor,
ACTIONS(203), 1,
anon_sym_use,
ACTIONS(227), 1,
sym_identifier,
ACTIONS(229), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_return,
ACTIONS(243), 1,
anon_sym_fn,
STATE(145), 1,
sym_index,
STATE(163), 1,
sym_expression,
STATE(230), 1,
sym_if,
STATE(254), 1,
sym_statement,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(257), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[5228] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(285), 17,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 14:30:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(283), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5276] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(289), 17,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(287), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
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_asyncfor,
anon_sym_DASH_GT,
[5324] = 11,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
ACTIONS(139), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(147), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
STATE(204), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(207), 1,
sym_logic_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 01:59:58 +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,
ACTIONS(291), 9,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
ACTIONS(293), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[5386] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(139), 1,
anon_sym_DASH_GT,
ACTIONS(147), 1,
anon_sym_COLON,
STATE(204), 1,
sym_math_operator,
STATE(207), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
ACTIONS(295), 9,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(297), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[5448] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(139), 1,
anon_sym_DASH_GT,
ACTIONS(147), 1,
anon_sym_COLON,
ACTIONS(299), 1,
anon_sym_SEMI,
STATE(204), 1,
sym_math_operator,
STATE(207), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
ACTIONS(295), 8,
ts_builtin_sym_end,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(297), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[5512] = 5,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(179), 1,
sym_logic_operator,
STATE(180), 1,
sym_math_operator,
ACTIONS(105), 10,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(103), 24,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
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,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
[5560] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(301), 1,
anon_sym_DOT_DOT,
STATE(179), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
STATE(180), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
ACTIONS(105), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(103), 23,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
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_DASH_GT,
[5610] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(179), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
STATE(180), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
ACTIONS(115), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(113), 24,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
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_DASH_GT,
[5658] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(181), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(303), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
STATE(179), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
STATE(180), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
ACTIONS(131), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 3,
2023-12-05 21:42:11 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(129), 6,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(135), 6,
2023-12-05 21:42:11 +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,
ACTIONS(127), 13,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[5718] = 6,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(303), 1,
anon_sym_COLON,
STATE(179), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
STATE(180), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
ACTIONS(119), 10,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(117), 23,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
2023-11-30 14:30:25 +00:00
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,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[5768] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(131), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(129), 6,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(135), 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,
ACTIONS(127), 12,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[5827] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(175), 1,
anon_sym_COLON,
STATE(169), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(119), 10,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(117), 22,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
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_DASH_GT,
[5876] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(169), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(170), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
ACTIONS(115), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-02 07:34:23 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(113), 23,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
2023-11-30 14:30:25 +00:00
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,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[5923] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(289), 10,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(287), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
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_DASH_GT,
[5965] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(279), 10,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(277), 24,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
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_DASH_GT,
[6007] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(271), 10,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
anon_sym_fn,
ACTIONS(269), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
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,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6049] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(217), 10,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(215), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
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,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6091] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(225), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
anon_sym_fn,
ACTIONS(223), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-28 22:54:17 +00:00
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,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6133] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(257), 10,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 01:59:58 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(255), 24,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 14:30:25 +00:00
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,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[6175] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(247), 10,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(245), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
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,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6217] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(221), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 14:30:25 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(219), 24,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-28 22:54:17 +00:00
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,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
[6259] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(275), 10,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(273), 24,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-28 22:54:17 +00:00
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,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
[6301] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(267), 10,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(265), 24,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
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,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[6343] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(251), 10,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(249), 24,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
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_DASH_GT,
[6385] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(285), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(283), 24,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 07:34:23 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
[6427] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(263), 10,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(261), 24,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[6469] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(151), 10,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(149), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
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,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6511] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(161), 10,
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(159), 24,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
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_DASH_GT,
[6553] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(207), 10,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
anon_sym_fn,
ACTIONS(205), 24,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 07:34:23 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-28 22:54:17 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6595] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
anon_sym_EQ,
ACTIONS(155), 1,
anon_sym_LT,
STATE(38), 1,
sym_assignment_operator,
STATE(275), 1,
sym_type_definition,
ACTIONS(157), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 8,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(149), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
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-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
[6645] = 6,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
anon_sym_EQ,
STATE(39), 1,
sym_assignment_operator,
ACTIONS(157), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(149), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
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_DASH_GT,
[6690] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_SEMI,
STATE(169), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
STATE(170), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(297), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(135), 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,
ACTIONS(295), 6,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[6745] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(311), 1,
anon_sym_COMMA,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 5,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(135), 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,
ACTIONS(309), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
[6800] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
ACTIONS(175), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
ACTIONS(181), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(317), 1,
anon_sym_COMMA,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(313), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(135), 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,
ACTIONS(315), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
[6855] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
STATE(169), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(170), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(297), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(135), 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,
ACTIONS(295), 7,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[6908] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(293), 5,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(135), 6,
2023-12-05 21:42:11 +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,
ACTIONS(291), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[6961] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
ACTIONS(175), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
ACTIONS(181), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(319), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(169), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(170), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(127), 5,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(129), 5,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(135), 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,
[7015] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(321), 1,
anon_sym_RPAREN,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(127), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(129), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(135), 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,
[7069] = 5,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(177), 1,
sym_logic_operator,
STATE(178), 1,
sym_math_operator,
ACTIONS(115), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(113), 19,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 14:30:25 +00:00
anon_sym_DOT_DOT,
2023-11-30 01:59:58 +00:00
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
[7109] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(175), 1,
anon_sym_COLON,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(119), 8,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(117), 17,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
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_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
[7151] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_RPAREN,
STATE(169), 1,
sym_math_operator,
STATE(170), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(127), 5,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(129), 5,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(135), 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,
[7205] = 6,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(325), 1,
anon_sym_COLON,
STATE(177), 1,
sym_logic_operator,
STATE(178), 1,
sym_math_operator,
ACTIONS(119), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(117), 18,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7247] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 1,
anon_sym_DOT_DOT,
STATE(177), 1,
sym_logic_operator,
STATE(178), 1,
sym_math_operator,
ACTIONS(105), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(103), 18,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7289] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(325), 1,
anon_sym_COLON,
ACTIONS(329), 1,
anon_sym_DASH_GT,
STATE(177), 1,
sym_logic_operator,
STATE(178), 1,
sym_math_operator,
ACTIONS(131), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(129), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(133), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
ACTIONS(127), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
[7341] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(177), 1,
sym_logic_operator,
STATE(178), 1,
sym_math_operator,
ACTIONS(105), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(103), 19,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-28 22:54:17 +00:00
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7381] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(331), 1,
anon_sym_COLON,
STATE(201), 1,
sym_math_operator,
STATE(202), 1,
sym_logic_operator,
ACTIONS(119), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(117), 17,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7422] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(201), 1,
sym_math_operator,
STATE(202), 1,
sym_logic_operator,
ACTIONS(115), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(113), 18,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7461] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
STATE(201), 1,
sym_math_operator,
STATE(202), 1,
sym_logic_operator,
ACTIONS(131), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(129), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(133), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
ACTIONS(127), 7,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
[7512] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(161), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(159), 19,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[7546] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(221), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(219), 19,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[7580] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(247), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(245), 19,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-11-28 22:54:17 +00:00
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7614] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(271), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(269), 19,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[7648] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(337), 1,
anon_sym_elseif,
ACTIONS(339), 1,
anon_sym_else,
STATE(214), 1,
sym_else,
STATE(136), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(333), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(335), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[7690] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(267), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(265), 19,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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_EQ_GT,
anon_sym_DASH_GT,
[7724] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(279), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(277), 19,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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_EQ_GT,
anon_sym_DASH_GT,
[7758] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(275), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(273), 19,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7792] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(263), 7,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(261), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
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-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7826] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(257), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(255), 19,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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,
2023-12-05 21:42:11 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7860] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(251), 7,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(249), 19,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
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_EQ_GT,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
[7894] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(151), 7,
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(149), 19,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[7928] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(285), 7,
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(283), 19,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
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-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[7962] = 7,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(337), 1,
anon_sym_elseif,
ACTIONS(339), 1,
anon_sym_else,
STATE(210), 1,
sym_else,
STATE(122), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(341), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(343), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[8004] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(217), 7,
anon_sym_async,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(215), 19,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-05 21:42:11 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +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-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[8038] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(289), 7,
anon_sym_async,
2023-12-05 21:42:11 +00:00
sym_identifier,
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(287), 19,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8072] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(207), 7,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(205), 19,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
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-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[8106] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(225), 7,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(223), 19,
anon_sym_LBRACE,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
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_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[8140] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(349), 1,
anon_sym_elseif,
STATE(136), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(345), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(347), 13,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[8177] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
ACTIONS(155), 1,
anon_sym_LT,
STATE(66), 1,
sym_assignment_operator,
STATE(274), 1,
sym_type_definition,
ACTIONS(157), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 3,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
ACTIONS(149), 15,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_COLON,
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-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
[8219] = 14,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(352), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(103), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(139), 1,
2023-12-05 21:42:11 +00:00
aux_sym__expression_list,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8272] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(354), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(357), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
ACTIONS(360), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(369), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
ACTIONS(372), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(375), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
ACTIONS(377), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(103), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(139), 1,
2023-12-05 21:42:11 +00:00
aux_sym__expression_list,
ACTIONS(363), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(366), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8325] = 14,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(380), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(383), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
ACTIONS(386), 1,
anon_sym_RBRACE,
ACTIONS(388), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(397), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(400), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(403), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(140), 1,
aux_sym_match_repeat1,
STATE(234), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(391), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
ACTIONS(394), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8378] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(406), 1,
anon_sym_RBRACK,
STATE(102), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(155), 1,
aux_sym_list_repeat1,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8431] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(408), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(410), 13,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[8462] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(412), 1,
anon_sym_RBRACK,
STATE(102), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(156), 1,
2023-12-05 21:42:11 +00:00
aux_sym_list_repeat1,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8515] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(414), 1,
anon_sym_RPAREN,
STATE(103), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(139), 1,
aux_sym__expression_list,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8568] = 6,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
STATE(69), 1,
2023-12-05 21:42:11 +00:00
sym_assignment_operator,
ACTIONS(157), 2,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(151), 4,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(149), 15,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
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_DASH_GT,
[8605] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(416), 1,
anon_sym_RBRACK,
STATE(102), 1,
sym_expression,
STATE(158), 1,
2023-12-05 21:42:11 +00:00
aux_sym_list_repeat1,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8658] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(418), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(103), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
STATE(139), 1,
2023-12-05 21:42:11 +00:00
aux_sym__expression_list,
ACTIONS(169), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8711] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(420), 1,
anon_sym_RPAREN,
STATE(103), 1,
sym_expression,
STATE(139), 1,
aux_sym__expression_list,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8764] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(422), 1,
anon_sym_RPAREN,
STATE(103), 1,
sym_expression,
STATE(139), 1,
aux_sym__expression_list,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8817] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
ACTIONS(428), 1,
anon_sym_RBRACE,
STATE(140), 1,
aux_sym_match_repeat1,
STATE(234), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8870] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(430), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(103), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
STATE(139), 1,
2023-12-05 21:42:11 +00:00
aux_sym__expression_list,
ACTIONS(169), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8923] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(432), 10,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(434), 13,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[8954] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(245), 10,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(247), 13,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[8985] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(265), 10,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(267), 13,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[9016] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(436), 1,
sym_identifier,
ACTIONS(439), 1,
anon_sym_LBRACE,
ACTIONS(442), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
ACTIONS(451), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(454), 1,
anon_sym_RBRACK,
ACTIONS(456), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(459), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(102), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
STATE(155), 1,
aux_sym_list_repeat1,
ACTIONS(445), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
ACTIONS(448), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9069] = 14,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(462), 1,
anon_sym_RBRACK,
STATE(102), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
STATE(155), 1,
aux_sym_list_repeat1,
ACTIONS(169), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9122] = 14,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
ACTIONS(464), 1,
anon_sym_RBRACE,
STATE(140), 1,
aux_sym_match_repeat1,
STATE(234), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9175] = 14,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(466), 1,
anon_sym_RBRACK,
STATE(102), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
STATE(155), 1,
aux_sym_list_repeat1,
ACTIONS(169), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9228] = 14,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(468), 1,
anon_sym_RBRACK,
STATE(102), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
STATE(141), 1,
aux_sym_list_repeat1,
ACTIONS(169), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9281] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
ACTIONS(237), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(157), 1,
aux_sym_match_repeat1,
STATE(234), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9331] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(424), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
STATE(150), 1,
aux_sym_match_repeat1,
STATE(234), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9381] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(224), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9428] = 10,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
STATE(201), 1,
sym_math_operator,
STATE(202), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(295), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(135), 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,
[9471] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(231), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9518] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
STATE(201), 1,
sym_math_operator,
STATE(202), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(291), 4,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
sym_identifier,
ACTIONS(135), 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,
[9561] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(44), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
ACTIONS(169), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9608] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(226), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9655] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(76), 1,
sym_expression,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9702] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(81), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
ACTIONS(169), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9749] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(80), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
ACTIONS(169), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9796] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(232), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9843] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(37), 1,
sym_expression,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9890] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(223), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9937] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(107), 1,
sym_expression,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
2023-11-30 01:59:58 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9984] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(42), 1,
sym_expression,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10031] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
ACTIONS(17), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(470), 1,
sym_identifier,
ACTIONS(472), 1,
anon_sym_LBRACE,
STATE(72), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(62), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10078] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(113), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10125] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
ACTIONS(237), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(111), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10172] = 12,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(78), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
ACTIONS(169), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10219] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(79), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10266] = 12,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(82), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
ACTIONS(169), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(96), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10313] = 12,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
ACTIONS(173), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(53), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10360] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(227), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
ACTIONS(233), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10407] = 4,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(299), 1,
anon_sym_SEMI,
ACTIONS(295), 8,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(297), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[10438] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(183), 1,
anon_sym_fn,
STATE(106), 1,
sym_expression,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10485] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(295), 9,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(297), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[10514] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
STATE(165), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10561] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(228), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10608] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:48:56 +00:00
ACTIONS(11), 1,
2023-11-30 01:59:58 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(470), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
STATE(18), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10655] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(470), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
ACTIONS(472), 1,
anon_sym_LBRACE,
STATE(15), 1,
sym_expression,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10702] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
anon_sym_fn,
STATE(105), 1,
sym_expression,
ACTIONS(169), 2,
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10749] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(222), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
ACTIONS(233), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10796] = 11,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
ACTIONS(305), 1,
anon_sym_SEMI,
ACTIONS(329), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
STATE(201), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
STATE(202), 1,
sym_logic_operator,
ACTIONS(137), 2,
2023-12-05 21:42:11 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
ACTIONS(295), 3,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(133), 4,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-12-05 21:42:11 +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,
[10841] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(229), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10888] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(474), 9,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(476), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[10917] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(478), 9,
2023-12-05 21:42:11 +00:00
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(480), 12,
2023-12-05 21:42:11 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[10946] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(67), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10993] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(482), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(484), 12,
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11022] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(486), 9,
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(488), 12,
anon_sym_async,
sym_identifier,
sym_integer,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11051] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(112), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11098] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(115), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11145] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(117), 1,
sym_expression,
ACTIONS(233), 2,
sym_float,
sym_string,
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(129), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11192] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(17), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(470), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(19), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
ACTIONS(13), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11239] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(470), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(30), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11286] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(114), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
ACTIONS(233), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11333] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(11), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(470), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
STATE(22), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11380] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(17), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(470), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
STATE(32), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11427] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(225), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(233), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11474] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(75), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11521] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(333), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(335), 12,
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11550] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(490), 9,
ts_builtin_sym_end,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(492), 12,
anon_sym_async,
sym_identifier,
sym_integer,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11579] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(110), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11626] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(494), 9,
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(496), 12,
anon_sym_async,
sym_identifier,
sym_integer,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11655] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(498), 9,
ts_builtin_sym_end,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(500), 12,
anon_sym_async,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11684] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(239), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(424), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
STATE(116), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(233), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(235), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(134), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(129), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11731] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(470), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(10), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(13), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(40), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(62), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11778] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(502), 9,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(504), 12,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
[11807] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(506), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(508), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11836] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(510), 9,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(512), 12,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
[11865] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(41), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11912] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
STATE(109), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(96), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11959] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
ACTIONS(514), 1,
anon_sym_async,
ACTIONS(516), 1,
anon_sym_LBRACE,
STATE(201), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
STATE(202), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
STATE(255), 1,
sym_block,
ACTIONS(137), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-12-02 03:54:25 +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,
[12005] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
ACTIONS(518), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
ACTIONS(520), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(201), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
STATE(202), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
STATE(218), 1,
sym_block,
ACTIONS(137), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-12-02 03:54:25 +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,
[12051] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(518), 1,
anon_sym_async,
ACTIONS(520), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
STATE(195), 1,
2023-12-05 21:42:11 +00:00
sym_block,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 16:05:09 +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,
[12097] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(522), 1,
anon_sym_async,
ACTIONS(524), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(152), 1,
sym_block,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 16:05:09 +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,
[12143] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
ACTIONS(522), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
ACTIONS(524), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
STATE(142), 1,
sym_block,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 16:05:09 +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,
[12189] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
ACTIONS(514), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
ACTIONS(516), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
STATE(246), 1,
2023-12-05 21:42:11 +00:00
sym_block,
ACTIONS(137), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 16:05:09 +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,
[12235] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
ACTIONS(526), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
ACTIONS(528), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
STATE(240), 1,
2023-12-02 07:34:23 +00:00
sym_block,
ACTIONS(137), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 16:05:09 +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,
[12281] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
ACTIONS(526), 1,
anon_sym_async,
ACTIONS(528), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(201), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
STATE(239), 1,
2023-12-05 21:42:11 +00:00
sym_block,
ACTIONS(137), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 14:48:56 +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,
[12327] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(530), 1,
anon_sym_elseif,
ACTIONS(532), 1,
anon_sym_else,
STATE(258), 1,
sym_else,
STATE(233), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(343), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(341), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12361] = 10,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
ACTIONS(329), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
ACTIONS(331), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
ACTIONS(534), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(201), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
STATE(202), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
ACTIONS(137), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 6,
2023-11-30 14:48:56 +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,
[12401] = 10,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
ACTIONS(536), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
[12441] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(530), 1,
anon_sym_elseif,
ACTIONS(532), 1,
anon_sym_else,
STATE(252), 1,
sym_else,
STATE(236), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(335), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(333), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12475] = 10,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
ACTIONS(538), 1,
2023-12-02 07:34:23 +00:00
anon_sym_EQ_GT,
STATE(201), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
STATE(202), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(135), 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,
[12515] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(542), 6,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(540), 12,
2023-12-02 07:34:23 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
[12541] = 5,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(544), 1,
anon_sym_elseif,
STATE(236), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(347), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
ACTIONS(345), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
[12570] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(267), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
ACTIONS(265), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
[12593] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(247), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
ACTIONS(245), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
[12616] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(410), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
ACTIONS(408), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
[12639] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(434), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
ACTIONS(432), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
[12662] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(549), 1,
anon_sym_DASH_GT,
ACTIONS(547), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12684] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(553), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(551), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12706] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(496), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(494), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12727] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(484), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(482), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12748] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(480), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(478), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12769] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(476), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(474), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12790] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(555), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12809] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(557), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12828] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(559), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12847] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(305), 1,
anon_sym_SEMI,
ACTIONS(297), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(295), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12870] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(551), 13,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12889] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(500), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(498), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12910] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(504), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(502), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12931] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(512), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(510), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12952] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(508), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(506), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12973] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(492), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(490), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
[12994] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(295), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
[13015] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(333), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
[13036] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 5,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(486), 8,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[13057] = 7,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(561), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(563), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(565), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(261), 1,
aux_sym_type_repeat1,
STATE(263), 1,
sym_type,
ACTIONS(567), 7,
2023-11-30 01:59:58 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13085] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(561), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
ACTIONS(563), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(569), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(262), 1,
2023-12-05 21:42:11 +00:00
aux_sym_type_repeat1,
STATE(263), 1,
2023-12-05 21:42:11 +00:00
sym_type,
ACTIONS(567), 7,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13113] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(571), 1,
anon_sym_LBRACK,
ACTIONS(574), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(577), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
STATE(262), 1,
2023-12-05 21:42:11 +00:00
aux_sym_type_repeat1,
STATE(263), 1,
2023-12-05 21:42:11 +00:00
sym_type,
ACTIONS(579), 7,
2023-11-30 01:59:58 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13141] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(582), 1,
anon_sym_COMMA,
ACTIONS(584), 10,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13160] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(586), 5,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
ACTIONS(454), 6,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
[13179] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(588), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(590), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
[13198] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(592), 5,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(375), 6,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
[13217] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(561), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(563), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
STATE(249), 1,
2023-11-30 01:59:58 +00:00
sym_type,
ACTIONS(567), 7,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13239] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(594), 5,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(596), 5,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
[13257] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 5,
2023-12-05 21:42:11 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
ACTIONS(600), 5,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[13275] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(561), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(563), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
STATE(248), 1,
2023-11-30 00:23:42 +00:00
sym_type,
ACTIONS(567), 7,
2023-11-28 22:54:17 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-28 22:54:17 +00:00
anon_sym_int,
anon_sym_map,
2023-11-30 00:23:42 +00:00
anon_sym_num,
2023-11-28 22:54:17 +00:00
anon_sym_str,
[13297] = 2,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(577), 10,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13313] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(561), 1,
anon_sym_LBRACK,
ACTIONS(563), 1,
anon_sym_LPAREN,
STATE(306), 1,
sym_type,
ACTIONS(567), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13335] = 5,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(561), 1,
anon_sym_LBRACK,
ACTIONS(563), 1,
anon_sym_LPAREN,
STATE(304), 1,
sym_type,
ACTIONS(567), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13357] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(65), 1,
2023-12-05 21:42:11 +00:00
sym_assignment_operator,
ACTIONS(157), 3,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13369] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(43), 1,
sym_assignment_operator,
ACTIONS(157), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13381] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(68), 1,
sym_assignment_operator,
ACTIONS(157), 3,
2023-12-05 21:42:11 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13393] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(604), 1,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
STATE(278), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
[13406] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(606), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(609), 1,
2023-11-30 14:48:56 +00:00
anon_sym_PIPE,
STATE(278), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
[13419] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(613), 1,
anon_sym_COMMA,
ACTIONS(611), 2,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
sym_identifier,
[13430] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(615), 1,
2023-11-30 14:30:25 +00:00
anon_sym_async,
ACTIONS(617), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
STATE(132), 1,
2023-11-30 14:30:25 +00:00
sym_block,
[13443] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(619), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13452] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(615), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
ACTIONS(617), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
STATE(127), 1,
2023-12-05 21:42:11 +00:00
sym_block,
[13465] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(621), 1,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
STATE(278), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
[13478] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(518), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
ACTIONS(520), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
STATE(217), 1,
2023-11-28 22:54:17 +00:00
sym_block,
[13491] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(41), 1,
anon_sym_RBRACE,
ACTIONS(623), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
STATE(296), 1,
aux_sym_map_repeat1,
[13504] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(514), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
ACTIONS(516), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
STATE(88), 1,
2023-12-02 07:34:23 +00:00
sym_block,
[13517] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(518), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
ACTIONS(520), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
STATE(45), 1,
2023-12-02 03:54:25 +00:00
sym_block,
[13530] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(625), 1,
anon_sym_PIPE,
STATE(278), 1,
aux_sym_function_repeat1,
[13543] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(623), 1,
sym_identifier,
ACTIONS(627), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
STATE(291), 1,
2023-12-05 21:42:11 +00:00
aux_sym_map_repeat1,
[13556] = 4,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(629), 1,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
STATE(277), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
[13569] = 4,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(631), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
ACTIONS(634), 1,
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
STATE(291), 1,
aux_sym_map_repeat1,
[13582] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(638), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
ACTIONS(636), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
[13593] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(514), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
ACTIONS(516), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
STATE(86), 1,
2023-11-30 14:48:56 +00:00
sym_block,
[13606] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(518), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
ACTIONS(520), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
STATE(54), 1,
2023-12-02 07:34:23 +00:00
sym_block,
[13619] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
sym_identifier,
ACTIONS(640), 1,
anon_sym_PIPE,
STATE(288), 1,
aux_sym_function_repeat1,
[13632] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(623), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
ACTIONS(642), 1,
anon_sym_RBRACE,
STATE(291), 1,
2023-12-05 21:42:11 +00:00
aux_sym_map_repeat1,
[13645] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(43), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
ACTIONS(623), 1,
sym_identifier,
STATE(289), 1,
2023-12-05 21:42:11 +00:00
aux_sym_map_repeat1,
[13658] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(514), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
ACTIONS(516), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
STATE(253), 1,
2023-12-02 03:54:25 +00:00
sym_block,
[13671] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(623), 1,
sym_identifier,
ACTIONS(644), 1,
anon_sym_RBRACE,
STATE(291), 1,
aux_sym_map_repeat1,
[13684] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(646), 1,
anon_sym_PIPE,
STATE(283), 1,
aux_sym_function_repeat1,
[13697] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
ACTIONS(623), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
STATE(299), 1,
aux_sym_map_repeat1,
[13710] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 2,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
[13718] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(648), 2,
anon_sym_RBRACE,
sym_identifier,
[13726] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(650), 1,
anon_sym_RBRACK,
[13733] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(652), 1,
sym_identifier,
[13740] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(654), 1,
anon_sym_GT,
[13747] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(656), 1,
sym_string,
[13754] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(658), 1,
ts_builtin_sym_end,
[13761] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(660), 1,
anon_sym_LBRACE,
[13768] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(662), 1,
anon_sym_EQ,
[13775] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(664), 1,
anon_sym_in,
[13782] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(666), 1,
sym_string,
[13789] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(668), 1,
anon_sym_LBRACE,
[13796] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(670), 1,
anon_sym_PIPE,
[13803] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(672), 1,
anon_sym_LPAREN,
[13810] = 2,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(674), 1,
anon_sym_in,
[13817] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(676), 1,
anon_sym_LPAREN,
[13824] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(678), 1,
anon_sym_LBRACE,
[13831] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(680), 1,
anon_sym_PIPE,
[13838] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(682), 1,
anon_sym_LPAREN,
[13845] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(684), 1,
anon_sym_LBRACE,
[13852] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(686), 1,
anon_sym_LBRACE,
[13859] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(688), 1,
anon_sym_PIPE,
[13866] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(690), 1,
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-12-05 21:42:11 +00:00
[SMALL_STATE(3)] = 97,
[SMALL_STATE(4)] = 194,
[SMALL_STATE(5)] = 291,
[SMALL_STATE(6)] = 386,
[SMALL_STATE(7)] = 480,
[SMALL_STATE(8)] = 574,
[SMALL_STATE(9)] = 668,
[SMALL_STATE(10)] = 762,
[SMALL_STATE(11)] = 816,
[SMALL_STATE(12)] = 910,
[SMALL_STATE(13)] = 1004,
[SMALL_STATE(14)] = 1098,
[SMALL_STATE(15)] = 1152,
[SMALL_STATE(16)] = 1208,
[SMALL_STATE(17)] = 1302,
[SMALL_STATE(18)] = 1396,
[SMALL_STATE(19)] = 1462,
[SMALL_STATE(20)] = 1518,
[SMALL_STATE(21)] = 1612,
[SMALL_STATE(22)] = 1706,
[SMALL_STATE(23)] = 1759,
[SMALL_STATE(24)] = 1850,
[SMALL_STATE(25)] = 1941,
[SMALL_STATE(26)] = 2032,
[SMALL_STATE(27)] = 2123,
[SMALL_STATE(28)] = 2214,
[SMALL_STATE(29)] = 2305,
[SMALL_STATE(30)] = 2396,
[SMALL_STATE(31)] = 2451,
[SMALL_STATE(32)] = 2542,
[SMALL_STATE(33)] = 2607,
[SMALL_STATE(34)] = 2698,
[SMALL_STATE(35)] = 2757,
[SMALL_STATE(36)] = 2848,
[SMALL_STATE(37)] = 2896,
[SMALL_STATE(38)] = 2982,
[SMALL_STATE(39)] = 3072,
[SMALL_STATE(40)] = 3162,
[SMALL_STATE(41)] = 3210,
[SMALL_STATE(42)] = 3296,
[SMALL_STATE(43)] = 3382,
[SMALL_STATE(44)] = 3472,
[SMALL_STATE(45)] = 3558,
[SMALL_STATE(46)] = 3606,
[SMALL_STATE(47)] = 3654,
[SMALL_STATE(48)] = 3702,
[SMALL_STATE(49)] = 3792,
[SMALL_STATE(50)] = 3840,
[SMALL_STATE(51)] = 3930,
[SMALL_STATE(52)] = 4020,
[SMALL_STATE(53)] = 4068,
[SMALL_STATE(54)] = 4154,
[SMALL_STATE(55)] = 4202,
[SMALL_STATE(56)] = 4292,
[SMALL_STATE(57)] = 4350,
[SMALL_STATE(58)] = 4398,
[SMALL_STATE(59)] = 4488,
[SMALL_STATE(60)] = 4536,
[SMALL_STATE(61)] = 4584,
[SMALL_STATE(62)] = 4638,
[SMALL_STATE(63)] = 4686,
[SMALL_STATE(64)] = 4734,
[SMALL_STATE(65)] = 4782,
[SMALL_STATE(66)] = 4872,
[SMALL_STATE(67)] = 4962,
[SMALL_STATE(68)] = 5048,
[SMALL_STATE(69)] = 5138,
[SMALL_STATE(70)] = 5228,
[SMALL_STATE(71)] = 5276,
[SMALL_STATE(72)] = 5324,
[SMALL_STATE(73)] = 5386,
[SMALL_STATE(74)] = 5448,
[SMALL_STATE(75)] = 5512,
[SMALL_STATE(76)] = 5560,
[SMALL_STATE(77)] = 5610,
[SMALL_STATE(78)] = 5658,
[SMALL_STATE(79)] = 5718,
[SMALL_STATE(80)] = 5768,
[SMALL_STATE(81)] = 5827,
[SMALL_STATE(82)] = 5876,
[SMALL_STATE(83)] = 5923,
[SMALL_STATE(84)] = 5965,
[SMALL_STATE(85)] = 6007,
[SMALL_STATE(86)] = 6049,
[SMALL_STATE(87)] = 6091,
[SMALL_STATE(88)] = 6133,
[SMALL_STATE(89)] = 6175,
[SMALL_STATE(90)] = 6217,
[SMALL_STATE(91)] = 6259,
[SMALL_STATE(92)] = 6301,
[SMALL_STATE(93)] = 6343,
[SMALL_STATE(94)] = 6385,
[SMALL_STATE(95)] = 6427,
[SMALL_STATE(96)] = 6469,
[SMALL_STATE(97)] = 6511,
[SMALL_STATE(98)] = 6553,
[SMALL_STATE(99)] = 6595,
[SMALL_STATE(100)] = 6645,
[SMALL_STATE(101)] = 6690,
[SMALL_STATE(102)] = 6745,
[SMALL_STATE(103)] = 6800,
[SMALL_STATE(104)] = 6855,
[SMALL_STATE(105)] = 6908,
[SMALL_STATE(106)] = 6961,
[SMALL_STATE(107)] = 7015,
[SMALL_STATE(108)] = 7069,
[SMALL_STATE(109)] = 7109,
[SMALL_STATE(110)] = 7151,
[SMALL_STATE(111)] = 7205,
[SMALL_STATE(112)] = 7247,
[SMALL_STATE(113)] = 7289,
[SMALL_STATE(114)] = 7341,
[SMALL_STATE(115)] = 7381,
[SMALL_STATE(116)] = 7422,
[SMALL_STATE(117)] = 7461,
[SMALL_STATE(118)] = 7512,
[SMALL_STATE(119)] = 7546,
[SMALL_STATE(120)] = 7580,
[SMALL_STATE(121)] = 7614,
[SMALL_STATE(122)] = 7648,
[SMALL_STATE(123)] = 7690,
[SMALL_STATE(124)] = 7724,
[SMALL_STATE(125)] = 7758,
[SMALL_STATE(126)] = 7792,
[SMALL_STATE(127)] = 7826,
[SMALL_STATE(128)] = 7860,
[SMALL_STATE(129)] = 7894,
[SMALL_STATE(130)] = 7928,
[SMALL_STATE(131)] = 7962,
[SMALL_STATE(132)] = 8004,
[SMALL_STATE(133)] = 8038,
[SMALL_STATE(134)] = 8072,
[SMALL_STATE(135)] = 8106,
[SMALL_STATE(136)] = 8140,
[SMALL_STATE(137)] = 8177,
[SMALL_STATE(138)] = 8219,
[SMALL_STATE(139)] = 8272,
[SMALL_STATE(140)] = 8325,
[SMALL_STATE(141)] = 8378,
[SMALL_STATE(142)] = 8431,
[SMALL_STATE(143)] = 8462,
[SMALL_STATE(144)] = 8515,
[SMALL_STATE(145)] = 8568,
[SMALL_STATE(146)] = 8605,
[SMALL_STATE(147)] = 8658,
[SMALL_STATE(148)] = 8711,
[SMALL_STATE(149)] = 8764,
[SMALL_STATE(150)] = 8817,
[SMALL_STATE(151)] = 8870,
[SMALL_STATE(152)] = 8923,
[SMALL_STATE(153)] = 8954,
[SMALL_STATE(154)] = 8985,
[SMALL_STATE(155)] = 9016,
[SMALL_STATE(156)] = 9069,
[SMALL_STATE(157)] = 9122,
[SMALL_STATE(158)] = 9175,
[SMALL_STATE(159)] = 9228,
[SMALL_STATE(160)] = 9281,
[SMALL_STATE(161)] = 9331,
[SMALL_STATE(162)] = 9381,
[SMALL_STATE(163)] = 9428,
[SMALL_STATE(164)] = 9471,
[SMALL_STATE(165)] = 9518,
[SMALL_STATE(166)] = 9561,
[SMALL_STATE(167)] = 9608,
[SMALL_STATE(168)] = 9655,
[SMALL_STATE(169)] = 9702,
[SMALL_STATE(170)] = 9749,
[SMALL_STATE(171)] = 9796,
[SMALL_STATE(172)] = 9843,
[SMALL_STATE(173)] = 9890,
[SMALL_STATE(174)] = 9937,
[SMALL_STATE(175)] = 9984,
[SMALL_STATE(176)] = 10031,
[SMALL_STATE(177)] = 10078,
[SMALL_STATE(178)] = 10125,
[SMALL_STATE(179)] = 10172,
[SMALL_STATE(180)] = 10219,
[SMALL_STATE(181)] = 10266,
[SMALL_STATE(182)] = 10313,
[SMALL_STATE(183)] = 10360,
[SMALL_STATE(184)] = 10407,
[SMALL_STATE(185)] = 10438,
[SMALL_STATE(186)] = 10485,
[SMALL_STATE(187)] = 10514,
[SMALL_STATE(188)] = 10561,
[SMALL_STATE(189)] = 10608,
[SMALL_STATE(190)] = 10655,
[SMALL_STATE(191)] = 10702,
[SMALL_STATE(192)] = 10749,
[SMALL_STATE(193)] = 10796,
[SMALL_STATE(194)] = 10841,
[SMALL_STATE(195)] = 10888,
[SMALL_STATE(196)] = 10917,
[SMALL_STATE(197)] = 10946,
[SMALL_STATE(198)] = 10993,
[SMALL_STATE(199)] = 11022,
[SMALL_STATE(200)] = 11051,
[SMALL_STATE(201)] = 11098,
[SMALL_STATE(202)] = 11145,
[SMALL_STATE(203)] = 11192,
[SMALL_STATE(204)] = 11239,
[SMALL_STATE(205)] = 11286,
[SMALL_STATE(206)] = 11333,
[SMALL_STATE(207)] = 11380,
[SMALL_STATE(208)] = 11427,
[SMALL_STATE(209)] = 11474,
[SMALL_STATE(210)] = 11521,
[SMALL_STATE(211)] = 11550,
[SMALL_STATE(212)] = 11579,
[SMALL_STATE(213)] = 11626,
[SMALL_STATE(214)] = 11655,
[SMALL_STATE(215)] = 11684,
[SMALL_STATE(216)] = 11731,
[SMALL_STATE(217)] = 11778,
[SMALL_STATE(218)] = 11807,
[SMALL_STATE(219)] = 11836,
[SMALL_STATE(220)] = 11865,
[SMALL_STATE(221)] = 11912,
[SMALL_STATE(222)] = 11959,
[SMALL_STATE(223)] = 12005,
[SMALL_STATE(224)] = 12051,
[SMALL_STATE(225)] = 12097,
[SMALL_STATE(226)] = 12143,
[SMALL_STATE(227)] = 12189,
[SMALL_STATE(228)] = 12235,
[SMALL_STATE(229)] = 12281,
[SMALL_STATE(230)] = 12327,
[SMALL_STATE(231)] = 12361,
[SMALL_STATE(232)] = 12401,
[SMALL_STATE(233)] = 12441,
[SMALL_STATE(234)] = 12475,
[SMALL_STATE(235)] = 12515,
[SMALL_STATE(236)] = 12541,
[SMALL_STATE(237)] = 12570,
[SMALL_STATE(238)] = 12593,
[SMALL_STATE(239)] = 12616,
[SMALL_STATE(240)] = 12639,
[SMALL_STATE(241)] = 12662,
[SMALL_STATE(242)] = 12684,
[SMALL_STATE(243)] = 12706,
[SMALL_STATE(244)] = 12727,
[SMALL_STATE(245)] = 12748,
[SMALL_STATE(246)] = 12769,
[SMALL_STATE(247)] = 12790,
[SMALL_STATE(248)] = 12809,
[SMALL_STATE(249)] = 12828,
[SMALL_STATE(250)] = 12847,
[SMALL_STATE(251)] = 12870,
[SMALL_STATE(252)] = 12889,
[SMALL_STATE(253)] = 12910,
[SMALL_STATE(254)] = 12931,
[SMALL_STATE(255)] = 12952,
[SMALL_STATE(256)] = 12973,
[SMALL_STATE(257)] = 12994,
[SMALL_STATE(258)] = 13015,
[SMALL_STATE(259)] = 13036,
[SMALL_STATE(260)] = 13057,
[SMALL_STATE(261)] = 13085,
[SMALL_STATE(262)] = 13113,
[SMALL_STATE(263)] = 13141,
[SMALL_STATE(264)] = 13160,
[SMALL_STATE(265)] = 13179,
[SMALL_STATE(266)] = 13198,
[SMALL_STATE(267)] = 13217,
[SMALL_STATE(268)] = 13239,
[SMALL_STATE(269)] = 13257,
[SMALL_STATE(270)] = 13275,
[SMALL_STATE(271)] = 13297,
[SMALL_STATE(272)] = 13313,
[SMALL_STATE(273)] = 13335,
[SMALL_STATE(274)] = 13357,
[SMALL_STATE(275)] = 13369,
[SMALL_STATE(276)] = 13381,
[SMALL_STATE(277)] = 13393,
[SMALL_STATE(278)] = 13406,
[SMALL_STATE(279)] = 13419,
[SMALL_STATE(280)] = 13430,
[SMALL_STATE(281)] = 13443,
[SMALL_STATE(282)] = 13452,
[SMALL_STATE(283)] = 13465,
[SMALL_STATE(284)] = 13478,
[SMALL_STATE(285)] = 13491,
[SMALL_STATE(286)] = 13504,
[SMALL_STATE(287)] = 13517,
[SMALL_STATE(288)] = 13530,
[SMALL_STATE(289)] = 13543,
[SMALL_STATE(290)] = 13556,
[SMALL_STATE(291)] = 13569,
[SMALL_STATE(292)] = 13582,
[SMALL_STATE(293)] = 13593,
[SMALL_STATE(294)] = 13606,
[SMALL_STATE(295)] = 13619,
[SMALL_STATE(296)] = 13632,
[SMALL_STATE(297)] = 13645,
[SMALL_STATE(298)] = 13658,
[SMALL_STATE(299)] = 13671,
[SMALL_STATE(300)] = 13684,
[SMALL_STATE(301)] = 13697,
[SMALL_STATE(302)] = 13710,
[SMALL_STATE(303)] = 13718,
[SMALL_STATE(304)] = 13726,
[SMALL_STATE(305)] = 13733,
[SMALL_STATE(306)] = 13740,
[SMALL_STATE(307)] = 13747,
[SMALL_STATE(308)] = 13754,
[SMALL_STATE(309)] = 13761,
[SMALL_STATE(310)] = 13768,
[SMALL_STATE(311)] = 13775,
[SMALL_STATE(312)] = 13782,
[SMALL_STATE(313)] = 13789,
[SMALL_STATE(314)] = 13796,
[SMALL_STATE(315)] = 13803,
[SMALL_STATE(316)] = 13810,
[SMALL_STATE(317)] = 13817,
[SMALL_STATE(318)] = 13824,
[SMALL_STATE(319)] = 13831,
[SMALL_STATE(320)] = 13838,
[SMALL_STATE(321)] = 13845,
[SMALL_STATE(322)] = 13852,
[SMALL_STATE(323)] = 13859,
[SMALL_STATE(324)] = 13866,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
2023-12-05 21:42:11 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309),
2023-12-05 21:42:11 +00:00
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[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(34),
[50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(309),
[53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4),
[56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40),
[59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40),
[62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(71),
[65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(159),
[68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(166),
[71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(167),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171),
[77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(173),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(305),
[83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(305),
[86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(176),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(312),
[92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(323),
[95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268),
[139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235),
[155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272),
[157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
[165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
[185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
[187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
[189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164),
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
[197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324),
[199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307),
[205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 5),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 5),
[223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
[237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319),
[245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5),
[259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
[261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[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(264),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(208),
[352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(285),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98),
[363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98),
[366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(83),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(143),
[372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(197),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(314),
[380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(129),
[383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(301),
[386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134),
[391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134),
[394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(133),
[397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146),
[400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(175),
[403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(319),
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129),
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96),
[439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(285),
[442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98),
[445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98),
[448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(83),
[451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(143),
[454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(197),
[459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(314),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5),
[480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5),
[482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(188),
[547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5),
[561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(273),
[574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(260),
[577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(247),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(292),
[609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(310),
[634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[658] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
};
#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