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

13975 lines
312 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2023-12-11 15:18:46 +00:00
#define STATE_COUNT 327
#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,
2023-12-11 15:18:46 +00:00
[83] = 36,
[84] = 57,
[85] = 47,
[86] = 62,
[87] = 54,
[88] = 49,
[89] = 46,
[90] = 63,
[91] = 52,
[92] = 64,
[93] = 70,
[94] = 59,
[95] = 45,
[96] = 60,
[97] = 71,
[98] = 40,
[99] = 34,
[100] = 61,
[101] = 73,
2023-12-11 15:18:46 +00:00
[102] = 73,
[103] = 72,
[104] = 104,
[105] = 105,
[106] = 15,
[107] = 10,
[108] = 108,
[109] = 109,
2023-12-11 15:18:46 +00:00
[110] = 109,
[111] = 10,
[112] = 109,
[113] = 14,
[114] = 18,
[115] = 14,
[116] = 15,
[117] = 18,
2023-12-11 15:18:46 +00:00
[118] = 62,
[119] = 71,
[120] = 54,
[121] = 59,
[122] = 64,
[123] = 63,
[124] = 52,
[125] = 46,
[126] = 60,
[127] = 70,
[128] = 45,
[129] = 129,
[130] = 49,
[131] = 57,
[132] = 132,
[133] = 36,
[134] = 40,
[135] = 47,
2023-12-05 21:42:11 +00:00
[136] = 136,
2023-12-11 15:18:46 +00:00
[137] = 137,
[138] = 34,
2023-12-02 07:34:23 +00:00
[139] = 139,
2023-12-11 15:18:46 +00:00
[140] = 139,
[141] = 59,
[142] = 142,
[143] = 143,
2023-12-11 15:18:46 +00:00
[144] = 142,
[145] = 145,
[146] = 146,
[147] = 61,
[148] = 148,
[149] = 146,
[150] = 142,
[151] = 151,
[152] = 146,
[153] = 148,
[154] = 154,
[155] = 49,
[156] = 156,
[157] = 157,
[158] = 151,
[159] = 151,
[160] = 145,
[161] = 145,
[162] = 162,
2023-12-11 15:18:46 +00:00
[163] = 163,
2023-12-02 07:34:23 +00:00
[164] = 164,
2023-12-11 15:18:46 +00:00
[165] = 165,
2023-12-05 21:42:11 +00:00
[166] = 166,
2023-12-11 15:18:46 +00:00
[167] = 72,
2023-12-02 07:34:23 +00:00
[168] = 168,
2023-12-11 15:18:46 +00:00
[169] = 165,
[170] = 170,
2023-12-11 15:18:46 +00:00
[171] = 171,
[172] = 172,
[173] = 173,
2023-12-11 15:18:46 +00:00
[174] = 163,
[175] = 175,
[176] = 166,
[177] = 177,
[178] = 172,
[179] = 171,
[180] = 172,
[181] = 171,
[182] = 173,
[183] = 183,
[184] = 162,
[185] = 164,
[186] = 175,
[187] = 187,
[188] = 172,
[189] = 171,
[190] = 177,
[191] = 168,
[192] = 166,
[193] = 177,
[194] = 194,
[195] = 73,
[196] = 196,
2023-12-11 15:18:46 +00:00
[197] = 197,
[198] = 198,
2023-12-11 15:18:46 +00:00
[199] = 170,
[200] = 171,
[201] = 170,
[202] = 170,
2023-12-11 15:18:46 +00:00
[203] = 171,
[204] = 172,
[205] = 172,
[206] = 187,
[207] = 183,
[208] = 170,
[209] = 209,
[210] = 210,
2023-12-11 15:18:46 +00:00
[211] = 170,
[212] = 212,
[213] = 175,
[214] = 214,
2023-12-11 15:18:46 +00:00
[215] = 215,
[216] = 173,
[217] = 183,
2023-12-02 07:34:23 +00:00
[218] = 218,
[219] = 219,
2023-12-11 15:18:46 +00:00
[220] = 220,
[221] = 73,
[222] = 222,
2023-12-11 15:18:46 +00:00
[223] = 223,
[224] = 222,
[225] = 225,
[226] = 226,
2023-12-11 15:18:46 +00:00
[227] = 223,
[228] = 226,
[229] = 225,
[230] = 132,
[231] = 129,
[232] = 136,
[233] = 233,
[234] = 233,
[235] = 235,
2023-12-11 15:18:46 +00:00
[236] = 236,
[237] = 143,
[238] = 49,
2023-12-11 15:18:46 +00:00
[239] = 59,
[240] = 156,
[241] = 164,
[242] = 164,
[243] = 214,
[244] = 210,
[245] = 209,
[246] = 198,
[247] = 194,
[248] = 218,
[249] = 219,
[250] = 220,
2023-12-02 07:34:23 +00:00
[251] = 251,
2023-12-11 15:18:46 +00:00
[252] = 252,
[253] = 196,
[254] = 197,
[255] = 215,
[256] = 256,
[257] = 257,
[258] = 258,
[259] = 259,
[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,
2023-12-11 15:18:46 +00:00
[275] = 275,
[276] = 275,
[277] = 275,
[278] = 278,
2023-12-05 21:42:11 +00:00
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 282,
2023-12-11 15:18:46 +00:00
[283] = 283,
[284] = 280,
2023-12-02 07:34:23 +00:00
[285] = 285,
2023-12-11 15:18:46 +00:00
[286] = 286,
[287] = 286,
[288] = 285,
[289] = 278,
2023-12-05 21:42:11 +00:00
[290] = 290,
[291] = 291,
[292] = 292,
2023-12-11 15:18:46 +00:00
[293] = 291,
[294] = 283,
[295] = 291,
[296] = 283,
[297] = 286,
[298] = 285,
[299] = 299,
[300] = 278,
[301] = 280,
[302] = 292,
[303] = 303,
[304] = 304,
[305] = 305,
[306] = 306,
[307] = 307,
2023-12-11 15:18:46 +00:00
[308] = 306,
[309] = 309,
2023-12-05 21:42:11 +00:00
[310] = 310,
2023-12-11 15:18:46 +00:00
[311] = 307,
[312] = 312,
[313] = 313,
2023-12-02 07:34:23 +00:00
[314] = 314,
[315] = 315,
2023-12-11 15:18:46 +00:00
[316] = 314,
[317] = 317,
[318] = 318,
[319] = 305,
[320] = 314,
[321] = 306,
[322] = 305,
2023-12-05 21:42:11 +00:00
[323] = 314,
2023-12-11 15:18:46 +00:00
[324] = 314,
[325] = 318,
[326] = 315,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-12-11 15:18:46 +00:00
if (eof) ADVANCE(26);
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-12-11 15:18:46 +00:00
if (lookahead == '(') ADVANCE(53);
if (lookahead == ')') ADVANCE(54);
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(59);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-11 15:18:46 +00:00
if (lookahead == '/') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ':') ADVANCE(51);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(47);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(40);
if (lookahead == 'e') ADVANCE(38);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(78);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-11 15:18:46 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 1:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-12-11 15:18:46 +00:00
if (lookahead == '(') ADVANCE(53);
if (lookahead == ')') ADVANCE(54);
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(59);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-11 15:18:46 +00:00
if (lookahead == '/') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ':') ADVANCE(51);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(47);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(15);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-11 15:18:46 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 2:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-11 15:18:46 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(57);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-11 15:18:46 +00:00
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(51);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 3:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-11 15:18:46 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(57);
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(51);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 4:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-11 15:18:46 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(55);
if (lookahead == '-') ADVANCE(58);
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(51);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(12);
2023-12-11 15:18:46 +00:00
if (lookahead == '>') ADVANCE(68);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(6);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
2023-12-11 15:18:46 +00:00
if (lookahead == '(') ADVANCE(53);
if (lookahead == '*') ADVANCE(60);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '=') ADVANCE(14);
if (lookahead == '>') ADVANCE(67);
if (lookahead == '[') ADVANCE(47);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'e') ADVANCE(38);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-02 03:54:25 +00:00
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-11 15:18:46 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
2023-12-02 03:54:25 +00:00
END_STATE();
case 6:
2023-12-11 15:18:46 +00:00
if (lookahead == '"') ADVANCE(46);
2023-12-02 03:54:25 +00:00
if (lookahead != 0) ADVANCE(6);
END_STATE();
case 7:
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '(') ADVANCE(53);
if (lookahead == ')') ADVANCE(54);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(13);
2023-12-11 15:18:46 +00:00
if (lookahead == '>') ADVANCE(67);
if (lookahead == '[') ADVANCE(47);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '|') ADVANCE(78);
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-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 8:
2023-12-11 15:18:46 +00:00
if (lookahead == '&') ADVANCE(65);
END_STATE();
case 9:
2023-12-11 15:18:46 +00:00
if (lookahead == '\'') ADVANCE(46);
2023-12-02 03:54:25 +00:00
if (lookahead != 0) ADVANCE(9);
END_STATE();
case 10:
2023-12-11 15:18:46 +00:00
if (lookahead == '.') ADVANCE(52);
END_STATE();
case 11:
2023-12-11 15:18:46 +00:00
if (lookahead == '=') ADVANCE(64);
END_STATE();
case 12:
2023-12-11 15:18:46 +00:00
if (lookahead == '=') ADVANCE(63);
if (lookahead == '>') ADVANCE(75);
END_STATE();
case 13:
2023-12-11 15:18:46 +00:00
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 14:
2023-12-11 15:18:46 +00:00
if (lookahead == '>') ADVANCE(75);
END_STATE();
case 15:
2023-12-11 15:18:46 +00:00
if (lookahead == '`') ADVANCE(46);
if (lookahead != 0) ADVANCE(15);
END_STATE();
case 16:
2023-12-11 15:18:46 +00:00
if (lookahead == 'f') ADVANCE(19);
END_STATE();
case 17:
2023-12-11 15:18:46 +00:00
if (lookahead == 'f') ADVANCE(74);
END_STATE();
case 18:
2023-12-11 15:18:46 +00:00
if (lookahead == 'i') ADVANCE(17);
END_STATE();
case 19:
2023-12-11 15:18:46 +00:00
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 20:
2023-12-11 15:18:46 +00:00
if (lookahead == 'r') ADVANCE(76);
END_STATE();
case 21:
2023-12-11 15:18:46 +00:00
if (lookahead == '|') ADVANCE(28);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(27);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 22:
2023-12-11 15:18:46 +00:00
if (lookahead == '|') ADVANCE(66);
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-11 15:18:46 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
END_STATE();
case 25:
if (eof) ADVANCE(26);
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
2023-12-11 15:18:46 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-12-11 15:18:46 +00:00
if (lookahead == '(') ADVANCE(53);
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(56);
if (lookahead == '-') ADVANCE(59);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-11 15:18:46 +00:00
if (lookahead == '/') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ':') ADVANCE(51);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(47);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(40);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-11 15:18:46 +00:00
lookahead == ' ') SKIP(25)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-11 15:18:46 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-12-05 21:42:11 +00:00
case 26:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-12-05 21:42:11 +00:00
case 27:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym__comment);
END_STATE();
2023-12-05 21:42:11 +00:00
case 28:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(sym__comment);
if (lookahead == '|') ADVANCE(28);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(27);
if (lookahead != 0) ADVANCE(21);
END_STATE();
2023-12-05 21:42:11 +00:00
case 29:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-12-05 21:42:11 +00:00
case 30:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-12-05 21:42:11 +00:00
case 31:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
2023-12-05 21:42:11 +00:00
case 32:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
2023-12-05 21:42:11 +00:00
END_STATE();
2023-11-30 14:30:25 +00:00
case 33:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-11-30 14:30:25 +00:00
case 34:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == ' ') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
2023-11-30 16:05:09 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 35:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 'c') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 37:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 'e') ADVANCE(34);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 38:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 'l') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 39:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 'n') ADVANCE(36);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 40:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 's') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 41:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 's') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 42:
ACCEPT_TOKEN(sym_identifier);
2023-12-11 15:18:46 +00:00
if (lookahead == 'y') ADVANCE(39);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-11 15:18:46 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 43:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 16:05:09 +00:00
case 44:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(24);
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-11 15:18:46 +00:00
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
END_STATE();
2023-11-30 16:05:09 +00:00
case 46:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-11-30 16:05:09 +00:00
case 47:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 48:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 49:
ACCEPT_TOKEN(anon_sym_EQ);
2023-12-11 15:18:46 +00:00
if (lookahead == '=') ADVANCE(63);
END_STATE();
2023-11-30 16:05:09 +00:00
case 50:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(63);
if (lookahead == '>') ADVANCE(75);
END_STATE();
2023-11-30 16:05:09 +00:00
case 51:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
2023-11-30 16:05:09 +00:00
case 52:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
2023-11-30 16:05:09 +00:00
case 53:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
2023-11-30 16:05:09 +00:00
END_STATE();
case 54:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
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);
END_STATE();
2023-11-30 14:30:25 +00:00
case 56:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(72);
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);
2023-12-11 15:18:46 +00:00
if (lookahead == '=') ADVANCE(73);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-11 15:18:46 +00:00
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 59:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == '=') ADVANCE(73);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 60:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-30 14:30:25 +00:00
case 61:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-30 14:30:25 +00:00
case 62:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 63:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 64:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 65:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-30 14:30:25 +00:00
case 66:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
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);
END_STATE();
2023-11-30 14:30:25 +00:00
case 68:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_GT);
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-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(71);
END_STATE();
case 70:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 71:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 72:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 73:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 74:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 75:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
case 76:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
case 77:
2023-12-11 15:18:46 +00:00
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
case 78:
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-11 15:18:46 +00:00
[1] = {.lex_state = 25},
[2] = {.lex_state = 25},
[3] = {.lex_state = 25},
[4] = {.lex_state = 25},
[5] = {.lex_state = 25},
[6] = {.lex_state = 25},
[7] = {.lex_state = 25},
[8] = {.lex_state = 25},
[9] = {.lex_state = 25},
[10] = {.lex_state = 25},
[11] = {.lex_state = 25},
[12] = {.lex_state = 25},
[13] = {.lex_state = 25},
[14] = {.lex_state = 25},
[15] = {.lex_state = 25},
[16] = {.lex_state = 25},
[17] = {.lex_state = 25},
[18] = {.lex_state = 25},
[19] = {.lex_state = 25},
[20] = {.lex_state = 25},
[21] = {.lex_state = 25},
[22] = {.lex_state = 25},
[23] = {.lex_state = 25},
[24] = {.lex_state = 25},
[25] = {.lex_state = 25},
[26] = {.lex_state = 25},
[27] = {.lex_state = 25},
[28] = {.lex_state = 25},
[29] = {.lex_state = 25},
[30] = {.lex_state = 25},
[31] = {.lex_state = 25},
[32] = {.lex_state = 25},
[33] = {.lex_state = 25},
[34] = {.lex_state = 25},
[35] = {.lex_state = 25},
[36] = {.lex_state = 25},
[37] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[38] = {.lex_state = 25},
[39] = {.lex_state = 25},
[40] = {.lex_state = 25},
[41] = {.lex_state = 1},
[42] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[43] = {.lex_state = 25},
[44] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[45] = {.lex_state = 25},
[46] = {.lex_state = 25},
[47] = {.lex_state = 25},
[48] = {.lex_state = 25},
[49] = {.lex_state = 25},
[50] = {.lex_state = 25},
[51] = {.lex_state = 25},
[52] = {.lex_state = 25},
[53] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[54] = {.lex_state = 25},
[55] = {.lex_state = 25},
[56] = {.lex_state = 25},
[57] = {.lex_state = 25},
[58] = {.lex_state = 25},
[59] = {.lex_state = 25},
[60] = {.lex_state = 25},
[61] = {.lex_state = 25},
[62] = {.lex_state = 25},
[63] = {.lex_state = 25},
[64] = {.lex_state = 25},
[65] = {.lex_state = 25},
[66] = {.lex_state = 25},
2023-12-05 21:42:11 +00:00
[67] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[68] = {.lex_state = 25},
[69] = {.lex_state = 25},
[70] = {.lex_state = 25},
[71] = {.lex_state = 25},
[72] = {.lex_state = 25},
[73] = {.lex_state = 25},
[74] = {.lex_state = 25},
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},
2023-12-11 15:18:46 +00:00
[106] = {.lex_state = 2},
[107] = {.lex_state = 2},
[108] = {.lex_state = 1},
[109] = {.lex_state = 1},
[110] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[111] = {.lex_state = 2},
2023-12-11 15:18:46 +00:00
[112] = {.lex_state = 1},
[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},
2023-12-11 15:18:46 +00:00
[122] = {.lex_state = 2},
[123] = {.lex_state = 2},
[124] = {.lex_state = 2},
[125] = {.lex_state = 2},
[126] = {.lex_state = 2},
[127] = {.lex_state = 2},
[128] = {.lex_state = 2},
2023-12-11 15:18:46 +00:00
[129] = {.lex_state = 0},
[130] = {.lex_state = 2},
2023-12-11 15:18:46 +00:00
[131] = {.lex_state = 2},
[132] = {.lex_state = 0},
[133] = {.lex_state = 2},
[134] = {.lex_state = 2},
[135] = {.lex_state = 2},
[136] = {.lex_state = 0},
2023-12-11 15:18:46 +00:00
[137] = {.lex_state = 1},
[138] = {.lex_state = 3},
2023-12-02 03:54:25 +00:00
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[141] = {.lex_state = 0},
[142] = {.lex_state = 1},
[143] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[144] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[145] = {.lex_state = 1},
[146] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[147] = {.lex_state = 3},
2023-12-05 21:42:11 +00:00
[148] = {.lex_state = 1},
[149] = {.lex_state = 1},
[150] = {.lex_state = 1},
[151] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[152] = {.lex_state = 1},
[153] = {.lex_state = 1},
[154] = {.lex_state = 1},
[155] = {.lex_state = 0},
[156] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 1},
[162] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[163] = {.lex_state = 1},
[164] = {.lex_state = 25},
[165] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[166] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[167] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[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-11 15:18:46 +00:00
[184] = {.lex_state = 1},
[185] = {.lex_state = 25},
[186] = {.lex_state = 1},
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},
2023-12-11 15:18:46 +00:00
[193] = {.lex_state = 1},
[194] = {.lex_state = 25},
[195] = {.lex_state = 2},
[196] = {.lex_state = 25},
[197] = {.lex_state = 25},
[198] = {.lex_state = 25},
[199] = {.lex_state = 1},
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},
2023-12-11 15:18:46 +00:00
[209] = {.lex_state = 25},
[210] = {.lex_state = 25},
[211] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[212] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[213] = {.lex_state = 1},
[214] = {.lex_state = 25},
[215] = {.lex_state = 25},
2023-12-05 21:42:11 +00:00
[216] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[217] = {.lex_state = 1},
[218] = {.lex_state = 25},
[219] = {.lex_state = 25},
[220] = {.lex_state = 25},
[221] = {.lex_state = 2},
[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-11 15:18:46 +00:00
[231] = {.lex_state = 5},
[232] = {.lex_state = 5},
[233] = {.lex_state = 2},
[234] = {.lex_state = 2},
[235] = {.lex_state = 25},
[236] = {.lex_state = 4},
[237] = {.lex_state = 5},
[238] = {.lex_state = 5},
[239] = {.lex_state = 5},
[240] = {.lex_state = 5},
2023-12-11 15:18:46 +00:00
[241] = {.lex_state = 1},
[242] = {.lex_state = 1},
[243] = {.lex_state = 1},
[244] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[245] = {.lex_state = 1},
[246] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[247] = {.lex_state = 1},
[248] = {.lex_state = 1},
[249] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[250] = {.lex_state = 1},
[251] = {.lex_state = 7},
2023-12-11 15:18:46 +00:00
[252] = {.lex_state = 7},
2023-12-05 21:42:11 +00:00
[253] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[254] = {.lex_state = 1},
[255] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[256] = {.lex_state = 7},
[257] = {.lex_state = 7},
[258] = {.lex_state = 7},
[259] = {.lex_state = 7},
[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},
2023-12-11 15:18:46 +00:00
[274] = {.lex_state = 1},
[275] = {.lex_state = 25},
[276] = {.lex_state = 25},
[277] = {.lex_state = 25},
[278] = {.lex_state = 1},
[279] = {.lex_state = 7},
[280] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[281] = {.lex_state = 1},
[282] = {.lex_state = 25},
[283] = {.lex_state = 7},
2023-11-30 14:48:56 +00:00
[284] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[285] = {.lex_state = 7},
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},
2023-12-11 15:18:46 +00:00
[292] = {.lex_state = 1},
[293] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[294] = {.lex_state = 7},
[295] = {.lex_state = 1},
[296] = {.lex_state = 7},
2023-12-02 07:34:23 +00:00
[297] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[298] = {.lex_state = 7},
[299] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[300] = {.lex_state = 1},
[301] = {.lex_state = 1},
2023-12-11 15:18:46 +00:00
[302] = {.lex_state = 1},
[303] = {.lex_state = 7},
[304] = {.lex_state = 1},
[305] = {.lex_state = 0},
[306] = {.lex_state = 0},
[307] = {.lex_state = 0},
[308] = {.lex_state = 0},
2023-12-11 15:18:46 +00:00
[309] = {.lex_state = 5},
[310] = {.lex_state = 25},
[311] = {.lex_state = 0},
[312] = {.lex_state = 0},
2023-12-11 15:18:46 +00:00
[313] = {.lex_state = 5},
2023-12-05 21:42:11 +00:00
[314] = {.lex_state = 0},
2023-12-11 15:18:46 +00:00
[315] = {.lex_state = 1},
[316] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[317] = {.lex_state = 0},
2023-12-11 15:18:46 +00:00
[318] = {.lex_state = 1},
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-11 15:18:46 +00:00
[324] = {.lex_state = 0},
[325] = {.lex_state = 1},
[326] = {.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] = {
2023-12-11 15:18:46 +00:00
[sym_root] = STATE(312),
[sym_block] = STATE(185),
[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),
2023-12-11 15:18:46 +00:00
[sym_assignment] = STATE(185),
[sym_index_assignment] = STATE(185),
[sym_if_else] = STATE(185),
[sym_if] = STATE(132),
[sym_match] = STATE(185),
[sym_while] = STATE(185),
[sym_for] = STATE(185),
[sym_return] = STATE(185),
[sym_use] = STATE(185),
[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,
2023-12-11 15:18:46 +00:00
STATE(132), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(286), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(297), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(287), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(188), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(189), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(188), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(189), 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,
2023-12-11 15:18:46 +00:00
STATE(188), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(189), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(188), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(189), 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,
2023-12-11 15:18:46 +00:00
STATE(188), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(189), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(200), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(205), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(200), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(205), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(200), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(205), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 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,
2023-12-11 15:18:46 +00:00
STATE(185), 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,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(149), 1,
aux_sym__expression_list,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 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,
2023-12-11 15:18:46 +00:00
STATE(102), 1,
sym_expression,
STATE(230), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(244), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(241), 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,
2023-12-11 15:18:46 +00:00
STATE(102), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(230), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(248), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(241), 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,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(146), 1,
aux_sym__expression_list,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 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,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(144), 1,
aux_sym__expression_list,
2023-12-11 15:18:46 +00:00
STATE(175), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(212), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 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,
2023-12-11 15:18:46 +00:00
STATE(102), 1,
sym_expression,
STATE(230), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(255), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(241), 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,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(150), 1,
aux_sym__expression_list,
STATE(212), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(213), 1,
sym_logic_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,
2023-12-11 15:18:46 +00:00
STATE(86), 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,
2023-12-11 15:18:46 +00:00
STATE(147), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-11 15:18:46 +00:00
STATE(195), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(230), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(281), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(242), 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,
2023-12-11 15:18:46 +00:00
STATE(260), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(242), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(218), 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,
2023-12-11 15:18:46 +00:00
STATE(164), 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,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(152), 1,
2023-12-02 07:34:23 +00:00
aux_sym__expression_list,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 1,
2023-12-05 21:42:11 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(210), 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,
2023-12-11 15:18:46 +00:00
STATE(164), 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,
2023-12-11 15:18:46 +00:00
STATE(147), 1,
2023-12-05 21:42:11 +00:00
sym_index,
2023-12-11 15:18:46 +00:00
STATE(195), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
STATE(230), 1,
2023-12-05 21:42:11 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(281), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(242), 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,
2023-12-11 15:18:46 +00:00
STATE(147), 1,
sym_index,
2023-12-11 15:18:46 +00:00
STATE(221), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
STATE(230), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(255), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(241), 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,
2023-12-11 15:18:46 +00:00
STATE(147), 1,
2023-12-05 21:42:11 +00:00
sym_index,
2023-12-11 15:18:46 +00:00
STATE(221), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
STATE(230), 1,
2023-12-05 21:42:11 +00:00
sym_if,
2023-12-11 15:18:46 +00:00
STATE(244), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 5,
2023-12-05 21:42:11 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(241), 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,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(142), 1,
aux_sym__expression_list,
2023-12-11 15:18:46 +00:00
STATE(186), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(212), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 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,
2023-12-11 15:18:46 +00:00
STATE(132), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(215), 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,
2023-12-11 15:18:46 +00:00
STATE(164), 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,
2023-12-11 15:18:46 +00:00
STATE(147), 1,
sym_index,
2023-12-11 15:18:46 +00:00
STATE(221), 1,
sym_expression,
STATE(230), 1,
sym_if,
2023-12-11 15:18:46 +00:00
STATE(248), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
STATE(241), 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,
2023-12-11 15:18:46 +00:00
STATE(200), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(205), 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,
2023-12-11 15:18:46 +00:00
STATE(200), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(205), 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,
2023-12-11 15:18:46 +00:00
STATE(200), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(205), 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(180), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(181), 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(180), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(181), 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(180), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(181), 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(180), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(181), 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(180), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(181), 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,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(161), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(159), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(263), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(261), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(225), 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,
2023-12-11 15:18:46 +00:00
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-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,
2023-12-11 15:18:46 +00:00
ACTIONS(151), 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,
2023-12-11 15:18:46 +00:00
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,
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,
2023-12-11 15:18:46 +00:00
ACTIONS(257), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(255), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(247), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(245), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(221), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(219), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(275), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(273), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(251), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(249), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(279), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(277), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(285), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(283), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(267), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(265), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(217), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(215), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(271), 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,
2023-12-11 15:18:46 +00:00
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,
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,
2023-12-11 15:18:46 +00:00
ACTIONS(289), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(287), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(149), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-11 15:18:46 +00:00
anon_sym_COMMA,
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,
2023-12-11 15:18:46 +00:00
[6646] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(149), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-11 15:18:46 +00:00
anon_sym_COMMA,
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,
2023-12-11 15:18:46 +00:00
[6692] = 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,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(133), 3,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
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,
2023-12-11 15:18:46 +00:00
ACTIONS(295), 8,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[6748] = 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,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-11 15:18:46 +00:00
ACTIONS(133), 3,
anon_sym_PLUS,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-11 15:18:46 +00:00
ACTIONS(297), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(295), 9,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[6802] = 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(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,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(293), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(291), 8,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
[6856] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(311), 1,
anon_sym_COMMA,
STATE(171), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(307), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(309), 6,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
[6911] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(317), 1,
anon_sym_COMMA,
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(313), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(315), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_RPAREN,
[6966] = 6,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(319), 1,
2023-12-11 15:18:46 +00:00
anon_sym_COLON,
STATE(178), 1,
2023-12-05 21:42:11 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(179), 1,
sym_math_operator,
ACTIONS(119), 7,
anon_sym_async,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +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,
2023-12-11 15:18:46 +00:00
ACTIONS(117), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
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-11 15:18:46 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7008] = 5,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(178), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
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,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-11 15:18:46 +00:00
ACTIONS(103), 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,
2023-12-11 15:18:46 +00:00
[7048] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(175), 1,
anon_sym_COLON,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
[7090] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(321), 1,
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 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,
2023-12-11 15:18:46 +00:00
[7144] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
2023-12-11 15:18:46 +00:00
ACTIONS(181), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_RPAREN,
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-11 15:18:46 +00:00
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
[7198] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(325), 1,
anon_sym_DOT_DOT,
STATE(178), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(179), 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,
2023-12-11 15:18:46 +00:00
[7240] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(175), 1,
anon_sym_COLON,
2023-12-11 15:18:46 +00:00
ACTIONS(181), 1,
anon_sym_DASH_GT,
2023-12-11 15:18:46 +00:00
ACTIONS(327), 1,
anon_sym_RPAREN,
STATE(171), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(172), 1,
sym_logic_operator,
ACTIONS(137), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-11 15:18:46 +00:00
ACTIONS(133), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
[7294] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(178), 1,
2023-12-11 15:18:46 +00:00
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
ACTIONS(115), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(113), 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,
2023-12-11 15:18:46 +00:00
[7334] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(319), 1,
anon_sym_COLON,
2023-12-11 15:18:46 +00:00
ACTIONS(329), 1,
anon_sym_DASH_GT,
STATE(178), 1,
sym_logic_operator,
STATE(179), 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,
[7386] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(203), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
ACTIONS(113), 18,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
[7425] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(331), 1,
anon_sym_COLON,
STATE(203), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
sym_logic_operator,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
[7466] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[7517] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(151), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(149), 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,
2023-12-11 15:18:46 +00:00
[7551] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(289), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(287), 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,
2023-12-11 15:18:46 +00:00
[7585] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(257), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(255), 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,
2023-12-11 15:18:46 +00:00
[7619] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(267), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(265), 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,
2023-12-11 15:18:46 +00:00
[7653] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(279), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(277), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-11 15:18:46 +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,
[7687] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(275), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(273), 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,
2023-12-11 15:18:46 +00:00
[7721] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(251), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(249), 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,
2023-12-11 15:18:46 +00:00
[7755] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(221), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(219), 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,
2023-12-11 15:18:46 +00:00
[7789] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(271), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(269), 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,
2023-12-11 15:18:46 +00:00
[7823] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(285), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(283), 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,
2023-12-11 15:18:46 +00:00
[7857] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(217), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(215), 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,
2023-12-11 15:18:46 +00:00
[7891] = 7,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(337), 1,
anon_sym_elseif,
ACTIONS(339), 1,
anon_sym_else,
STATE(220), 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,
[7933] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(247), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(245), 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,
2023-12-11 15:18:46 +00:00
[7967] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(263), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(261), 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,
2023-12-11 15:18:46 +00:00
[8001] = 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,
2023-12-11 15:18:46 +00:00
STATE(209), 1,
sym_else,
2023-12-11 15:18:46 +00:00
STATE(129), 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,
2023-12-11 15:18:46 +00:00
[8043] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(161), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(159), 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,
2023-12-11 15:18:46 +00:00
[8077] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(207), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(205), 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,
2023-12-11 15:18:46 +00:00
[8111] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(225), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(223), 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,
2023-12-11 15:18:46 +00:00
[8145] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
[8182] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(352), 1,
sym_identifier,
ACTIONS(355), 1,
anon_sym_LBRACE,
ACTIONS(358), 1,
anon_sym_RBRACE,
ACTIONS(360), 1,
sym_integer,
ACTIONS(369), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
anon_sym_LPAREN,
ACTIONS(375), 1,
anon_sym_STAR,
ACTIONS(378), 1,
anon_sym_fn,
STATE(137), 1,
aux_sym_match_repeat1,
STATE(236), 1,
sym_expression,
ACTIONS(363), 2,
sym_float,
sym_string,
ACTIONS(366), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8238] = 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,
2023-12-11 15:18:46 +00:00
STATE(277), 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,
2023-12-11 15:18:46 +00:00
[8280] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(237), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
ACTIONS(383), 1,
anon_sym_LBRACE,
ACTIONS(385), 1,
anon_sym_RBRACE,
ACTIONS(387), 1,
anon_sym_STAR,
STATE(137), 1,
aux_sym_match_repeat1,
STATE(236), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(233), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(235), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(134), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8336] = 15,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(231), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(237), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
ACTIONS(383), 1,
anon_sym_LBRACE,
ACTIONS(387), 1,
anon_sym_STAR,
ACTIONS(389), 1,
anon_sym_RBRACE,
STATE(137), 1,
aux_sym_match_repeat1,
STATE(236), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(233), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(235), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(134), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8392] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(265), 10,
ts_builtin_sym_end,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(267), 13,
anon_sym_async,
sym_identifier,
sym_integer,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[8423] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(391), 1,
anon_sym_RPAREN,
STATE(105), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(154), 1,
aux_sym__expression_list,
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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8476] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(393), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(395), 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,
2023-12-11 15:18:46 +00:00
[8507] = 14,
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,
ACTIONS(397), 1,
anon_sym_RPAREN,
STATE(105), 1,
sym_expression,
STATE(154), 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,
sym_function,
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8560] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(399), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-12-11 15:18:46 +00:00
STATE(104), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(158), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8613] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(401), 1,
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(154), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8666] = 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,
2023-12-11 15:18:46 +00:00
[8703] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(231), 1,
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(237), 1,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
ACTIONS(383), 1,
anon_sym_LBRACE,
ACTIONS(387), 1,
anon_sym_STAR,
STATE(140), 1,
aux_sym_match_repeat1,
STATE(236), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(233), 2,
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(235), 2,
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8756] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(403), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(154), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8809] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(405), 1,
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
STATE(105), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(154), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8862] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(407), 1,
anon_sym_RBRACK,
STATE(104), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(157), 1,
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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[8915] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(173), 1,
anon_sym_LBRACK,
ACTIONS(177), 1,
anon_sym_LPAREN,
ACTIONS(183), 1,
anon_sym_fn,
ACTIONS(409), 1,
anon_sym_RPAREN,
STATE(105), 1,
sym_expression,
STATE(154), 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,
sym_function,
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8968] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(231), 1,
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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
ACTIONS(387), 1,
anon_sym_STAR,
STATE(139), 1,
aux_sym_match_repeat1,
2023-12-11 15:18:46 +00:00
STATE(236), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9021] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(411), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(414), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
ACTIONS(417), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(426), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(429), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(432), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(434), 1,
anon_sym_fn,
STATE(105), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(154), 1,
2023-12-05 21:42:11 +00:00
aux_sym__expression_list,
2023-12-11 15:18:46 +00:00
ACTIONS(420), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(423), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9074] = 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,
2023-12-11 15:18:46 +00:00
[9105] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(437), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(439), 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,
2023-12-11 15:18:46 +00:00
[9136] = 14,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(441), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(444), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
ACTIONS(447), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(456), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(459), 1,
anon_sym_RBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(461), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(464), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
STATE(104), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(157), 1,
aux_sym_list_repeat1,
2023-12-11 15:18:46 +00:00
ACTIONS(450), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(453), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9189] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(467), 1,
anon_sym_RBRACK,
2023-12-11 15:18:46 +00:00
STATE(104), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(157), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9242] = 14,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(173), 1,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(469), 1,
anon_sym_RBRACK,
STATE(104), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(157), 1,
aux_sym_list_repeat1,
ACTIONS(169), 2,
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(98), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9295] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(471), 1,
anon_sym_RBRACK,
2023-12-11 15:18:46 +00:00
STATE(104), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(151), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9348] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(473), 1,
anon_sym_RBRACK,
2023-12-11 15:18:46 +00:00
STATE(104), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
STATE(159), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9401] = 12,
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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9448] = 12,
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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(225), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9495] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(295), 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(297), 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,
[9524] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9571] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(163), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(173), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
STATE(44), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(169), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(171), 2,
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(98), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9618] = 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,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[9661] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(231), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(237), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(239), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
ACTIONS(383), 1,
anon_sym_LBRACE,
STATE(226), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(233), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(235), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(134), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9708] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(233), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9755] = 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9802] = 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9849] = 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9896] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(173), 1,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9943] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(229), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[9990] = 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,
2023-12-11 15:18:46 +00:00
STATE(112), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
2023-11-30 01:59:58 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10037] = 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10084] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(477), 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,
2023-12-11 15:18:46 +00:00
[10131] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(114), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10178] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(106), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10225] = 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10272] = 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10319] = 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,
2023-12-11 15:18:46 +00:00
STATE(53), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10366] = 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,
2023-12-11 15:18:46 +00:00
STATE(82), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10413] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(222), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10460] = 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,
2023-12-11 15:18:46 +00:00
[10491] = 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,
2023-12-11 15:18:46 +00:00
STATE(110), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10538] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
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,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10585] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(11), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(19), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(477), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(18), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(40), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-11 15:18:46 +00:00
STATE(62), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10632] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(477), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(15), 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,
2023-12-11 15:18:46 +00:00
[10679] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(231), 1,
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(237), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(239), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(243), 1,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(167), 1,
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(233), 2,
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(235), 2,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(134), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10726] = 12,
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(381), 1,
sym_identifier,
ACTIONS(383), 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,
sym_function,
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10773] = 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,
2023-12-11 15:18:46 +00:00
STATE(67), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10820] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(173), 1,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(177), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(183), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
STATE(103), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(169), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(98), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[10867] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(479), 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(481), 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,
[10896] = 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,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-12-05 21:42:11 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[10941] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(483), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(485), 12,
anon_sym_async,
sym_identifier,
sym_integer,
2023-12-05 21:42:11 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[10970] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(487), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(489), 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,
2023-12-11 15:18:46 +00:00
[10999] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(491), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(493), 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,
2023-12-11 15:18:46 +00:00
[11028] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(11), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(35), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
sym_identifier,
ACTIONS(477), 1,
anon_sym_LBRACE,
STATE(19), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(40), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(62), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11075] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(35), 1,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
sym_identifier,
ACTIONS(477), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(30), 1,
sym_expression,
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
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,
[11122] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(107), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11169] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(111), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11216] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(116), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11263] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(231), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(237), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(239), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(243), 1,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(117), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(233), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(235), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(134), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11310] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(477), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(32), 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,
2023-12-11 15:18:46 +00:00
[11357] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(383), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(227), 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,
2023-12-11 15:18:46 +00:00
STATE(118), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11404] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(477), 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,
2023-12-11 15:18:46 +00:00
[11451] = 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(75), 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(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11498] = 3,
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,
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,
[11527] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(495), 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(497), 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,
[11556] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(475), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(477), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(10), 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,
2023-12-11 15:18:46 +00:00
[11603] = 12,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(163), 1,
sym_identifier,
ACTIONS(165), 1,
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-12-05 21:42:11 +00:00
sym_integer,
2023-12-11 15:18:46 +00:00
ACTIONS(173), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(183), 1,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
STATE(108), 1,
2023-12-05 21:42:11 +00:00
sym_expression,
2023-12-11 15:18:46 +00:00
ACTIONS(169), 2,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
2023-12-11 15:18:46 +00:00
ACTIONS(171), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
STATE(98), 4,
2023-12-05 21:42:11 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11650] = 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,
2023-12-11 15:18:46 +00:00
STATE(109), 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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11697] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(499), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(501), 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,
2023-12-11 15:18:46 +00:00
[11726] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(503), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(505), 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,
2023-12-11 15:18:46 +00:00
[11755] = 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,
2023-12-11 15:18:46 +00:00
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,
2023-12-11 15:18:46 +00:00
STATE(86), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11802] = 12,
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(381), 1,
sym_identifier,
ACTIONS(383), 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,
sym_function,
STATE(118), 6,
2023-12-05 21:42:11 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-11 15:18:46 +00:00
[11849] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(507), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(509), 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,
2023-12-11 15:18:46 +00:00
[11878] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(511), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(513), 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,
2023-12-11 15:18:46 +00:00
[11907] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(515), 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,
anon_sym_asyncfor,
2023-12-11 15:18:46 +00:00
ACTIONS(517), 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,
2023-12-11 15:18:46 +00:00
[11936] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
STATE(203), 1,
sym_math_operator,
STATE(204), 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,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-11 15:18:46 +00:00
anon_sym_COMMA,
sym_identifier,
2023-12-11 15:18:46 +00:00
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,
[11979] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(519), 1,
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(521), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(253), 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,
2023-12-11 15:18:46 +00:00
[12025] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(523), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(525), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(240), 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,
2023-12-11 15:18:46 +00:00
[12071] = 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-11 15:18:46 +00:00
ACTIONS(527), 1,
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(529), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(196), 1,
2023-12-05 21:42:11 +00:00
sym_block,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[12117] = 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-11 15:18:46 +00:00
ACTIONS(519), 1,
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(521), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(243), 1,
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,
2023-12-11 15:18:46 +00:00
[12163] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(531), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(533), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(143), 1,
sym_block,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[12209] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(531), 1,
2023-12-05 21:42:11 +00:00
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(533), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(156), 1,
sym_block,
STATE(203), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[12255] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(523), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(525), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(237), 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,
2023-12-11 15:18:46 +00:00
[12301] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(527), 1,
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(529), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(203), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-11 15:18:46 +00:00
STATE(214), 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,
2023-12-11 15:18:46 +00:00
[12347] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(535), 1,
anon_sym_elseif,
2023-12-11 15:18:46 +00:00
ACTIONS(537), 1,
anon_sym_else,
2023-12-11 15:18:46 +00:00
STATE(245), 1,
sym_else,
2023-12-11 15:18:46 +00:00
STATE(231), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(341), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-11-30 14:48:56 +00:00
anon_sym_STAR,
2023-12-11 15:18:46 +00:00
[12382] = 7,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(535), 1,
anon_sym_elseif,
ACTIONS(537), 1,
anon_sym_else,
STATE(250), 1,
sym_else,
STATE(232), 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), 9,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_STAR,
2023-12-11 15:18:46 +00:00
[12417] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(539), 1,
anon_sym_elseif,
2023-12-11 15:18:46 +00:00
STATE(232), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-11 15:18:46 +00:00
ACTIONS(347), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-11 15:18:46 +00:00
anon_sym_else,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(345), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12447] = 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,
ACTIONS(542), 1,
anon_sym_LBRACE,
STATE(203), 1,
sym_math_operator,
STATE(204), 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,
[12487] = 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,
2023-12-11 15:18:46 +00:00
ACTIONS(544), 1,
anon_sym_LBRACE,
STATE(203), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-11 15:18:46 +00:00
STATE(204), 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,
2023-12-11 15:18:46 +00:00
[12527] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(548), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(546), 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,
2023-12-11 15:18:46 +00:00
[12553] = 10,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(131), 1,
anon_sym_DASH,
ACTIONS(329), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
ACTIONS(550), 1,
anon_sym_EQ_GT,
STATE(203), 1,
sym_math_operator,
STATE(204), 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,
[12593] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(395), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(393), 10,
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,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
anon_sym_elseif,
[12617] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(247), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(245), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
anon_sym_elseif,
2023-12-11 15:18:46 +00:00
[12641] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(267), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(265), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
anon_sym_elseif,
2023-12-11 15:18:46 +00:00
[12665] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(439), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_else,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(437), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
anon_sym_elseif,
2023-12-11 15:18:46 +00:00
[12689] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(297), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(295), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12711] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(305), 1,
anon_sym_SEMI,
ACTIONS(297), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(295), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12735] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(501), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(499), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12757] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(497), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(495), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12779] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(335), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(333), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12801] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(493), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(491), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12823] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(481), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(479), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12845] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(509), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(507), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12867] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(513), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(511), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12889] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(517), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(515), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12911] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(554), 1,
anon_sym_DASH_GT,
ACTIONS(552), 13,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
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,
[12933] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(558), 1,
anon_sym_DASH_GT,
ACTIONS(556), 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,
[12955] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(485), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(483), 9,
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,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12977] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(489), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(487), 9,
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,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[12999] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(505), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(503), 9,
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,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[13021] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(560), 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,
[13040] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(562), 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,
[13059] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(564), 13,
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_GT,
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,
2023-12-11 15:18:46 +00:00
[13078] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(552), 13,
anon_sym_COMMA,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_GT,
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,
2023-12-11 15:18:46 +00:00
[13097] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(570), 1,
anon_sym_COMMA,
ACTIONS(566), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(568), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_STAR,
[13120] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(572), 1,
anon_sym_LBRACK,
ACTIONS(574), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(576), 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,
2023-12-11 15:18:46 +00:00
STATE(267), 1,
2023-12-05 21:42:11 +00:00
sym_type,
2023-12-11 15:18:46 +00:00
ACTIONS(578), 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,
2023-12-11 15:18:46 +00:00
[13148] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(572), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(574), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
ACTIONS(580), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
2023-12-11 15:18:46 +00:00
STATE(264), 1,
aux_sym_type_repeat1,
STATE(267), 1,
sym_type,
ACTIONS(578), 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,
2023-12-11 15:18:46 +00:00
[13176] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(582), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(584), 7,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_STAR,
[13196] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(586), 1,
anon_sym_LBRACK,
ACTIONS(589), 1,
anon_sym_LPAREN,
ACTIONS(592), 1,
anon_sym_RPAREN,
STATE(264), 1,
aux_sym_type_repeat1,
STATE(267), 1,
sym_type,
ACTIONS(594), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13224] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(597), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
2023-12-11 15:18:46 +00:00
ACTIONS(432), 6,
anon_sym_LBRACE,
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,
2023-12-11 15:18:46 +00:00
anon_sym_RPAREN,
[13243] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(599), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(459), 6,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
[13262] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(601), 1,
anon_sym_COMMA,
ACTIONS(603), 10,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_RPAREN,
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,
2023-12-11 15:18:46 +00:00
[13281] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(605), 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,
2023-12-11 15:18:46 +00:00
ACTIONS(607), 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,
2023-12-11 15:18:46 +00:00
[13299] = 5,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(572), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(574), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
STATE(258), 1,
sym_type,
ACTIONS(578), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13321] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(572), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(574), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
STATE(317), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-11 15:18:46 +00:00
ACTIONS(578), 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,
2023-12-11 15:18:46 +00:00
[13343] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(611), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[13361] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(572), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(574), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
STATE(313), 1,
sym_type,
ACTIONS(578), 7,
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,
2023-12-11 15:18:46 +00:00
[13383] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(592), 10,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
anon_sym_RPAREN,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-11 15:18:46 +00:00
[13399] = 5,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(572), 1,
anon_sym_LBRACK,
2023-12-11 15:18:46 +00:00
ACTIONS(574), 1,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
STATE(257), 1,
sym_type,
2023-12-11 15:18:46 +00:00
ACTIONS(578), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-11 15:18:46 +00:00
[13421] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
STATE(43), 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,
2023-12-11 15:18:46 +00:00
[13433] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
STATE(68), 1,
sym_assignment_operator,
ACTIONS(157), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-11 15:18:46 +00:00
[13445] = 3,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
STATE(65), 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,
2023-12-11 15:18:46 +00:00
[13457] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(613), 1,
anon_sym_async,
ACTIONS(615), 1,
anon_sym_LBRACE,
STATE(128), 1,
sym_block,
[13470] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(617), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(620), 1,
2023-11-30 14:48:56 +00:00
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
STATE(279), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
2023-12-11 15:18:46 +00:00
[13483] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(41), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
ACTIONS(622), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
STATE(297), 1,
aux_sym_map_repeat1,
[13496] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(626), 1,
anon_sym_COMMA,
ACTIONS(624), 2,
anon_sym_RBRACE,
sym_identifier,
[13507] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(628), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-11 15:18:46 +00:00
[13516] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(630), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(632), 1,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
STATE(279), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
2023-12-11 15:18:46 +00:00
[13529] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(43), 1,
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
ACTIONS(622), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
STATE(287), 1,
aux_sym_map_repeat1,
2023-12-11 15:18:46 +00:00
[13542] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(630), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(634), 1,
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
STATE(283), 1,
aux_sym_function_repeat1,
2023-12-11 15:18:46 +00:00
[13555] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(622), 1,
sym_identifier,
ACTIONS(636), 1,
anon_sym_RBRACE,
STATE(299), 1,
aux_sym_map_repeat1,
[13568] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(622), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(638), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
STATE(299), 1,
2023-12-05 21:42:11 +00:00
aux_sym_map_repeat1,
2023-12-11 15:18:46 +00:00
[13581] = 4,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(630), 1,
2023-12-05 21:42:11 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(640), 1,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
STATE(296), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
2023-12-11 15:18:46 +00:00
[13594] = 4,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(527), 1,
anon_sym_async,
ACTIONS(529), 1,
anon_sym_LBRACE,
STATE(45), 1,
sym_block,
[13607] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(644), 1,
2023-12-05 21:42:11 +00:00
anon_sym_COMMA,
2023-12-11 15:18:46 +00:00
ACTIONS(642), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
[13618] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(613), 1,
anon_sym_async,
ACTIONS(615), 1,
anon_sym_LBRACE,
STATE(120), 1,
sym_block,
[13631] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(527), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(529), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
STATE(219), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-11 15:18:46 +00:00
[13644] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(527), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-11 15:18:46 +00:00
ACTIONS(529), 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,
2023-12-11 15:18:46 +00:00
[13657] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(630), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(646), 1,
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
STATE(279), 1,
aux_sym_function_repeat1,
2023-12-11 15:18:46 +00:00
[13670] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(519), 1,
anon_sym_async,
ACTIONS(521), 1,
anon_sym_LBRACE,
STATE(87), 1,
sym_block,
[13683] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(630), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(648), 1,
anon_sym_PIPE,
STATE(279), 1,
aux_sym_function_repeat1,
[13696] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(622), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(650), 1,
anon_sym_RBRACE,
STATE(299), 1,
2023-12-05 21:42:11 +00:00
aux_sym_map_repeat1,
2023-12-11 15:18:46 +00:00
[13709] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(630), 1,
sym_identifier,
ACTIONS(652), 1,
anon_sym_PIPE,
STATE(294), 1,
aux_sym_function_repeat1,
[13722] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(654), 1,
sym_identifier,
2023-12-11 15:18:46 +00:00
ACTIONS(657), 1,
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
STATE(299), 1,
aux_sym_map_repeat1,
2023-12-11 15:18:46 +00:00
[13735] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(519), 1,
anon_sym_async,
ACTIONS(521), 1,
anon_sym_LBRACE,
STATE(95), 1,
sym_block,
[13748] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
2023-12-11 15:18:46 +00:00
ACTIONS(622), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-11 15:18:46 +00:00
STATE(286), 1,
aux_sym_map_repeat1,
2023-12-11 15:18:46 +00:00
[13761] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(519), 1,
anon_sym_async,
ACTIONS(521), 1,
anon_sym_LBRACE,
STATE(249), 1,
sym_block,
[13774] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(620), 2,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
[13782] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(659), 2,
anon_sym_RBRACE,
sym_identifier,
2023-12-11 15:18:46 +00:00
[13790] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(661), 1,
anon_sym_LPAREN,
[13797] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(663), 1,
anon_sym_PIPE,
[13804] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(665), 1,
sym_string,
2023-12-11 15:18:46 +00:00
[13811] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(667), 1,
anon_sym_PIPE,
[13818] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(550), 1,
anon_sym_EQ_GT,
[13825] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(669), 1,
anon_sym_EQ,
2023-12-11 15:18:46 +00:00
[13832] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(671), 1,
sym_string,
[13839] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(673), 1,
ts_builtin_sym_end,
[13846] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(675), 1,
anon_sym_GT,
[13853] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(677), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
[13860] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(679), 1,
sym_identifier,
[13867] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(681), 1,
anon_sym_LBRACE,
[13874] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(683), 1,
anon_sym_RBRACK,
[13881] = 2,
2023-12-05 21:42:11 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(685), 1,
anon_sym_in,
2023-12-11 15:18:46 +00:00
[13888] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(687), 1,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
[13895] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(689), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
[13902] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(691), 1,
anon_sym_PIPE,
2023-12-11 15:18:46 +00:00
[13909] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(693), 1,
anon_sym_LPAREN,
2023-12-11 15:18:46 +00:00
[13916] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(695), 1,
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
[13923] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(697), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACE,
2023-12-11 15:18:46 +00:00
[13930] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(699), 1,
anon_sym_in,
[13937] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-11 15:18:46 +00:00
ACTIONS(701), 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,
2023-12-11 15:18:46 +00:00
[SMALL_STATE(100)] = 6646,
[SMALL_STATE(101)] = 6692,
[SMALL_STATE(102)] = 6748,
[SMALL_STATE(103)] = 6802,
[SMALL_STATE(104)] = 6856,
[SMALL_STATE(105)] = 6911,
[SMALL_STATE(106)] = 6966,
[SMALL_STATE(107)] = 7008,
[SMALL_STATE(108)] = 7048,
[SMALL_STATE(109)] = 7090,
[SMALL_STATE(110)] = 7144,
[SMALL_STATE(111)] = 7198,
[SMALL_STATE(112)] = 7240,
[SMALL_STATE(113)] = 7294,
[SMALL_STATE(114)] = 7334,
[SMALL_STATE(115)] = 7386,
[SMALL_STATE(116)] = 7425,
[SMALL_STATE(117)] = 7466,
[SMALL_STATE(118)] = 7517,
[SMALL_STATE(119)] = 7551,
[SMALL_STATE(120)] = 7585,
[SMALL_STATE(121)] = 7619,
[SMALL_STATE(122)] = 7653,
[SMALL_STATE(123)] = 7687,
[SMALL_STATE(124)] = 7721,
[SMALL_STATE(125)] = 7755,
[SMALL_STATE(126)] = 7789,
[SMALL_STATE(127)] = 7823,
[SMALL_STATE(128)] = 7857,
[SMALL_STATE(129)] = 7891,
[SMALL_STATE(130)] = 7933,
[SMALL_STATE(131)] = 7967,
[SMALL_STATE(132)] = 8001,
[SMALL_STATE(133)] = 8043,
[SMALL_STATE(134)] = 8077,
[SMALL_STATE(135)] = 8111,
[SMALL_STATE(136)] = 8145,
[SMALL_STATE(137)] = 8182,
[SMALL_STATE(138)] = 8238,
[SMALL_STATE(139)] = 8280,
[SMALL_STATE(140)] = 8336,
[SMALL_STATE(141)] = 8392,
[SMALL_STATE(142)] = 8423,
[SMALL_STATE(143)] = 8476,
[SMALL_STATE(144)] = 8507,
[SMALL_STATE(145)] = 8560,
[SMALL_STATE(146)] = 8613,
[SMALL_STATE(147)] = 8666,
[SMALL_STATE(148)] = 8703,
[SMALL_STATE(149)] = 8756,
[SMALL_STATE(150)] = 8809,
[SMALL_STATE(151)] = 8862,
[SMALL_STATE(152)] = 8915,
[SMALL_STATE(153)] = 8968,
[SMALL_STATE(154)] = 9021,
[SMALL_STATE(155)] = 9074,
[SMALL_STATE(156)] = 9105,
[SMALL_STATE(157)] = 9136,
[SMALL_STATE(158)] = 9189,
[SMALL_STATE(159)] = 9242,
[SMALL_STATE(160)] = 9295,
[SMALL_STATE(161)] = 9348,
[SMALL_STATE(162)] = 9401,
[SMALL_STATE(163)] = 9448,
[SMALL_STATE(164)] = 9495,
[SMALL_STATE(165)] = 9524,
[SMALL_STATE(166)] = 9571,
[SMALL_STATE(167)] = 9618,
[SMALL_STATE(168)] = 9661,
[SMALL_STATE(169)] = 9708,
[SMALL_STATE(170)] = 9755,
[SMALL_STATE(171)] = 9802,
[SMALL_STATE(172)] = 9849,
[SMALL_STATE(173)] = 9896,
[SMALL_STATE(174)] = 9943,
[SMALL_STATE(175)] = 9990,
[SMALL_STATE(176)] = 10037,
[SMALL_STATE(177)] = 10084,
[SMALL_STATE(178)] = 10131,
[SMALL_STATE(179)] = 10178,
[SMALL_STATE(180)] = 10225,
[SMALL_STATE(181)] = 10272,
[SMALL_STATE(182)] = 10319,
[SMALL_STATE(183)] = 10366,
[SMALL_STATE(184)] = 10413,
[SMALL_STATE(185)] = 10460,
[SMALL_STATE(186)] = 10491,
[SMALL_STATE(187)] = 10538,
[SMALL_STATE(188)] = 10585,
[SMALL_STATE(189)] = 10632,
[SMALL_STATE(190)] = 10679,
[SMALL_STATE(191)] = 10726,
[SMALL_STATE(192)] = 10773,
[SMALL_STATE(193)] = 10820,
[SMALL_STATE(194)] = 10867,
[SMALL_STATE(195)] = 10896,
[SMALL_STATE(196)] = 10941,
[SMALL_STATE(197)] = 10970,
[SMALL_STATE(198)] = 10999,
[SMALL_STATE(199)] = 11028,
[SMALL_STATE(200)] = 11075,
[SMALL_STATE(201)] = 11122,
[SMALL_STATE(202)] = 11169,
[SMALL_STATE(203)] = 11216,
[SMALL_STATE(204)] = 11263,
[SMALL_STATE(205)] = 11310,
[SMALL_STATE(206)] = 11357,
[SMALL_STATE(207)] = 11404,
[SMALL_STATE(208)] = 11451,
[SMALL_STATE(209)] = 11498,
[SMALL_STATE(210)] = 11527,
[SMALL_STATE(211)] = 11556,
[SMALL_STATE(212)] = 11603,
[SMALL_STATE(213)] = 11650,
[SMALL_STATE(214)] = 11697,
[SMALL_STATE(215)] = 11726,
[SMALL_STATE(216)] = 11755,
[SMALL_STATE(217)] = 11802,
[SMALL_STATE(218)] = 11849,
[SMALL_STATE(219)] = 11878,
[SMALL_STATE(220)] = 11907,
[SMALL_STATE(221)] = 11936,
[SMALL_STATE(222)] = 11979,
[SMALL_STATE(223)] = 12025,
[SMALL_STATE(224)] = 12071,
[SMALL_STATE(225)] = 12117,
[SMALL_STATE(226)] = 12163,
[SMALL_STATE(227)] = 12209,
[SMALL_STATE(228)] = 12255,
[SMALL_STATE(229)] = 12301,
[SMALL_STATE(230)] = 12347,
[SMALL_STATE(231)] = 12382,
[SMALL_STATE(232)] = 12417,
[SMALL_STATE(233)] = 12447,
[SMALL_STATE(234)] = 12487,
[SMALL_STATE(235)] = 12527,
[SMALL_STATE(236)] = 12553,
[SMALL_STATE(237)] = 12593,
[SMALL_STATE(238)] = 12617,
[SMALL_STATE(239)] = 12641,
[SMALL_STATE(240)] = 12665,
[SMALL_STATE(241)] = 12689,
[SMALL_STATE(242)] = 12711,
[SMALL_STATE(243)] = 12735,
[SMALL_STATE(244)] = 12757,
[SMALL_STATE(245)] = 12779,
[SMALL_STATE(246)] = 12801,
[SMALL_STATE(247)] = 12823,
[SMALL_STATE(248)] = 12845,
[SMALL_STATE(249)] = 12867,
[SMALL_STATE(250)] = 12889,
[SMALL_STATE(251)] = 12911,
[SMALL_STATE(252)] = 12933,
[SMALL_STATE(253)] = 12955,
[SMALL_STATE(254)] = 12977,
[SMALL_STATE(255)] = 12999,
[SMALL_STATE(256)] = 13021,
[SMALL_STATE(257)] = 13040,
[SMALL_STATE(258)] = 13059,
[SMALL_STATE(259)] = 13078,
[SMALL_STATE(260)] = 13097,
[SMALL_STATE(261)] = 13120,
[SMALL_STATE(262)] = 13148,
[SMALL_STATE(263)] = 13176,
[SMALL_STATE(264)] = 13196,
[SMALL_STATE(265)] = 13224,
[SMALL_STATE(266)] = 13243,
[SMALL_STATE(267)] = 13262,
[SMALL_STATE(268)] = 13281,
[SMALL_STATE(269)] = 13299,
[SMALL_STATE(270)] = 13321,
[SMALL_STATE(271)] = 13343,
[SMALL_STATE(272)] = 13361,
[SMALL_STATE(273)] = 13383,
[SMALL_STATE(274)] = 13399,
[SMALL_STATE(275)] = 13421,
[SMALL_STATE(276)] = 13433,
[SMALL_STATE(277)] = 13445,
[SMALL_STATE(278)] = 13457,
[SMALL_STATE(279)] = 13470,
[SMALL_STATE(280)] = 13483,
[SMALL_STATE(281)] = 13496,
[SMALL_STATE(282)] = 13507,
[SMALL_STATE(283)] = 13516,
[SMALL_STATE(284)] = 13529,
[SMALL_STATE(285)] = 13542,
[SMALL_STATE(286)] = 13555,
[SMALL_STATE(287)] = 13568,
[SMALL_STATE(288)] = 13581,
[SMALL_STATE(289)] = 13594,
[SMALL_STATE(290)] = 13607,
[SMALL_STATE(291)] = 13618,
[SMALL_STATE(292)] = 13631,
[SMALL_STATE(293)] = 13644,
[SMALL_STATE(294)] = 13657,
[SMALL_STATE(295)] = 13670,
[SMALL_STATE(296)] = 13683,
[SMALL_STATE(297)] = 13696,
[SMALL_STATE(298)] = 13709,
[SMALL_STATE(299)] = 13722,
[SMALL_STATE(300)] = 13735,
[SMALL_STATE(301)] = 13748,
[SMALL_STATE(302)] = 13761,
[SMALL_STATE(303)] = 13774,
[SMALL_STATE(304)] = 13782,
[SMALL_STATE(305)] = 13790,
[SMALL_STATE(306)] = 13797,
[SMALL_STATE(307)] = 13804,
[SMALL_STATE(308)] = 13811,
[SMALL_STATE(309)] = 13818,
[SMALL_STATE(310)] = 13825,
[SMALL_STATE(311)] = 13832,
[SMALL_STATE(312)] = 13839,
[SMALL_STATE(313)] = 13846,
[SMALL_STATE(314)] = 13853,
[SMALL_STATE(315)] = 13860,
[SMALL_STATE(316)] = 13867,
[SMALL_STATE(317)] = 13874,
[SMALL_STATE(318)] = 13881,
[SMALL_STATE(319)] = 13888,
[SMALL_STATE(320)] = 13895,
[SMALL_STATE(321)] = 13902,
[SMALL_STATE(322)] = 13909,
[SMALL_STATE(323)] = 13916,
[SMALL_STATE(324)] = 13923,
[SMALL_STATE(325)] = 13930,
[SMALL_STATE(326)] = 13937,
};
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),
2023-12-11 15:18:46 +00:00
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
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),
2023-12-11 15:18:46 +00:00
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
2023-12-11 15:18:46 +00:00
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56),
2023-12-11 15:18:46 +00:00
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[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),
2023-12-11 15:18:46 +00:00
[50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(314),
[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),
2023-12-11 15:18:46 +00:00
[65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(160),
[68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(166),
2023-12-11 15:18:46 +00:00
[71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(169),
[77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(174),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(315),
[83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(315),
[86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(177),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(307),
[92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(308),
[95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
2023-12-11 15:18:46 +00:00
[97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
2023-12-11 15:18:46 +00:00
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[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),
2023-12-11 15:18:46 +00:00
[121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[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),
2023-12-11 15:18:46 +00:00
[131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271),
[139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
2023-12-11 15:18:46 +00:00
[147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[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),
2023-12-11 15:18:46 +00:00
[163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86),
[165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
2023-12-11 15:18:46 +00:00
[171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
[185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
2023-12-11 15:18:46 +00:00
[187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320),
[189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
2023-12-11 15:18:46 +00:00
[191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165),
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163),
[197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326),
[199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311),
[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),
2023-12-11 15:18:46 +00:00
[211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[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),
2023-12-11 15:18:46 +00:00
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
2023-12-11 15:18:46 +00:00
[235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119),
[237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190),
[243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321),
[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),
2023-12-11 15:18:46 +00:00
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[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),
2023-12-11 15:18:46 +00:00
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[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),
2023-12-11 15:18:46 +00:00
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
2023-12-11 15:18:46 +00:00
[311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
2023-12-11 15:18:46 +00:00
[317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
2023-12-11 15:18:46 +00:00
[337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[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),
2023-12-11 15:18:46 +00:00
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(206),
[352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(118),
[355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(301),
[358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134),
[363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134),
[366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(119),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(161),
[372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(176),
[375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(309),
[378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(321),
[381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118),
[383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(86),
[414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(280),
[417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98),
[420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98),
[423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(97),
[426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(145),
[429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(192),
[432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(306),
[437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(86),
[444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(280),
[447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98),
[450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98),
[453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(97),
[456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(145),
[459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(192),
[464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(306),
[467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5),
[489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5),
[491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
[539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(187),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5),
[566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4),
[584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4),
[586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(270),
[589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(261),
[592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(256),
[597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(290),
[620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
[628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(310),
[657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[673] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
};
#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