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

13674 lines
305 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-05 21:42:11 +00:00
#define STATE_COUNT 334
#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,
2023-12-05 21:42:11 +00:00
[3] = 3,
[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,
2023-12-05 21:42:11 +00:00
[8] = 8,
[9] = 7,
[10] = 5,
[11] = 11,
[12] = 5,
[13] = 8,
[14] = 14,
[15] = 5,
[16] = 8,
2023-12-02 03:54:25 +00:00
[17] = 17,
2023-12-05 21:42:11 +00:00
[18] = 8,
[19] = 5,
[20] = 8,
[21] = 21,
[22] = 21,
[23] = 23,
[24] = 6,
[25] = 21,
[26] = 23,
[27] = 23,
[28] = 21,
[29] = 23,
[30] = 14,
[31] = 21,
[32] = 23,
[33] = 17,
[34] = 34,
[35] = 35,
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,
2023-12-05 21:42:11 +00:00
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[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,
2023-11-30 14:30:25 +00:00
[51] = 51,
2023-12-05 21:42:11 +00:00
[52] = 48,
2023-12-02 03:54:25 +00:00
[53] = 53,
2023-12-05 21:42:11 +00:00
[54] = 49,
[55] = 46,
2023-12-02 03:54:25 +00:00
[56] = 56,
2023-12-05 21:42:11 +00:00
[57] = 48,
[58] = 51,
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,
2023-12-05 21:42:11 +00:00
[65] = 49,
[66] = 50,
2023-12-02 03:54:25 +00:00
[67] = 67,
2023-12-05 21:42:11 +00:00
[68] = 67,
2023-12-02 07:34:23 +00:00
[69] = 69,
2023-12-05 21:42:11 +00:00
[70] = 69,
[71] = 71,
2023-12-02 07:34:23 +00:00
[72] = 72,
[73] = 73,
2023-12-05 21:42:11 +00:00
[74] = 45,
[75] = 7,
[76] = 14,
[77] = 17,
[78] = 6,
[79] = 62,
[80] = 7,
[81] = 6,
[82] = 17,
[83] = 14,
[84] = 56,
[85] = 40,
[86] = 86,
[87] = 47,
[88] = 60,
[89] = 63,
[90] = 35,
[91] = 38,
[92] = 42,
[93] = 93,
2023-12-02 07:34:23 +00:00
[94] = 59,
2023-12-05 21:42:11 +00:00
[95] = 36,
[96] = 64,
[97] = 53,
[98] = 37,
[99] = 43,
2023-12-02 07:34:23 +00:00
[100] = 100,
2023-12-05 21:42:11 +00:00
[101] = 101,
[102] = 101,
[103] = 101,
[104] = 37,
[105] = 59,
[106] = 63,
[107] = 107,
[108] = 40,
[109] = 47,
[110] = 43,
[111] = 53,
[112] = 60,
[113] = 113,
[114] = 64,
[115] = 36,
[116] = 56,
[117] = 35,
[118] = 38,
[119] = 42,
[120] = 45,
[121] = 17,
[122] = 62,
[123] = 123,
[124] = 73,
[125] = 14,
[126] = 7,
[127] = 6,
[128] = 7,
[129] = 72,
[130] = 17,
[131] = 6,
[132] = 34,
[133] = 14,
[134] = 134,
[135] = 135,
[136] = 136,
[137] = 137,
[138] = 134,
2023-12-02 07:34:23 +00:00
[139] = 139,
2023-12-05 21:42:11 +00:00
[140] = 136,
[141] = 45,
[142] = 62,
[143] = 41,
2023-12-02 07:34:23 +00:00
[144] = 144,
2023-12-05 21:42:11 +00:00
[145] = 137,
[146] = 146,
[147] = 136,
[148] = 139,
[149] = 137,
[150] = 134,
[151] = 45,
[152] = 139,
[153] = 62,
2023-11-30 14:30:25 +00:00
[154] = 154,
[155] = 155,
2023-11-30 16:05:09 +00:00
[156] = 156,
2023-12-05 21:42:11 +00:00
[157] = 157,
[158] = 156,
2023-12-02 03:54:25 +00:00
[159] = 159,
2023-12-05 21:42:11 +00:00
[160] = 160,
[161] = 159,
[162] = 156,
[163] = 157,
2023-12-02 07:34:23 +00:00
[164] = 164,
[165] = 165,
2023-12-05 21:42:11 +00:00
[166] = 166,
[167] = 167,
2023-12-02 07:34:23 +00:00
[168] = 168,
2023-12-05 21:42:11 +00:00
[169] = 6,
[170] = 159,
[171] = 156,
2023-12-02 07:34:23 +00:00
[172] = 159,
2023-12-05 21:42:11 +00:00
[173] = 156,
[174] = 165,
[175] = 175,
[176] = 166,
[177] = 177,
[178] = 160,
[179] = 159,
[180] = 168,
[181] = 156,
[182] = 182,
2023-12-02 07:34:23 +00:00
[183] = 183,
2023-12-05 21:42:11 +00:00
[184] = 184,
[185] = 185,
[186] = 167,
[187] = 157,
[188] = 164,
[189] = 189,
[190] = 167,
[191] = 69,
[192] = 192,
[193] = 193,
[194] = 194,
[195] = 157,
[196] = 168,
[197] = 159,
[198] = 177,
[199] = 199,
[200] = 165,
[201] = 157,
[202] = 7,
[203] = 159,
[204] = 157,
[205] = 157,
[206] = 71,
[207] = 175,
[208] = 168,
[209] = 209,
[210] = 182,
[211] = 156,
[212] = 183,
[213] = 166,
[214] = 17,
2023-12-02 07:34:23 +00:00
[215] = 69,
2023-12-05 21:42:11 +00:00
[216] = 216,
[217] = 156,
2023-12-02 07:34:23 +00:00
[218] = 218,
2023-12-05 21:42:11 +00:00
[219] = 159,
[220] = 14,
[221] = 221,
[222] = 7,
2023-12-02 07:34:23 +00:00
[223] = 223,
2023-12-05 21:42:11 +00:00
[224] = 155,
[225] = 157,
[226] = 6,
[227] = 17,
[228] = 14,
2023-11-30 14:48:56 +00:00
[229] = 229,
2023-12-05 21:42:11 +00:00
[230] = 230,
[231] = 231,
[232] = 232,
2023-12-02 07:34:23 +00:00
[233] = 229,
2023-12-05 21:42:11 +00:00
[234] = 230,
[235] = 232,
[236] = 231,
2023-11-30 16:05:09 +00:00
[237] = 237,
2023-11-30 14:48:56 +00:00
[238] = 238,
2023-12-05 21:42:11 +00:00
[239] = 237,
[240] = 240,
2023-11-30 16:05:09 +00:00
[241] = 241,
2023-12-02 07:34:23 +00:00
[242] = 242,
[243] = 243,
2023-12-05 21:42:11 +00:00
[244] = 244,
[245] = 218,
[246] = 246,
[247] = 247,
2023-11-30 16:05:09 +00:00
[248] = 248,
2023-12-02 03:54:25 +00:00
[249] = 249,
[250] = 250,
2023-12-02 07:34:23 +00:00
[251] = 251,
2023-12-05 21:42:11 +00:00
[252] = 252,
2023-12-02 07:34:23 +00:00
[253] = 253,
2023-12-02 03:54:25 +00:00
[254] = 254,
[255] = 255,
[256] = 256,
2023-11-30 14:48:56 +00:00
[257] = 257,
2023-12-02 07:34:23 +00:00
[258] = 258,
[259] = 259,
2023-12-05 21:42:11 +00:00
[260] = 113,
[261] = 107,
[262] = 123,
[263] = 146,
[264] = 154,
[265] = 192,
[266] = 209,
[267] = 189,
[268] = 199,
[269] = 194,
[270] = 270,
[271] = 164,
[272] = 193,
[273] = 164,
[274] = 223,
[275] = 184,
[276] = 221,
[277] = 185,
[278] = 270,
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 280,
[283] = 283,
2023-12-02 07:34:23 +00:00
[284] = 284,
[285] = 285,
[286] = 286,
2023-12-05 21:42:11 +00:00
[287] = 279,
2023-12-02 07:34:23 +00:00
[288] = 288,
2023-12-05 21:42:11 +00:00
[289] = 280,
[290] = 290,
[291] = 285,
[292] = 290,
2023-11-30 16:05:09 +00:00
[293] = 293,
2023-12-05 21:42:11 +00:00
[294] = 285,
2023-12-02 07:34:23 +00:00
[295] = 295,
2023-12-05 21:42:11 +00:00
[296] = 296,
[297] = 279,
[298] = 296,
[299] = 285,
[300] = 280,
[301] = 301,
[302] = 295,
2023-12-02 07:34:23 +00:00
[303] = 284,
2023-12-05 21:42:11 +00:00
[304] = 283,
[305] = 290,
[306] = 284,
[307] = 296,
[308] = 279,
[309] = 290,
[310] = 310,
[311] = 311,
[312] = 312,
[313] = 313,
2023-12-02 07:34:23 +00:00
[314] = 314,
[315] = 315,
2023-12-05 21:42:11 +00:00
[316] = 313,
[317] = 315,
2023-12-02 03:54:25 +00:00
[318] = 318,
2023-12-05 21:42:11 +00:00
[319] = 315,
[320] = 320,
[321] = 321,
[322] = 320,
[323] = 314,
[324] = 312,
[325] = 318,
[326] = 314,
2023-12-02 03:54:25 +00:00
[327] = 327,
2023-12-05 21:42:11 +00:00
[328] = 313,
[329] = 315,
[330] = 313,
[331] = 331,
[332] = 332,
[333] = 315,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-12-05 21:42:11 +00:00
if (eof) ADVANCE(25);
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
2023-12-05 21:42:11 +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-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == ')') ADVANCE(53);
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(58);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(39);
if (lookahead == 'e') ADVANCE(37);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(78);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-05 21:42:11 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 1:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
2023-12-05 21:42:11 +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-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == ')') ADVANCE(53);
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(54);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(59);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(15);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-05 21:42:11 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 2:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-05 21:42:11 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-05 21:42:11 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(56);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 3:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-05 21:42:11 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-05 21:42:11 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(56);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(48);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 4:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-05 21:42:11 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-05 21:42:11 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(54);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(57);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(13);
if (lookahead == '>') ADVANCE(68);
if (lookahead == 'e') ADVANCE(37);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 5:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
2023-12-05 21:42:11 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(62);
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(8);
2023-12-05 21:42:11 +00:00
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(54);
if (lookahead == '-') ADVANCE(57);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (lookahead == ':') ADVANCE(50);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(13);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-02 03:54:25 +00:00
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 14:30:25 +00:00
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
2023-12-02 03:54:25 +00:00
END_STATE();
case 6:
2023-12-05 21:42:11 +00:00
if (lookahead == '"') ADVANCE(45);
2023-12-02 03:54:25 +00:00
if (lookahead != 0) ADVANCE(6);
END_STATE();
case 7:
2023-12-05 21:42:11 +00:00
if (lookahead == '#') ADVANCE(21);
if (lookahead == '(') ADVANCE(52);
if (lookahead == ')') ADVANCE(53);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(14);
if (lookahead == '>') ADVANCE(67);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
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-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 8:
2023-12-05 21:42:11 +00:00
if (lookahead == '&') ADVANCE(65);
END_STATE();
case 9:
2023-12-05 21:42:11 +00:00
if (lookahead == '\'') ADVANCE(45);
2023-12-02 03:54:25 +00:00
if (lookahead != 0) ADVANCE(9);
END_STATE();
case 10:
2023-12-05 21:42:11 +00:00
if (lookahead == '.') ADVANCE(51);
END_STATE();
case 11:
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(64);
END_STATE();
case 12:
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(63);
END_STATE();
case 13:
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(63);
if (lookahead == '>') ADVANCE(75);
END_STATE();
case 14:
2023-12-05 21:42:11 +00:00
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 15:
2023-12-05 21:42:11 +00:00
if (lookahead == '`') ADVANCE(45);
if (lookahead != 0) ADVANCE(15);
END_STATE();
case 16:
2023-12-05 21:42:11 +00:00
if (lookahead == 'f') ADVANCE(19);
END_STATE();
case 17:
2023-12-05 21:42:11 +00:00
if (lookahead == 'f') ADVANCE(74);
END_STATE();
case 18:
2023-12-05 21:42:11 +00:00
if (lookahead == 'i') ADVANCE(17);
END_STATE();
case 19:
2023-12-05 21:42:11 +00:00
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 20:
2023-12-05 21:42:11 +00:00
if (lookahead == 'r') ADVANCE(76);
END_STATE();
case 21:
2023-12-05 21:42:11 +00:00
if (lookahead == '|') ADVANCE(27);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 22:
2023-12-05 21:42:11 +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-05 21:42:11 +00:00
if (eof) ADVANCE(25);
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
2023-12-05 21:42:11 +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-05 21:42:11 +00:00
if (lookahead == '(') ADVANCE(52);
if (lookahead == '*') ADVANCE(60);
if (lookahead == '+') ADVANCE(55);
if (lookahead == '-') ADVANCE(58);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
2023-12-05 21:42:11 +00:00
if (lookahead == '/') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(50);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(69);
if (lookahead == '=') ADVANCE(48);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(39);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-05 21:42:11 +00:00
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-05 21:42:11 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-12-05 21:42:11 +00:00
case 25:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-12-05 21:42:11 +00:00
case 26:
ACCEPT_TOKEN(sym__comment);
END_STATE();
2023-12-05 21:42:11 +00:00
case 27:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym__comment);
2023-12-05 21:42:11 +00:00
if (lookahead == '|') ADVANCE(27);
2023-12-02 03:54:25 +00:00
if (lookahead == '\n' ||
2023-12-05 21:42:11 +00:00
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(21);
END_STATE();
2023-12-05 21:42:11 +00:00
case 28:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-12-05 21:42:11 +00:00
case 29:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-12-05 21:42:11 +00:00
case 30:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
2023-12-05 21:42:11 +00:00
case 31:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-12-05 21:42:11 +00:00
case 32:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-11-30 14:30:25 +00:00
case 33:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == ' ') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 34:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
2023-11-30 16:05:09 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 35:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'c') ADVANCE(34);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'e') ADVANCE(33);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 37:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'l') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 38:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'n') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 39:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 's') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 40:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 's') ADVANCE(36);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 41:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (lookahead == 'y') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 42:
ACCEPT_TOKEN(sym_identifier);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-05 21:42:11 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 43:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
2023-11-30 16:05:09 +00:00
case 44:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(sym_float);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
END_STATE();
2023-11-30 16:05:09 +00:00
case 45:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-11-30 16:05:09 +00:00
case 46:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 47:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 48:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(63);
END_STATE();
2023-11-30 16:05:09 +00:00
case 49:
ACCEPT_TOKEN(anon_sym_EQ);
2023-12-05 21:42:11 +00:00
if (lookahead == '=') ADVANCE(63);
if (lookahead == '>') ADVANCE(75);
END_STATE();
2023-11-30 16:05:09 +00:00
case 50:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
2023-11-30 16:05:09 +00:00
case 51:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
2023-11-30 16:05:09 +00:00
case 52:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
2023-11-30 16:05:09 +00:00
case 53:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
2023-11-30 16:05:09 +00:00
END_STATE();
case 54:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
2023-11-30 16:05:09 +00:00
END_STATE();
2023-11-30 14:30:25 +00:00
case 55:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(72);
END_STATE();
2023-11-30 14:30:25 +00:00
case 56:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(73);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 57:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == '=') ADVANCE(73);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 59:
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-05 21:42:11 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 14:30:25 +00:00
case 60:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-30 14:30:25 +00:00
case 61:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-30 14:30:25 +00:00
case 62:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 63:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 64:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 65:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-30 14:30:25 +00:00
case 66:
2023-12-05 21:42:11 +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-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(70);
END_STATE();
2023-11-30 14:30:25 +00:00
case 69:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(71);
END_STATE();
2023-11-30 14:30:25 +00:00
case 70:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 71:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 72:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 73:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 74:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-11-30 14:30:25 +00:00
case 75:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 76:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
2023-11-30 14:30:25 +00:00
case 77:
2023-12-05 21:42:11 +00:00
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
2023-11-30 14:30:25 +00:00
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-05 21:42:11 +00:00
[1] = {.lex_state = 24},
[2] = {.lex_state = 24},
[3] = {.lex_state = 24},
[4] = {.lex_state = 24},
[5] = {.lex_state = 24},
[6] = {.lex_state = 24},
[7] = {.lex_state = 24},
[8] = {.lex_state = 24},
[9] = {.lex_state = 24},
[10] = {.lex_state = 24},
[11] = {.lex_state = 24},
[12] = {.lex_state = 24},
[13] = {.lex_state = 24},
[14] = {.lex_state = 24},
[15] = {.lex_state = 24},
[16] = {.lex_state = 24},
[17] = {.lex_state = 24},
[18] = {.lex_state = 24},
[19] = {.lex_state = 24},
[20] = {.lex_state = 24},
[21] = {.lex_state = 24},
[22] = {.lex_state = 24},
[23] = {.lex_state = 24},
[24] = {.lex_state = 24},
[25] = {.lex_state = 24},
[26] = {.lex_state = 24},
[27] = {.lex_state = 24},
[28] = {.lex_state = 24},
[29] = {.lex_state = 24},
[30] = {.lex_state = 24},
[31] = {.lex_state = 24},
[32] = {.lex_state = 24},
[33] = {.lex_state = 24},
[34] = {.lex_state = 24},
[35] = {.lex_state = 24},
[36] = {.lex_state = 24},
[37] = {.lex_state = 24},
[38] = {.lex_state = 24},
[39] = {.lex_state = 24},
[40] = {.lex_state = 24},
[41] = {.lex_state = 24},
[42] = {.lex_state = 24},
[43] = {.lex_state = 24},
[44] = {.lex_state = 24},
[45] = {.lex_state = 24},
[46] = {.lex_state = 24},
[47] = {.lex_state = 24},
[48] = {.lex_state = 1},
[49] = {.lex_state = 1},
[50] = {.lex_state = 24},
[51] = {.lex_state = 24},
[52] = {.lex_state = 1},
[53] = {.lex_state = 24},
[54] = {.lex_state = 1},
[55] = {.lex_state = 24},
[56] = {.lex_state = 24},
[57] = {.lex_state = 1},
[58] = {.lex_state = 24},
[59] = {.lex_state = 24},
[60] = {.lex_state = 24},
[61] = {.lex_state = 24},
[62] = {.lex_state = 24},
[63] = {.lex_state = 24},
[64] = {.lex_state = 24},
[65] = {.lex_state = 1},
[66] = {.lex_state = 24},
[67] = {.lex_state = 1},
[68] = {.lex_state = 1},
[69] = {.lex_state = 24},
[70] = {.lex_state = 24},
[71] = {.lex_state = 24},
[72] = {.lex_state = 24},
[73] = {.lex_state = 24},
2023-12-02 03:54:25 +00:00
[74] = {.lex_state = 1},
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},
2023-11-30 14:30:25 +00:00
[104] = {.lex_state = 2},
[105] = {.lex_state = 2},
[106] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[107] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[108] = {.lex_state = 2},
[109] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[110] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[111] = {.lex_state = 2},
[112] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[113] = {.lex_state = 0},
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},
2023-12-05 21:42:11 +00:00
[120] = {.lex_state = 4},
[121] = {.lex_state = 3},
[122] = {.lex_state = 4},
[123] = {.lex_state = 0},
[124] = {.lex_state = 1},
[125] = {.lex_state = 3},
2023-12-02 07:34:23 +00:00
[126] = {.lex_state = 3},
2023-12-05 21:42:11 +00:00
[127] = {.lex_state = 3},
[128] = {.lex_state = 3},
[129] = {.lex_state = 1},
[130] = {.lex_state = 3},
[131] = {.lex_state = 3},
[132] = {.lex_state = 3},
[133] = {.lex_state = 3},
[134] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[135] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[136] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[137] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[138] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[141] = {.lex_state = 3},
[142] = {.lex_state = 3},
[143] = {.lex_state = 3},
2023-12-02 03:54:25 +00:00
[144] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[145] = {.lex_state = 1},
[146] = {.lex_state = 0},
[147] = {.lex_state = 1},
[148] = {.lex_state = 1},
[149] = {.lex_state = 1},
[150] = {.lex_state = 1},
[151] = {.lex_state = 0},
[152] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[153] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[154] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[155] = {.lex_state = 1},
[156] = {.lex_state = 1},
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 1},
[162] = {.lex_state = 1},
[163] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[164] = {.lex_state = 24},
2023-12-02 07:34:23 +00:00
[165] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[166] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[167] = {.lex_state = 1},
[168] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[169] = {.lex_state = 5},
2023-11-30 16:05:09 +00:00
[170] = {.lex_state = 1},
[171] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[172] = {.lex_state = 1},
[173] = {.lex_state = 1},
[174] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[175] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[176] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[177] = {.lex_state = 1},
[178] = {.lex_state = 1},
[179] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[180] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[181] = {.lex_state = 1},
[182] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[183] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[184] = {.lex_state = 24},
[185] = {.lex_state = 24},
2023-11-30 14:48:56 +00:00
[186] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[187] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[188] = {.lex_state = 24},
[189] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[190] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[191] = {.lex_state = 2},
[192] = {.lex_state = 24},
[193] = {.lex_state = 24},
[194] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[195] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[196] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[197] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[198] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[199] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[200] = {.lex_state = 1},
[201] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[202] = {.lex_state = 5},
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},
2023-12-02 07:34:23 +00:00
[206] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[207] = {.lex_state = 1},
[208] = {.lex_state = 1},
[209] = {.lex_state = 24},
[210] = {.lex_state = 1},
[211] = {.lex_state = 1},
[212] = {.lex_state = 1},
[213] = {.lex_state = 1},
[214] = {.lex_state = 5},
2023-12-02 07:34:23 +00:00
[215] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[216] = {.lex_state = 1},
[217] = {.lex_state = 1},
[218] = {.lex_state = 24},
[219] = {.lex_state = 1},
[220] = {.lex_state = 5},
[221] = {.lex_state = 24},
2023-12-02 07:34:23 +00:00
[222] = {.lex_state = 5},
2023-12-05 21:42:11 +00:00
[223] = {.lex_state = 24},
[224] = {.lex_state = 1},
[225] = {.lex_state = 1},
[226] = {.lex_state = 5},
[227] = {.lex_state = 5},
[228] = {.lex_state = 5},
2023-12-02 03:54:25 +00:00
[229] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[230] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[231] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[232] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[233] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[234] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[235] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[236] = {.lex_state = 2},
2023-12-05 21:42:11 +00:00
[237] = {.lex_state = 4},
[238] = {.lex_state = 24},
[239] = {.lex_state = 4},
[240] = {.lex_state = 7},
2023-12-02 07:34:23 +00:00
[241] = {.lex_state = 7},
[242] = {.lex_state = 7},
[243] = {.lex_state = 7},
[244] = {.lex_state = 7},
2023-12-05 21:42:11 +00:00
[245] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[246] = {.lex_state = 7},
[247] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[248] = {.lex_state = 1},
[249] = {.lex_state = 1},
[250] = {.lex_state = 1},
[251] = {.lex_state = 1},
[252] = {.lex_state = 1},
[253] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[254] = {.lex_state = 1},
[255] = {.lex_state = 1},
[256] = {.lex_state = 1},
[257] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[258] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[259] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[260] = {.lex_state = 4},
[261] = {.lex_state = 4},
[262] = {.lex_state = 4},
[263] = {.lex_state = 4},
2023-12-02 07:34:23 +00:00
[264] = {.lex_state = 4},
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},
2023-12-05 21:42:11 +00:00
[270] = {.lex_state = 24},
[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-02 07:34:23 +00:00
[274] = {.lex_state = 1},
[275] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[276] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[277] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[278] = {.lex_state = 24},
2023-11-30 14:48:56 +00:00
[279] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[280] = {.lex_state = 7},
[281] = {.lex_state = 24},
[282] = {.lex_state = 7},
2023-11-30 16:05:09 +00:00
[283] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[284] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[285] = {.lex_state = 7},
[286] = {.lex_state = 1},
[287] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[288] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[289] = {.lex_state = 7},
[290] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[291] = {.lex_state = 7},
2023-11-30 14:48:56 +00:00
[292] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[293] = {.lex_state = 7},
[294] = {.lex_state = 7},
[295] = {.lex_state = 1},
[296] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[297] = {.lex_state = 1},
[298] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[299] = {.lex_state = 7},
2023-12-02 07:34:23 +00:00
[300] = {.lex_state = 7},
2023-12-05 21:42:11 +00:00
[301] = {.lex_state = 7},
2023-12-02 07:34:23 +00:00
[302] = {.lex_state = 1},
[303] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[304] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[305] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[306] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[307] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[308] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[309] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[310] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[311] = {.lex_state = 7},
[312] = {.lex_state = 1},
2023-12-05 21:42:11 +00:00
[313] = {.lex_state = 0},
[314] = {.lex_state = 0},
[315] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[316] = {.lex_state = 0},
[317] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[318] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[319] = {.lex_state = 0},
[320] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[321] = {.lex_state = 7},
[322] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[323] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[324] = {.lex_state = 1},
[325] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[326] = {.lex_state = 0},
[327] = {.lex_state = 0},
2023-12-05 21:42:11 +00:00
[328] = {.lex_state = 0},
[329] = {.lex_state = 0},
[330] = {.lex_state = 0},
[331] = {.lex_state = 24},
[332] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[333] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[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-05 21:42:11 +00:00
[sym_root] = STATE(332),
[sym_block] = STATE(164),
[sym_statement] = STATE(11),
[sym_expression] = STATE(70),
[sym_value] = STATE(40),
[sym_boolean] = STATE(53),
[sym_list] = STATE(53),
[sym_map] = STATE(53),
[sym_index] = STATE(41),
[sym_math] = STATE(40),
[sym_logic] = STATE(40),
[sym_assignment] = STATE(164),
[sym_index_assignment] = STATE(164),
[sym_if_else] = STATE(164),
[sym_if] = STATE(107),
[sym_match] = STATE(164),
[sym_while] = STATE(164),
[sym_for] = STATE(164),
[sym_return] = STATE(164),
[sym_use] = STATE(164),
[sym_function] = STATE(53),
[sym_function_call] = STATE(40),
[sym_yield] = STATE(40),
[aux_sym_root_repeat1] = STATE(11),
[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,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-12-05 21:42:11 +00:00
STATE(296), 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,
2023-12-05 21:42:11 +00:00
STATE(5), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[97] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(43), 1,
sym_identifier,
ACTIONS(46), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(52), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(61), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(64), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(67), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(70), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(73), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(76), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(79), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(82), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(85), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(88), 1,
anon_sym_fn,
STATE(41), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(41), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(55), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(58), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[192] = 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(91), 1,
anon_sym_RBRACE,
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 1,
sym_if,
2023-12-05 21:42:11 +00:00
STATE(298), 1,
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,
2023-12-05 21:42:11 +00:00
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[289] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-11-28 22:54:17 +00:00
ACTIONS(7), 1,
anon_sym_async,
2023-11-28 22:54:17 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-28 22:54:17 +00:00
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,
2023-11-28 22:54:17 +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,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
2023-12-02 03:54:25 +00:00
ACTIONS(93), 1,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[383] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(179), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(97), 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(95), 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,
[437] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(103), 1,
anon_sym_DOT_DOT,
STATE(179), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(101), 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(99), 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,
[493] = 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(105), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[587] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(179), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(101), 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(99), 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,
[641] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
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,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[735] = 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(109), 1,
ts_builtin_sym_end,
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[829] = 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(111), 1,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[923] = 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(113), 1,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1017] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(119), 1,
anon_sym_COLON,
STATE(179), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(117), 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(115), 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,
[1073] = 25,
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(121), 1,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1167] = 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(123), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1261] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(119), 1,
anon_sym_COLON,
ACTIONS(137), 1,
anon_sym_DASH_GT,
STATE(179), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(129), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(133), 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(125), 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(127), 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,
[1327] = 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(139), 1,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1421] = 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(141), 1,
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1515] = 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(143), 1,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
STATE(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1609] = 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(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1700] = 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(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-02 07:34:23 +00:00
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1791] = 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(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[1882] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(203), 1,
sym_logic_operator,
STATE(211), 1,
sym_math_operator,
ACTIONS(97), 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(95), 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,
[1935] = 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(41), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(19), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[2026] = 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(41), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(18), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[2117] = 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(41), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(16), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[2208] = 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(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[2299] = 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(41), 1,
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-02 07:34:23 +00:00
STATE(8), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +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,
2023-12-05 21:42:11 +00:00
[2390] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(145), 1,
anon_sym_COLON,
STATE(203), 1,
sym_logic_operator,
STATE(211), 1,
sym_math_operator,
ACTIONS(117), 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(115), 21,
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,
[2445] = 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(41), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 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,
2023-12-05 21:42:11 +00:00
STATE(5), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[2536] = 24,
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-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-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,
STATE(41), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(70), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 1,
2023-12-02 03:54:25 +00:00
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(20), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(164), 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,
2023-12-05 21:42:11 +00:00
[2627] = 11,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(137), 1,
anon_sym_DASH_GT,
ACTIONS(145), 1,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(203), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(211), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(133), 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(125), 11,
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(127), 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,
[2692] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(151), 1,
anon_sym_EQ,
ACTIONS(153), 1,
anon_sym_LT,
STATE(46), 1,
sym_assignment_operator,
STATE(270), 1,
sym_type_definition,
ACTIONS(155), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(149), 15,
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(147), 20,
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,
[2751] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 17,
2023-12-02 07:34:23 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
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,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(157), 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,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[2799] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(163), 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(161), 23,
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,
[2847] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(167), 17,
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_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(165), 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,
[2895] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(171), 17,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-11-30 14:30: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(169), 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-11-30 16:05:09 +00:00
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-11-30 16:05:09 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[2943] = 24,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(189), 1,
2023-11-30 14:30:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(191), 1,
2023-11-30 14:30:25 +00:00
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(193), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(195), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(197), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(199), 1,
2023-11-30 14:30:25 +00:00
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(201), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
STATE(143), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(191), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(261), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-05 21:42:11 +00:00
STATE(288), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(271), 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,
2023-12-05 21:42:11 +00:00
[3033] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(149), 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(147), 23,
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,
[3081] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(151), 1,
anon_sym_EQ,
STATE(58), 1,
sym_assignment_operator,
ACTIONS(155), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(149), 16,
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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
ACTIONS(147), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
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_asyncfor,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[3135] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(207), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
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-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(205), 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-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,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3183] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(211), 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(209), 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,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
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,
[3231] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(153), 1,
anon_sym_LT,
ACTIONS(213), 1,
anon_sym_EQ,
STATE(46), 1,
sym_assignment_operator,
STATE(270), 1,
sym_type_definition,
ACTIONS(155), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(149), 15,
2023-12-02 07:34:23 +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_PLUS,
anon_sym_DASH,
anon_sym_GT,
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(147), 19,
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,
[3289] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(217), 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(215), 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,
2023-12-05 21:42:11 +00:00
[3337] = 24,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(7), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(9), 1,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(27), 1,
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,
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(41), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(69), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-05 21:42:11 +00:00
STATE(223), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(188), 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,
2023-12-05 21:42:11 +00:00
[3427] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(221), 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(219), 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,
2023-12-05 21:42:11 +00:00
[3475] = 22,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(237), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(239), 1,
anon_sym_RPAREN,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(243), 1,
anon_sym_fn,
STATE(93), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(138), 1,
aux_sym__expression_list,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
STATE(85), 6,
sym_value,
2023-12-05 21:42:11 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[3561] = 22,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(237), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(245), 1,
anon_sym_RPAREN,
STATE(93), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(145), 1,
aux_sym__expression_list,
STATE(213), 1,
sym_logic_operator,
STATE(216), 1,
sym_math_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(97), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
STATE(85), 6,
2023-12-02 03:54:25 +00:00
sym_value,
2023-12-05 21:42:11 +00:00
sym_index,
2023-12-02 03:54:25 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[3647] = 24,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(173), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(175), 1,
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(177), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(189), 1,
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(191), 1,
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(193), 1,
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(195), 1,
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(197), 1,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(199), 1,
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(201), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
STATE(143), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(215), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(261), 1,
sym_if,
2023-12-05 21:42:11 +00:00
STATE(275), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(273), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-05 21:42:11 +00:00
[3737] = 24,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(175), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(177), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(189), 1,
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(191), 1,
anon_sym_match,
2023-12-05 21:42:11 +00:00
ACTIONS(193), 1,
anon_sym_while,
2023-12-05 21:42:11 +00:00
ACTIONS(195), 1,
anon_sym_for,
2023-12-05 21:42:11 +00:00
ACTIONS(197), 1,
2023-12-02 07:34:23 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(199), 1,
anon_sym_return,
2023-12-05 21:42:11 +00:00
ACTIONS(201), 1,
anon_sym_use,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
STATE(143), 1,
2023-12-02 07:34:23 +00:00
sym_index,
2023-12-05 21:42:11 +00:00
STATE(215), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(261), 1,
2023-12-02 07:34:23 +00:00
sym_if,
2023-12-05 21:42:11 +00:00
STATE(268), 1,
2023-12-02 07:34:23 +00:00
sym_statement,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(273), 9,
2023-12-02 07:34:23 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-05 21:42:11 +00:00
[3827] = 22,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(241), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(247), 1,
anon_sym_RPAREN,
STATE(93), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(150), 1,
2023-12-02 07:34:23 +00:00
aux_sym__expression_list,
2023-12-05 21:42:11 +00:00
STATE(158), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(159), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(229), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 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,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[3913] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(251), 17,
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(249), 23,
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,
[3961] = 22,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(235), 1,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(253), 1,
anon_sym_RPAREN,
STATE(93), 1,
sym_expression,
STATE(149), 1,
aux_sym__expression_list,
STATE(166), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(216), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(131), 4,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(133), 6,
2023-11-30 14:30: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-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4047] = 24,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(173), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(175), 1,
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(189), 1,
anon_sym_if,
ACTIONS(191), 1,
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(193), 1,
2023-12-05 21:42:11 +00:00
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
2023-12-05 21:42:11 +00:00
anon_sym_for,
ACTIONS(197), 1,
anon_sym_asyncfor,
ACTIONS(199), 1,
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(201), 1,
2023-12-05 21:42:11 +00:00
anon_sym_use,
ACTIONS(203), 1,
anon_sym_fn,
STATE(143), 1,
sym_index,
STATE(215), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(261), 1,
sym_if,
STATE(274), 1,
sym_statement,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(273), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4137] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(257), 17,
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(255), 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,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
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,
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,
2023-12-05 21:42:11 +00:00
[4185] = 22,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(241), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(259), 1,
2023-12-02 07:34:23 +00:00
anon_sym_RPAREN,
2023-12-05 21:42:11 +00:00
STATE(93), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(134), 1,
2023-12-02 07:34:23 +00:00
aux_sym__expression_list,
2023-12-05 21:42:11 +00:00
STATE(158), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(159), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(229), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[4271] = 24,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(5), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
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,
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,
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(41), 1,
sym_index,
STATE(69), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(107), 1,
sym_if,
STATE(199), 1,
sym_statement,
ACTIONS(13), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(15), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(188), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4361] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(263), 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(261), 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,
2023-12-05 21:42:11 +00:00
[4409] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(267), 17,
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(265), 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,
2023-12-05 21:42:11 +00:00
[4457] = 24,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(173), 1,
sym_identifier,
ACTIONS(175), 1,
anon_sym_async,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
ACTIONS(187), 1,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
ACTIONS(189), 1,
anon_sym_if,
ACTIONS(191), 1,
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(193), 1,
2023-12-05 21:42:11 +00:00
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
2023-12-05 21:42:11 +00:00
anon_sym_for,
ACTIONS(197), 1,
anon_sym_asyncfor,
ACTIONS(199), 1,
anon_sym_return,
ACTIONS(201), 1,
anon_sym_use,
ACTIONS(203), 1,
anon_sym_fn,
STATE(143), 1,
sym_index,
STATE(191), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(261), 1,
sym_if,
STATE(288), 1,
sym_statement,
ACTIONS(181), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 5,
2023-12-02 07:34:23 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
STATE(271), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4547] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(271), 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(269), 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,
2023-12-05 21:42:11 +00:00
[4595] = 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,
2023-12-05 21:42:11 +00:00
[4643] = 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,
2023-12-05 21:42:11 +00:00
[4691] = 22,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(281), 1,
anon_sym_RPAREN,
STATE(93), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(137), 1,
aux_sym__expression_list,
STATE(176), 1,
sym_logic_operator,
STATE(216), 1,
sym_math_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(229), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[4777] = 24,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(5), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +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-05 21:42:11 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-11-30 14:30:25 +00:00
anon_sym_if,
2023-12-05 21:42:11 +00:00
ACTIONS(23), 1,
2023-11-30 14:30: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,
anon_sym_asyncfor,
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(41), 1,
sym_index,
STATE(69), 1,
sym_expression,
STATE(107), 1,
sym_if,
STATE(184), 1,
sym_statement,
ACTIONS(13), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(40), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(188), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4867] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(124), 1,
aux_sym_match_repeat1,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
STATE(237), 1,
sym_expression,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(133), 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-05 21:42:11 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4950] = 21,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_LPAREN,
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(73), 1,
aux_sym_match_repeat1,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
STATE(239), 1,
sym_expression,
ACTIONS(135), 2,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(131), 4,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(133), 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,
2023-12-05 21:42:11 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5033] = 11,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(137), 1,
anon_sym_DASH_GT,
ACTIONS(145), 1,
anon_sym_COLON,
STATE(203), 1,
sym_logic_operator,
STATE(211), 1,
sym_math_operator,
ACTIONS(135), 2,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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,
2023-12-05 21:42:11 +00:00
ACTIONS(289), 9,
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,
2023-12-05 21:42:11 +00:00
ACTIONS(291), 12,
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,
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,
[5095] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(137), 1,
anon_sym_DASH_GT,
ACTIONS(145), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(293), 1,
anon_sym_SEMI,
STATE(203), 1,
sym_logic_operator,
STATE(211), 1,
sym_math_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
ACTIONS(289), 8,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(291), 12,
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,
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,
[5159] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(137), 1,
anon_sym_DASH_GT,
ACTIONS(145), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(203), 1,
sym_logic_operator,
STATE(211), 1,
sym_math_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 4,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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,
2023-12-05 21:42:11 +00:00
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,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
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,
[5221] = 15,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(301), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(306), 1,
anon_sym_LBRACE,
ACTIONS(309), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(318), 1,
anon_sym_LBRACK,
ACTIONS(321), 1,
anon_sym_LPAREN,
ACTIONS(324), 1,
anon_sym_fn,
STATE(72), 1,
aux_sym_match_repeat1,
STATE(239), 1,
sym_expression,
ACTIONS(312), 2,
sym_float,
sym_string,
ACTIONS(315), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(299), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(304), 7,
anon_sym_async,
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
[5286] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(72), 1,
aux_sym_match_repeat1,
STATE(239), 1,
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(327), 4,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(329), 7,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[5351] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(217), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(215), 23,
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_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 00:23:42 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[5390] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(172), 1,
sym_logic_operator,
STATE(173), 1,
sym_math_operator,
ACTIONS(101), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(99), 21,
anon_sym_LBRACE,
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_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_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,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[5433] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(331), 1,
anon_sym_COLON,
STATE(172), 1,
sym_logic_operator,
STATE(173), 1,
sym_math_operator,
ACTIONS(117), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(115), 20,
anon_sym_LBRACE,
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_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_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,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[5478] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(331), 1,
anon_sym_COLON,
STATE(172), 1,
sym_logic_operator,
STATE(173), 1,
sym_math_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(127), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(133), 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(125), 9,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
[5533] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(172), 1,
sym_logic_operator,
STATE(173), 1,
sym_math_operator,
ACTIONS(97), 8,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
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(95), 21,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
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_DOT_DOT,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_RPAREN,
anon_sym_PLUS,
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_DASH_GT,
2023-12-05 21:42:11 +00:00
[5576] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(271), 8,
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_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(269), 23,
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,
anon_sym_COLON,
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,
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,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[5615] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(333), 1,
anon_sym_DOT_DOT,
STATE(172), 1,
sym_logic_operator,
STATE(173), 1,
sym_math_operator,
ACTIONS(101), 8,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(99), 20,
anon_sym_LBRACE,
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-11-30 16:05:09 +00:00
anon_sym_COLON,
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,
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-05 21:42:11 +00:00
[5660] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(97), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
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(95), 20,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
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,
anon_sym_PLUS,
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_DASH_GT,
2023-12-05 21:42:11 +00:00
[5702] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(241), 1,
anon_sym_DASH_GT,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(127), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(133), 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(125), 8,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
[5756] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(235), 1,
anon_sym_COLON,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(117), 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,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(115), 19,
anon_sym_LBRACE,
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_LPAREN,
2023-12-05 21:42:11 +00:00
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,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[5800] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(257), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
anon_sym_fn,
ACTIONS(255), 21,
anon_sym_LBRACE,
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_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-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[5837] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(149), 8,
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_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(147), 21,
anon_sym_LBRACE,
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_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,
anon_sym_DASH_GT,
[5874] = 12,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(339), 1,
anon_sym_COMMA,
STATE(158), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(159), 1,
sym_logic_operator,
ACTIONS(135), 2,
2023-12-02 07:34:23 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(335), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(133), 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-05 21:42:11 +00:00
ACTIONS(337), 6,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
[5929] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(221), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
anon_sym_LT,
anon_sym_fn,
ACTIONS(219), 21,
anon_sym_LBRACE,
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-30 14:30:25 +00:00
anon_sym_PLUS,
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_DASH_GT,
[5966] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(267), 8,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 01:59:58 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(265), 21,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
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_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 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6003] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(275), 8,
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_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(273), 21,
anon_sym_LBRACE,
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_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-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6040] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(159), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 14:30:25 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(157), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
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-30 14:30:25 +00:00
anon_sym_PLUS,
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-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6077] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(171), 8,
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,
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-02 07:34:23 +00:00
ACTIONS(169), 21,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
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-30 14:30:25 +00:00
anon_sym_PLUS,
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-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6114] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(207), 8,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(205), 21,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
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_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 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6151] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(345), 1,
anon_sym_COMMA,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(135), 2,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(341), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(133), 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-05 21:42:11 +00:00
ACTIONS(343), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
[6206] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(263), 8,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(261), 21,
anon_sym_LBRACE,
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_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,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6243] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(163), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(161), 21,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
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_PLUS,
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,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6280] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(279), 8,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(277), 21,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
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_PLUS,
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_DASH_GT,
2023-12-05 21:42:11 +00:00
[6317] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(251), 8,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_fn,
ACTIONS(249), 21,
anon_sym_LBRACE,
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_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-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6354] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(167), 8,
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(165), 21,
anon_sym_LBRACE,
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_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,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6391] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(211), 8,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
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(209), 21,
anon_sym_LBRACE,
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,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
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-05 21:42:11 +00:00
anon_sym_DASH_GT,
[6428] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(117), 8,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(115), 17,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6470] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(241), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(347), 1,
anon_sym_RPAREN,
STATE(158), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(159), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(125), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(127), 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(133), 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-05 21:42:11 +00:00
[6524] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(349), 1,
anon_sym_RPAREN,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(125), 5,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(127), 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(133), 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,
[6578] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(129), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(235), 1,
anon_sym_COLON,
ACTIONS(241), 1,
anon_sym_DASH_GT,
ACTIONS(351), 1,
anon_sym_RPAREN,
STATE(158), 1,
sym_math_operator,
STATE(159), 1,
sym_logic_operator,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(125), 5,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(127), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_fn,
ACTIONS(133), 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-05 21:42:11 +00:00
[6632] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(167), 7,
anon_sym_async,
2023-11-30 01:59:58 +00:00
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-05 21:42:11 +00:00
ACTIONS(165), 19,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:30:25 +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-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-05 21:42:11 +00:00
[6666] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(263), 7,
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-05 21:42:11 +00:00
ACTIONS(261), 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-05 21:42:11 +00:00
[6700] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(275), 7,
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,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(273), 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,
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 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6734] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(357), 1,
anon_sym_elseif,
ACTIONS(359), 1,
anon_sym_else,
STATE(185), 1,
sym_else,
STATE(113), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(353), 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(355), 12,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[6776] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(149), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(147), 19,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[6810] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(221), 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-05 21:42:11 +00:00
ACTIONS(219), 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,
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-05 21:42:11 +00:00
[6844] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(211), 7,
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-05 21:42:11 +00:00
ACTIONS(209), 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,
[6878] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(251), 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-05 21:42:11 +00:00
ACTIONS(249), 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,
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-05 21:42:11 +00:00
[6912] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(267), 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-05 21:42:11 +00:00
ACTIONS(265), 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,
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-05 21:42:11 +00:00
[6946] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(357), 1,
anon_sym_elseif,
ACTIONS(359), 1,
anon_sym_else,
STATE(193), 1,
sym_else,
STATE(123), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(361), 9,
ts_builtin_sym_end,
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,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(363), 12,
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,
[6988] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(279), 7,
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-05 21:42:11 +00:00
ACTIONS(277), 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-05 21:42:11 +00:00
[7022] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(163), 7,
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-05 21:42:11 +00:00
ACTIONS(161), 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-05 21:42:11 +00:00
[7056] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(257), 7,
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-05 21:42:11 +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,
[7090] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(159), 7,
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-05 21:42:11 +00:00
ACTIONS(157), 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-05 21:42:11 +00:00
[7124] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(171), 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-05 21:42:11 +00:00
ACTIONS(169), 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-05 21:42:11 +00:00
[7158] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(207), 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-05 21:42:11 +00:00
ACTIONS(205), 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-05 21:42:11 +00:00
[7192] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(217), 6,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
anon_sym_else,
ACTIONS(215), 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,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS,
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_elseif,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[7225] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
ACTIONS(365), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
STATE(217), 1,
sym_math_operator,
STATE(219), 1,
sym_logic_operator,
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 3,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
ACTIONS(125), 7,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_EQ,
[7274] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(271), 6,
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_else,
ACTIONS(269), 19,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
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,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7307] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(373), 1,
anon_sym_elseif,
STATE(123), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(369), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(371), 13,
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_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[7344] = 14,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(129), 1,
aux_sym_match_repeat1,
STATE(237), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
ACTIONS(327), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(111), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[7399] = 6,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(365), 1,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(217), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(219), 1,
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(117), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(115), 17,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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_DASH_GT,
2023-12-05 21:42:11 +00:00
[7438] = 5,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(217), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(219), 1,
sym_logic_operator,
ACTIONS(101), 5,
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-05 21:42:11 +00:00
ACTIONS(99), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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_DASH_GT,
[7475] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(217), 1,
sym_math_operator,
STATE(219), 1,
sym_logic_operator,
ACTIONS(97), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(95), 18,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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,
2023-12-05 21:42:11 +00:00
anon_sym_DASH_GT,
[7512] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(376), 1,
anon_sym_DOT_DOT,
STATE(217), 1,
sym_math_operator,
STATE(219), 1,
sym_logic_operator,
ACTIONS(101), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(99), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
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_DASH_GT,
[7551] = 14,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(301), 1,
sym_identifier,
ACTIONS(306), 1,
anon_sym_LBRACE,
ACTIONS(309), 1,
sym_integer,
ACTIONS(318), 1,
anon_sym_LBRACK,
ACTIONS(321), 1,
anon_sym_LPAREN,
ACTIONS(324), 1,
anon_sym_fn,
STATE(129), 1,
aux_sym_match_repeat1,
STATE(237), 1,
sym_expression,
ACTIONS(312), 2,
sym_float,
sym_string,
ACTIONS(315), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(299), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7606] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(127), 1,
anon_sym_EQ,
ACTIONS(367), 1,
anon_sym_DASH_GT,
ACTIONS(378), 1,
anon_sym_COLON,
STATE(161), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(162), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 2,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 07:34:23 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(125), 6,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(133), 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-05 21:42:11 +00:00
[7654] = 5,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(161), 1,
sym_logic_operator,
STATE(162), 1,
sym_math_operator,
ACTIONS(97), 5,
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-05 21:42:11 +00:00
ACTIONS(95), 17,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
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,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[7690] = 8,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(151), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
ACTIONS(153), 1,
anon_sym_LT,
STATE(55), 1,
sym_assignment_operator,
STATE(278), 1,
sym_type_definition,
ACTIONS(155), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(149), 3,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(147), 15,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +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-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[7732] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(378), 1,
anon_sym_COLON,
STATE(161), 1,
sym_logic_operator,
STATE(162), 1,
sym_math_operator,
ACTIONS(117), 5,
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-05 21:42:11 +00:00
ACTIONS(115), 16,
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_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-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[7770] = 14,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(380), 1,
anon_sym_RPAREN,
STATE(93), 1,
sym_expression,
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7823] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(382), 1,
sym_identifier,
ACTIONS(385), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(388), 1,
sym_integer,
ACTIONS(397), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(400), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(403), 1,
anon_sym_RPAREN,
ACTIONS(405), 1,
anon_sym_fn,
STATE(93), 1,
sym_expression,
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(391), 2,
sym_float,
sym_string,
ACTIONS(394), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7876] = 14,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(408), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(152), 1,
aux_sym_list_repeat1,
ACTIONS(229), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7929] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(410), 1,
anon_sym_RPAREN,
STATE(93), 1,
sym_expression,
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7982] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
anon_sym_LBRACE,
ACTIONS(227), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(412), 1,
anon_sym_RPAREN,
STATE(93), 1,
sym_expression,
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8035] = 14,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
ACTIONS(227), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(414), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(144), 1,
aux_sym_list_repeat1,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8088] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(416), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(139), 1,
aux_sym_list_repeat1,
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8141] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(217), 5,
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-05 21:42:11 +00:00
ACTIONS(215), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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_DASH_GT,
[8172] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(271), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(269), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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_DASH_GT,
[8203] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(151), 1,
anon_sym_EQ,
STATE(51), 1,
sym_assignment_operator,
ACTIONS(155), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(149), 4,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(147), 15,
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,
[8240] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(418), 1,
sym_identifier,
ACTIONS(421), 1,
anon_sym_LBRACE,
ACTIONS(424), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(433), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(436), 1,
anon_sym_RBRACK,
ACTIONS(438), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(441), 1,
anon_sym_fn,
STATE(86), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(144), 1,
aux_sym_list_repeat1,
ACTIONS(427), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(430), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8293] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(444), 1,
anon_sym_RPAREN,
STATE(93), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(229), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8346] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(446), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(448), 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,
[8377] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(450), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(148), 1,
aux_sym_list_repeat1,
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8430] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(452), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(144), 1,
aux_sym_list_repeat1,
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8483] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(454), 1,
anon_sym_RPAREN,
STATE(93), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(229), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8536] = 14,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(456), 1,
anon_sym_RPAREN,
STATE(93), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(229), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8589] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(215), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(217), 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,
[8620] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
ACTIONS(458), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(144), 1,
aux_sym_list_repeat1,
ACTIONS(229), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8673] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(269), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(271), 13,
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,
[8704] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(460), 10,
ts_builtin_sym_end,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(462), 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,
[8735] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(232), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8782] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(228), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8829] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(80), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8876] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(83), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8923] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(82), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[8970] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(11), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(17), 1,
2023-11-28 22:54:17 +00:00
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(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
sym_identifier,
ACTIONS(466), 1,
anon_sym_LBRACE,
STATE(71), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(13), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(15), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9017] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(130), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-02 07:34:23 +00:00
STATE(108), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9064] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
STATE(133), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9111] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
STATE(128), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9158] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(293), 1,
anon_sym_SEMI,
ACTIONS(289), 8,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(291), 12,
anon_sym_async,
2023-11-30 01:59:58 +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,
[9189] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(52), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9236] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(102), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9283] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(54), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9330] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(466), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(24), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9377] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(170), 1,
sym_logic_operator,
STATE(171), 1,
sym_math_operator,
ACTIONS(97), 3,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(95), 16,
anon_sym_async,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9410] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(214), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9457] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(220), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9504] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(77), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9551] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
ACTIONS(227), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(76), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9598] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
ACTIONS(227), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(57), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
2023-11-30 01:59:58 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9645] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(231), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9692] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(103), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9739] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(233), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9786] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
STATE(206), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-05 21:42:11 +00:00
STATE(108), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9833] = 12,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(466), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(17), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9880] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(81), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9927] = 12,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(466), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(14), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 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-05 21:42:11 +00:00
STATE(40), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[9974] = 12,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(234), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10021] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(67), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 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-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10068] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(468), 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(470), 12,
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,
[10097] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(361), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(363), 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,
[10126] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(65), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10173] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:48:56 +00:00
ACTIONS(11), 1,
2023-11-30 01:59:58 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(466), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(9), 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,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10220] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(289), 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,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(291), 12,
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,
[10249] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(472), 9,
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(474), 12,
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,
[10278] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(49), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10325] = 11,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(367), 1,
anon_sym_DASH_GT,
ACTIONS(378), 1,
anon_sym_COLON,
ACTIONS(476), 1,
anon_sym_SEMI,
STATE(161), 1,
sym_logic_operator,
STATE(162), 1,
sym_math_operator,
ACTIONS(135), 2,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(289), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(133), 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,
[10370] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(478), 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(480), 12,
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,
[10399] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(482), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(484), 12,
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,
[10428] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(486), 9,
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(488), 12,
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,
[10457] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(202), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10504] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(131), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 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-02 07:34:23 +00:00
STATE(108), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10551] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(227), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10598] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(229), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10645] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(490), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
anon_sym_asyncfor,
ACTIONS(492), 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,
[10674] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
anon_sym_LBRACK,
ACTIONS(237), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
anon_sym_fn,
STATE(48), 1,
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10721] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
anon_sym_LBRACE,
STATE(126), 1,
2023-12-02 07:34:23 +00:00
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
2023-12-02 07:34:23 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(108), 6,
2023-12-02 07:34:23 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10768] = 6,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(494), 1,
anon_sym_DOT_DOT,
STATE(170), 1,
sym_logic_operator,
STATE(171), 1,
sym_math_operator,
ACTIONS(101), 3,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(99), 15,
anon_sym_async,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
anon_sym_COLON,
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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[10803] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
sym_identifier,
ACTIONS(466), 1,
anon_sym_LBRACE,
STATE(33), 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,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10850] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(225), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(233), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(75), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-05 21:42:11 +00:00
ACTIONS(229), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(231), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(85), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-05 21:42:11 +00:00
[10897] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(11), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
2023-12-05 21:42:11 +00:00
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(466), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(7), 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,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-05 21:42:11 +00:00
STATE(40), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10944] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(378), 1,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(161), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(162), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 07:34:23 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(295), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(133), 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-05 21:42:11 +00:00
[10987] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(236), 1,
sym_expression,
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11034] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(226), 1,
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11081] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(496), 9,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(498), 12,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
[11110] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_identifier,
ACTIONS(285), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(287), 1,
anon_sym_fn,
STATE(230), 1,
sym_expression,
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-05 21:42:11 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11157] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(35), 1,
anon_sym_fn,
ACTIONS(464), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(466), 1,
anon_sym_LBRACE,
STATE(30), 1,
sym_expression,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(53), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(40), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11204] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(68), 1,
sym_expression,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11251] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(101), 1,
sym_expression,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11298] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(500), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(170), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(171), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(125), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(131), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[11341] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(378), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(161), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(162), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(289), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(133), 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-05 21:42:11 +00:00
[11384] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(227), 1,
sym_integer,
ACTIONS(233), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(237), 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,
STATE(100), 1,
sym_expression,
ACTIONS(229), 2,
sym_float,
sym_string,
ACTIONS(231), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(97), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(85), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11431] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
STATE(125), 1,
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11478] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(502), 9,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(504), 12,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
[11507] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(203), 1,
anon_sym_fn,
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
STATE(121), 1,
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11554] = 6,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(500), 1,
anon_sym_COLON,
STATE(170), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(171), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(117), 3,
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
ACTIONS(115), 15,
2023-12-02 07:34:23 +00:00
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[11589] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(506), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(508), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
anon_sym_fn,
[11618] = 5,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(170), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(171), 1,
2023-12-02 07:34:23 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(101), 3,
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
ACTIONS(99), 16,
2023-12-02 07:34:23 +00:00
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
[11651] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(510), 9,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
2023-12-05 21:42:11 +00:00
ACTIONS(512), 12,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
[11680] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(235), 1,
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11727] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
ACTIONS(283), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(285), 1,
anon_sym_LBRACE,
ACTIONS(287), 1,
anon_sym_fn,
STATE(222), 1,
sym_expression,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11774] = 5,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(97), 3,
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(95), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[11806] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(514), 1,
anon_sym_COLON,
STATE(156), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(125), 3,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_EQ_GT,
ACTIONS(131), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[11848] = 6,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(117), 3,
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(115), 14,
anon_sym_async,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-05 21:42:11 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[11882] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(516), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(518), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(154), 1,
sym_block,
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[11928] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(209), 1,
sym_block,
ACTIONS(135), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[11974] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
anon_sym_async,
ACTIONS(526), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(276), 1,
2023-12-02 07:34:23 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12020] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(367), 1,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(528), 1,
anon_sym_async,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(263), 1,
sym_block,
ACTIONS(135), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12066] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(528), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(530), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(264), 1,
2023-12-02 07:34:23 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12112] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
ACTIONS(367), 1,
anon_sym_DASH_GT,
ACTIONS(514), 1,
anon_sym_COLON,
ACTIONS(524), 1,
anon_sym_async,
ACTIONS(526), 1,
anon_sym_LBRACE,
STATE(156), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(266), 1,
sym_block,
ACTIONS(135), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12158] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(146), 1,
sym_block,
STATE(156), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12204] = 12,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-12-02 07:34:23 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
STATE(221), 1,
sym_block,
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12250] = 10,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(532), 1,
2023-12-02 07:34:23 +00:00
anon_sym_EQ_GT,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12290] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(536), 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-05 21:42:11 +00:00
ACTIONS(534), 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,
[12316] = 10,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-05 21:42:11 +00:00
ACTIONS(367), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-05 21:42:11 +00:00
ACTIONS(538), 1,
2023-12-02 07:34:23 +00:00
anon_sym_EQ_GT,
2023-12-05 21:42:11 +00:00
STATE(156), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-05 21:42:11 +00:00
STATE(197), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(135), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-05 21:42:11 +00:00
ACTIONS(131), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-05 21:42:11 +00:00
ACTIONS(133), 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-05 21:42:11 +00:00
[12356] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(542), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(540), 13,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12378] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(546), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
2023-12-05 21:42:11 +00:00
ACTIONS(544), 13,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
anon_sym_LBRACK,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12400] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(540), 13,
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 14:48:56 +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-05 21:42:11 +00:00
[12419] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(548), 13,
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 14:48:56 +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-05 21:42:11 +00:00
[12438] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(550), 13,
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12457] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(504), 5,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(502), 8,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
[12478] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(552), 13,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12497] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(554), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(556), 1,
anon_sym_LPAREN,
ACTIONS(558), 1,
anon_sym_RPAREN,
STATE(249), 1,
aux_sym_type_repeat1,
STATE(251), 1,
sym_type,
ACTIONS(560), 7,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12525] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(562), 1,
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(565), 1,
anon_sym_LPAREN,
ACTIONS(568), 1,
anon_sym_RPAREN,
STATE(248), 1,
aux_sym_type_repeat1,
STATE(251), 1,
sym_type,
ACTIONS(570), 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-05 21:42:11 +00:00
[12553] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(554), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(556), 1,
anon_sym_LPAREN,
ACTIONS(573), 1,
anon_sym_RPAREN,
STATE(248), 1,
aux_sym_type_repeat1,
STATE(251), 1,
sym_type,
ACTIONS(560), 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-05 21:42:11 +00:00
[12581] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(575), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-12-05 21:42:11 +00:00
ACTIONS(403), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
[12600] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(577), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
ACTIONS(579), 10,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12619] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(581), 5,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(436), 6,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
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_LPAREN,
2023-12-05 21:42:11 +00:00
[12638] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(554), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(556), 1,
anon_sym_LPAREN,
STATE(327), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-05 21:42:11 +00:00
ACTIONS(560), 7,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12660] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(568), 10,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 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-05 21:42:11 +00:00
[12676] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(583), 5,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-05 21:42:11 +00:00
anon_sym_fn,
ACTIONS(585), 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-05 21:42:11 +00:00
[12694] = 5,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(554), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(556), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
STATE(243), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-05 21:42:11 +00:00
ACTIONS(560), 7,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-05 21:42:11 +00:00
[12716] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(587), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
2023-12-05 21:42:11 +00:00
ACTIONS(589), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
[12734] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(554), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(556), 1,
anon_sym_LPAREN,
STATE(321), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-05 21:42:11 +00:00
ACTIONS(560), 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-05 21:42:11 +00:00
[12756] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(554), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-05 21:42:11 +00:00
ACTIONS(556), 1,
anon_sym_LPAREN,
STATE(246), 1,
2023-12-02 07:34:23 +00:00
sym_type,
2023-12-05 21:42:11 +00:00
ACTIONS(560), 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-05 21:42:11 +00:00
[12778] = 7,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(363), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(591), 1,
2023-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-12-05 21:42:11 +00:00
ACTIONS(593), 1,
2023-11-30 14:30:25 +00:00
anon_sym_else,
2023-12-05 21:42:11 +00:00
STATE(272), 1,
2023-11-30 14:30:25 +00:00
sym_else,
2023-12-05 21:42:11 +00:00
STATE(262), 2,
2023-11-30 14:30:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-05 21:42:11 +00:00
ACTIONS(361), 3,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
[12803] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(355), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(591), 1,
2023-12-02 03:54:25 +00:00
anon_sym_elseif,
2023-12-05 21:42:11 +00:00
ACTIONS(593), 1,
2023-11-30 01:59:58 +00:00
anon_sym_else,
2023-12-05 21:42:11 +00:00
STATE(277), 1,
2023-12-02 03:54:25 +00:00
sym_else,
2023-12-05 21:42:11 +00:00
STATE(260), 2,
2023-11-30 01:59:58 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-05 21:42:11 +00:00
ACTIONS(353), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
[12828] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(595), 1,
anon_sym_elseif,
2023-12-05 21:42:11 +00:00
ACTIONS(371), 2,
2023-11-30 14:30:25 +00:00
sym_identifier,
anon_sym_else,
2023-12-05 21:42:11 +00:00
STATE(262), 2,
2023-12-02 03:54:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-05 21:42:11 +00:00
ACTIONS(369), 3,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
anon_sym_COMMA,
2023-12-05 21:42:11 +00:00
[12848] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(448), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_else,
2023-12-05 21:42:11 +00:00
ACTIONS(446), 4,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
anon_sym_elseif,
2023-12-05 21:42:11 +00:00
[12862] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(462), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_else,
2023-12-05 21:42:11 +00:00
ACTIONS(460), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
anon_sym_elseif,
2023-12-05 21:42:11 +00:00
[12876] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(478), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12886] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(496), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12896] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(472), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12906] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(490), 4,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12916] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(486), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12926] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(66), 1,
2023-12-02 07:34:23 +00:00
sym_assignment_operator,
2023-12-05 21:42:11 +00:00
ACTIONS(155), 3,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-05 21:42:11 +00:00
[12938] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(476), 1,
2023-11-28 22:54:17 +00:00
anon_sym_SEMI,
2023-12-05 21:42:11 +00:00
ACTIONS(289), 3,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[12950] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(482), 4,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12960] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(289), 4,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[12970] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(510), 4,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12980] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(468), 4,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[12990] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(506), 4,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
2023-11-30 14:48:56 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-05 21:42:11 +00:00
[13000] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(361), 4,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[13010] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
STATE(50), 1,
sym_assignment_operator,
ACTIONS(155), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13022] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(528), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(530), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(114), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13035] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(598), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(600), 1,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
2023-12-05 21:42:11 +00:00
STATE(299), 1,
aux_sym_function_repeat1,
[13048] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13057] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(598), 1,
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(604), 1,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
2023-12-05 21:42:11 +00:00
STATE(285), 1,
aux_sym_function_repeat1,
[13070] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
STATE(218), 1,
sym_block,
[13083] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(606), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(608), 1,
anon_sym_RBRACE,
STATE(307), 1,
aux_sym_map_repeat1,
[13096] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(598), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(610), 1,
2023-11-30 14:48:56 +00:00
anon_sym_PIPE,
2023-12-05 21:42:11 +00:00
STATE(293), 1,
aux_sym_function_repeat1,
[13109] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(612), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(615), 1,
anon_sym_RBRACE,
STATE(286), 1,
aux_sym_map_repeat1,
[13122] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(526), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(96), 1,
2023-11-30 14:30:25 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13135] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(619), 1,
anon_sym_COMMA,
ACTIONS(617), 2,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[13146] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(598), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(621), 1,
2023-12-02 03:54:25 +00:00
anon_sym_PIPE,
2023-12-05 21:42:11 +00:00
STATE(294), 1,
aux_sym_function_repeat1,
[13159] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(528), 1,
anon_sym_async,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(105), 1,
sym_block,
[13172] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(598), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(623), 1,
anon_sym_PIPE,
STATE(293), 1,
aux_sym_function_repeat1,
[13185] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(520), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(522), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(59), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13198] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(625), 1,
sym_identifier,
ACTIONS(628), 1,
anon_sym_PIPE,
STATE(293), 1,
aux_sym_function_repeat1,
[13211] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(598), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(630), 1,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
2023-12-05 21:42:11 +00:00
STATE(293), 1,
aux_sym_function_repeat1,
[13224] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(524), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(526), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(269), 1,
2023-12-02 07:34:23 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13237] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(606), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(632), 1,
anon_sym_RBRACE,
STATE(286), 1,
2023-12-02 07:34:23 +00:00
aux_sym_map_repeat1,
2023-12-05 21:42:11 +00:00
[13250] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(520), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(522), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(64), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13263] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(606), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(634), 1,
anon_sym_RBRACE,
STATE(286), 1,
aux_sym_map_repeat1,
[13276] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 1,
sym_identifier,
ACTIONS(636), 1,
anon_sym_PIPE,
STATE(293), 1,
aux_sym_function_repeat1,
[13289] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 1,
sym_identifier,
ACTIONS(638), 1,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
STATE(291), 1,
2023-12-05 21:42:11 +00:00
aux_sym_function_repeat1,
[13302] = 3,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(642), 1,
anon_sym_COMMA,
ACTIONS(640), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
[13313] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(520), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(522), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(194), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13326] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(91), 1,
anon_sym_RBRACE,
ACTIONS(606), 1,
sym_identifier,
STATE(298), 1,
aux_sym_map_repeat1,
[13339] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(526), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(245), 1,
2023-12-02 07:34:23 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13352] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(524), 1,
2023-12-02 07:34:23 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(526), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(94), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13365] = 4,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(39), 1,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
2023-12-05 21:42:11 +00:00
ACTIONS(606), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
STATE(296), 1,
aux_sym_map_repeat1,
[13378] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(606), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
ACTIONS(644), 1,
anon_sym_RBRACE,
STATE(286), 1,
aux_sym_map_repeat1,
[13391] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(646), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(648), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(114), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13404] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(646), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-05 21:42:11 +00:00
ACTIONS(648), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
STATE(105), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-05 21:42:11 +00:00
[13417] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(650), 2,
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[13425] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(628), 2,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
anon_sym_PIPE,
[13433] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(652), 1,
anon_sym_in,
[13440] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(654), 1,
anon_sym_PIPE,
[13447] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(656), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-05 21:42:11 +00:00
[13454] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(658), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
[13461] = 2,
2023-12-02 07:34:23 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(660), 1,
anon_sym_PIPE,
[13468] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(662), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
[13475] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(664), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[13482] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(666), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
2023-12-05 21:42:11 +00:00
[13489] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(668), 1,
sym_string,
[13496] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(670), 1,
anon_sym_GT,
[13503] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(672), 1,
2023-12-02 07:34:23 +00:00
sym_string,
2023-12-05 21:42:11 +00:00
[13510] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(674), 1,
anon_sym_LPAREN,
[13517] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(676), 1,
2023-12-02 07:34:23 +00:00
anon_sym_in,
2023-12-05 21:42:11 +00:00
[13524] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(678), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
2023-12-05 21:42:11 +00:00
[13531] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(680), 1,
anon_sym_LPAREN,
[13538] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(682), 1,
anon_sym_RBRACK,
[13545] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(684), 1,
anon_sym_PIPE,
[13552] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(686), 1,
anon_sym_LBRACE,
[13559] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(688), 1,
anon_sym_PIPE,
[13566] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(690), 1,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
2023-12-05 21:42:11 +00:00
[13573] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(692), 1,
ts_builtin_sym_end,
[13580] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-05 21:42:11 +00:00
ACTIONS(694), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
};
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)] = 192,
[SMALL_STATE(5)] = 289,
[SMALL_STATE(6)] = 383,
[SMALL_STATE(7)] = 437,
[SMALL_STATE(8)] = 493,
[SMALL_STATE(9)] = 587,
[SMALL_STATE(10)] = 641,
[SMALL_STATE(11)] = 735,
[SMALL_STATE(12)] = 829,
[SMALL_STATE(13)] = 923,
[SMALL_STATE(14)] = 1017,
[SMALL_STATE(15)] = 1073,
[SMALL_STATE(16)] = 1167,
[SMALL_STATE(17)] = 1261,
[SMALL_STATE(18)] = 1327,
[SMALL_STATE(19)] = 1421,
[SMALL_STATE(20)] = 1515,
[SMALL_STATE(21)] = 1609,
[SMALL_STATE(22)] = 1700,
[SMALL_STATE(23)] = 1791,
[SMALL_STATE(24)] = 1882,
[SMALL_STATE(25)] = 1935,
[SMALL_STATE(26)] = 2026,
[SMALL_STATE(27)] = 2117,
[SMALL_STATE(28)] = 2208,
[SMALL_STATE(29)] = 2299,
[SMALL_STATE(30)] = 2390,
[SMALL_STATE(31)] = 2445,
[SMALL_STATE(32)] = 2536,
[SMALL_STATE(33)] = 2627,
[SMALL_STATE(34)] = 2692,
[SMALL_STATE(35)] = 2751,
[SMALL_STATE(36)] = 2799,
[SMALL_STATE(37)] = 2847,
[SMALL_STATE(38)] = 2895,
[SMALL_STATE(39)] = 2943,
[SMALL_STATE(40)] = 3033,
[SMALL_STATE(41)] = 3081,
[SMALL_STATE(42)] = 3135,
[SMALL_STATE(43)] = 3183,
[SMALL_STATE(44)] = 3231,
[SMALL_STATE(45)] = 3289,
[SMALL_STATE(46)] = 3337,
[SMALL_STATE(47)] = 3427,
[SMALL_STATE(48)] = 3475,
[SMALL_STATE(49)] = 3561,
[SMALL_STATE(50)] = 3647,
[SMALL_STATE(51)] = 3737,
[SMALL_STATE(52)] = 3827,
[SMALL_STATE(53)] = 3913,
[SMALL_STATE(54)] = 3961,
[SMALL_STATE(55)] = 4047,
[SMALL_STATE(56)] = 4137,
[SMALL_STATE(57)] = 4185,
[SMALL_STATE(58)] = 4271,
[SMALL_STATE(59)] = 4361,
[SMALL_STATE(60)] = 4409,
[SMALL_STATE(61)] = 4457,
[SMALL_STATE(62)] = 4547,
[SMALL_STATE(63)] = 4595,
[SMALL_STATE(64)] = 4643,
[SMALL_STATE(65)] = 4691,
[SMALL_STATE(66)] = 4777,
[SMALL_STATE(67)] = 4867,
[SMALL_STATE(68)] = 4950,
[SMALL_STATE(69)] = 5033,
[SMALL_STATE(70)] = 5095,
[SMALL_STATE(71)] = 5159,
[SMALL_STATE(72)] = 5221,
[SMALL_STATE(73)] = 5286,
[SMALL_STATE(74)] = 5351,
[SMALL_STATE(75)] = 5390,
[SMALL_STATE(76)] = 5433,
[SMALL_STATE(77)] = 5478,
[SMALL_STATE(78)] = 5533,
[SMALL_STATE(79)] = 5576,
[SMALL_STATE(80)] = 5615,
[SMALL_STATE(81)] = 5660,
[SMALL_STATE(82)] = 5702,
[SMALL_STATE(83)] = 5756,
[SMALL_STATE(84)] = 5800,
[SMALL_STATE(85)] = 5837,
[SMALL_STATE(86)] = 5874,
[SMALL_STATE(87)] = 5929,
[SMALL_STATE(88)] = 5966,
[SMALL_STATE(89)] = 6003,
[SMALL_STATE(90)] = 6040,
[SMALL_STATE(91)] = 6077,
[SMALL_STATE(92)] = 6114,
[SMALL_STATE(93)] = 6151,
[SMALL_STATE(94)] = 6206,
[SMALL_STATE(95)] = 6243,
[SMALL_STATE(96)] = 6280,
[SMALL_STATE(97)] = 6317,
[SMALL_STATE(98)] = 6354,
[SMALL_STATE(99)] = 6391,
[SMALL_STATE(100)] = 6428,
[SMALL_STATE(101)] = 6470,
[SMALL_STATE(102)] = 6524,
[SMALL_STATE(103)] = 6578,
[SMALL_STATE(104)] = 6632,
[SMALL_STATE(105)] = 6666,
[SMALL_STATE(106)] = 6700,
[SMALL_STATE(107)] = 6734,
[SMALL_STATE(108)] = 6776,
[SMALL_STATE(109)] = 6810,
[SMALL_STATE(110)] = 6844,
[SMALL_STATE(111)] = 6878,
[SMALL_STATE(112)] = 6912,
[SMALL_STATE(113)] = 6946,
[SMALL_STATE(114)] = 6988,
[SMALL_STATE(115)] = 7022,
[SMALL_STATE(116)] = 7056,
[SMALL_STATE(117)] = 7090,
[SMALL_STATE(118)] = 7124,
[SMALL_STATE(119)] = 7158,
[SMALL_STATE(120)] = 7192,
[SMALL_STATE(121)] = 7225,
[SMALL_STATE(122)] = 7274,
[SMALL_STATE(123)] = 7307,
[SMALL_STATE(124)] = 7344,
[SMALL_STATE(125)] = 7399,
[SMALL_STATE(126)] = 7438,
[SMALL_STATE(127)] = 7475,
[SMALL_STATE(128)] = 7512,
[SMALL_STATE(129)] = 7551,
[SMALL_STATE(130)] = 7606,
[SMALL_STATE(131)] = 7654,
[SMALL_STATE(132)] = 7690,
[SMALL_STATE(133)] = 7732,
[SMALL_STATE(134)] = 7770,
[SMALL_STATE(135)] = 7823,
[SMALL_STATE(136)] = 7876,
[SMALL_STATE(137)] = 7929,
[SMALL_STATE(138)] = 7982,
[SMALL_STATE(139)] = 8035,
[SMALL_STATE(140)] = 8088,
[SMALL_STATE(141)] = 8141,
[SMALL_STATE(142)] = 8172,
[SMALL_STATE(143)] = 8203,
[SMALL_STATE(144)] = 8240,
[SMALL_STATE(145)] = 8293,
[SMALL_STATE(146)] = 8346,
[SMALL_STATE(147)] = 8377,
[SMALL_STATE(148)] = 8430,
[SMALL_STATE(149)] = 8483,
[SMALL_STATE(150)] = 8536,
[SMALL_STATE(151)] = 8589,
[SMALL_STATE(152)] = 8620,
[SMALL_STATE(153)] = 8673,
[SMALL_STATE(154)] = 8704,
[SMALL_STATE(155)] = 8735,
[SMALL_STATE(156)] = 8782,
[SMALL_STATE(157)] = 8829,
[SMALL_STATE(158)] = 8876,
[SMALL_STATE(159)] = 8923,
[SMALL_STATE(160)] = 8970,
[SMALL_STATE(161)] = 9017,
[SMALL_STATE(162)] = 9064,
[SMALL_STATE(163)] = 9111,
[SMALL_STATE(164)] = 9158,
[SMALL_STATE(165)] = 9189,
[SMALL_STATE(166)] = 9236,
[SMALL_STATE(167)] = 9283,
[SMALL_STATE(168)] = 9330,
[SMALL_STATE(169)] = 9377,
[SMALL_STATE(170)] = 9410,
[SMALL_STATE(171)] = 9457,
[SMALL_STATE(172)] = 9504,
[SMALL_STATE(173)] = 9551,
[SMALL_STATE(174)] = 9598,
[SMALL_STATE(175)] = 9645,
[SMALL_STATE(176)] = 9692,
[SMALL_STATE(177)] = 9739,
[SMALL_STATE(178)] = 9786,
[SMALL_STATE(179)] = 9833,
[SMALL_STATE(180)] = 9880,
[SMALL_STATE(181)] = 9927,
[SMALL_STATE(182)] = 9974,
[SMALL_STATE(183)] = 10021,
[SMALL_STATE(184)] = 10068,
[SMALL_STATE(185)] = 10097,
[SMALL_STATE(186)] = 10126,
[SMALL_STATE(187)] = 10173,
[SMALL_STATE(188)] = 10220,
[SMALL_STATE(189)] = 10249,
[SMALL_STATE(190)] = 10278,
[SMALL_STATE(191)] = 10325,
[SMALL_STATE(192)] = 10370,
[SMALL_STATE(193)] = 10399,
[SMALL_STATE(194)] = 10428,
[SMALL_STATE(195)] = 10457,
[SMALL_STATE(196)] = 10504,
[SMALL_STATE(197)] = 10551,
[SMALL_STATE(198)] = 10598,
[SMALL_STATE(199)] = 10645,
[SMALL_STATE(200)] = 10674,
[SMALL_STATE(201)] = 10721,
[SMALL_STATE(202)] = 10768,
[SMALL_STATE(203)] = 10803,
[SMALL_STATE(204)] = 10850,
[SMALL_STATE(205)] = 10897,
[SMALL_STATE(206)] = 10944,
[SMALL_STATE(207)] = 10987,
[SMALL_STATE(208)] = 11034,
[SMALL_STATE(209)] = 11081,
[SMALL_STATE(210)] = 11110,
[SMALL_STATE(211)] = 11157,
[SMALL_STATE(212)] = 11204,
[SMALL_STATE(213)] = 11251,
[SMALL_STATE(214)] = 11298,
[SMALL_STATE(215)] = 11341,
[SMALL_STATE(216)] = 11384,
[SMALL_STATE(217)] = 11431,
[SMALL_STATE(218)] = 11478,
[SMALL_STATE(219)] = 11507,
[SMALL_STATE(220)] = 11554,
[SMALL_STATE(221)] = 11589,
[SMALL_STATE(222)] = 11618,
[SMALL_STATE(223)] = 11651,
[SMALL_STATE(224)] = 11680,
[SMALL_STATE(225)] = 11727,
[SMALL_STATE(226)] = 11774,
[SMALL_STATE(227)] = 11806,
[SMALL_STATE(228)] = 11848,
[SMALL_STATE(229)] = 11882,
[SMALL_STATE(230)] = 11928,
[SMALL_STATE(231)] = 11974,
[SMALL_STATE(232)] = 12020,
[SMALL_STATE(233)] = 12066,
[SMALL_STATE(234)] = 12112,
[SMALL_STATE(235)] = 12158,
[SMALL_STATE(236)] = 12204,
[SMALL_STATE(237)] = 12250,
[SMALL_STATE(238)] = 12290,
[SMALL_STATE(239)] = 12316,
[SMALL_STATE(240)] = 12356,
[SMALL_STATE(241)] = 12378,
[SMALL_STATE(242)] = 12400,
[SMALL_STATE(243)] = 12419,
[SMALL_STATE(244)] = 12438,
[SMALL_STATE(245)] = 12457,
[SMALL_STATE(246)] = 12478,
[SMALL_STATE(247)] = 12497,
[SMALL_STATE(248)] = 12525,
[SMALL_STATE(249)] = 12553,
[SMALL_STATE(250)] = 12581,
[SMALL_STATE(251)] = 12600,
[SMALL_STATE(252)] = 12619,
[SMALL_STATE(253)] = 12638,
[SMALL_STATE(254)] = 12660,
[SMALL_STATE(255)] = 12676,
[SMALL_STATE(256)] = 12694,
[SMALL_STATE(257)] = 12716,
[SMALL_STATE(258)] = 12734,
[SMALL_STATE(259)] = 12756,
[SMALL_STATE(260)] = 12778,
[SMALL_STATE(261)] = 12803,
[SMALL_STATE(262)] = 12828,
[SMALL_STATE(263)] = 12848,
[SMALL_STATE(264)] = 12862,
[SMALL_STATE(265)] = 12876,
[SMALL_STATE(266)] = 12886,
[SMALL_STATE(267)] = 12896,
[SMALL_STATE(268)] = 12906,
[SMALL_STATE(269)] = 12916,
[SMALL_STATE(270)] = 12926,
[SMALL_STATE(271)] = 12938,
[SMALL_STATE(272)] = 12950,
[SMALL_STATE(273)] = 12960,
[SMALL_STATE(274)] = 12970,
[SMALL_STATE(275)] = 12980,
[SMALL_STATE(276)] = 12990,
[SMALL_STATE(277)] = 13000,
[SMALL_STATE(278)] = 13010,
[SMALL_STATE(279)] = 13022,
[SMALL_STATE(280)] = 13035,
[SMALL_STATE(281)] = 13048,
[SMALL_STATE(282)] = 13057,
[SMALL_STATE(283)] = 13070,
[SMALL_STATE(284)] = 13083,
[SMALL_STATE(285)] = 13096,
[SMALL_STATE(286)] = 13109,
[SMALL_STATE(287)] = 13122,
[SMALL_STATE(288)] = 13135,
[SMALL_STATE(289)] = 13146,
[SMALL_STATE(290)] = 13159,
[SMALL_STATE(291)] = 13172,
[SMALL_STATE(292)] = 13185,
[SMALL_STATE(293)] = 13198,
[SMALL_STATE(294)] = 13211,
[SMALL_STATE(295)] = 13224,
[SMALL_STATE(296)] = 13237,
[SMALL_STATE(297)] = 13250,
[SMALL_STATE(298)] = 13263,
[SMALL_STATE(299)] = 13276,
[SMALL_STATE(300)] = 13289,
[SMALL_STATE(301)] = 13302,
[SMALL_STATE(302)] = 13313,
[SMALL_STATE(303)] = 13326,
[SMALL_STATE(304)] = 13339,
[SMALL_STATE(305)] = 13352,
[SMALL_STATE(306)] = 13365,
[SMALL_STATE(307)] = 13378,
[SMALL_STATE(308)] = 13391,
[SMALL_STATE(309)] = 13404,
[SMALL_STATE(310)] = 13417,
[SMALL_STATE(311)] = 13425,
[SMALL_STATE(312)] = 13433,
[SMALL_STATE(313)] = 13440,
[SMALL_STATE(314)] = 13447,
[SMALL_STATE(315)] = 13454,
[SMALL_STATE(316)] = 13461,
[SMALL_STATE(317)] = 13468,
[SMALL_STATE(318)] = 13475,
[SMALL_STATE(319)] = 13482,
[SMALL_STATE(320)] = 13489,
[SMALL_STATE(321)] = 13496,
[SMALL_STATE(322)] = 13503,
[SMALL_STATE(323)] = 13510,
[SMALL_STATE(324)] = 13517,
[SMALL_STATE(325)] = 13524,
[SMALL_STATE(326)] = 13531,
[SMALL_STATE(327)] = 13538,
[SMALL_STATE(328)] = 13545,
[SMALL_STATE(329)] = 13552,
[SMALL_STATE(330)] = 13559,
[SMALL_STATE(331)] = 13566,
[SMALL_STATE(332)] = 13573,
[SMALL_STATE(333)] = 13580,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
2023-12-05 21:42:11 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
2023-12-02 07:34:23 +00:00
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
2023-12-05 21:42:11 +00:00
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(34),
[46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(333),
[49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4),
[52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(53),
[55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(53),
[58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(47),
[61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(136),
[64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(190),
[67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(224),
[70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(212),
[73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(210),
[76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325),
[79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325),
[82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(160),
[85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(322),
[88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(330),
[91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
2023-12-02 07:34:23 +00:00
[115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
2023-12-05 21:42:11 +00:00
[119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255),
[131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257),
[137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
[153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
[155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 5),
[163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 5),
[165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
[175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
[185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155),
[191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
[197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
[201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316),
[205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85),
[225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87),
[233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328),
[245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5),
[263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5),
[265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108),
[285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
[287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313),
[289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
2023-12-02 07:34:23 +00:00
[299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(108),
[304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
2023-12-05 21:42:11 +00:00
[306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(306),
[309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(111),
[312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(111),
[315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(109),
[318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(147),
[321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(167),
[324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(313),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
[361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(198),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(85),
[385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(284),
[388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(97),
[391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(97),
[394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(87),
[397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(140),
[400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(186),
[403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(328),
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(85),
[421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(284),
[424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(97),
[427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(97),
[430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(87),
[433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(140),
[436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(186),
[441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(328),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
2023-12-02 07:34:23 +00:00
[502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
2023-12-05 21:42:11 +00:00
[510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
[534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(253),
[565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(247),
[568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(244),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295),
[595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(177),
[598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(331),
[615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(301),
[628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[692] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
};
#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