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

14111 lines
316 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-02 03:54:25 +00:00
#define STATE_COUNT 348
#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-11-30 00:23:42 +00:00
anon_sym_PIPE = 44,
2023-11-30 14:30:25 +00:00
anon_sym_return = 45,
anon_sym_use = 46,
anon_sym_any = 47,
anon_sym_bool = 48,
anon_sym_float = 49,
2023-11-30 00:23:42 +00:00
anon_sym_fn = 50,
anon_sym_DASH_GT = 51,
anon_sym_int = 52,
2023-11-30 14:48:56 +00:00
anon_sym_map = 53,
anon_sym_num = 54,
anon_sym_str = 55,
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,
aux_sym_identifier_list_repeat1 = 92,
aux_sym_type_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_PIPE] = "|",
[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",
[anon_sym_fn] = "fn",
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",
[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",
[aux_sym_identifier_list_repeat1] = "identifier_list_repeat1",
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = "type_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_PIPE] = anon_sym_PIPE,
[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,
[anon_sym_fn] = anon_sym_fn,
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,
[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,
[aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1,
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = aux_sym_type_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_PIPE] = {
.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,
},
[anon_sym_fn] = {
.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,
},
[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,
},
[aux_sym_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
2023-11-30 00:23:42 +00:00
[aux_sym_type_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-11-30 14:30:25 +00:00
[3] = 3,
2023-12-02 03:54:25 +00:00
[4] = 3,
2023-11-28 22:54:17 +00:00
[5] = 5,
2023-12-02 03:54:25 +00:00
[6] = 5,
2023-11-30 16:05:09 +00:00
[7] = 7,
[8] = 7,
2023-12-02 03:54:25 +00:00
[9] = 5,
[10] = 7,
[11] = 5,
[12] = 7,
2023-11-30 16:05:09 +00:00
[13] = 7,
2023-12-02 03:54:25 +00:00
[14] = 5,
[15] = 15,
[16] = 16,
[17] = 17,
[18] = 16,
[19] = 16,
[20] = 17,
[21] = 17,
[22] = 16,
[23] = 17,
[24] = 16,
[25] = 17,
[26] = 26,
[27] = 27,
[28] = 28,
2023-11-30 16:05:09 +00:00
[29] = 29,
2023-12-02 03:54:25 +00:00
[30] = 26,
2023-11-30 16:05:09 +00:00
[31] = 31,
2023-12-02 03:54:25 +00:00
[32] = 29,
2023-11-30 16:05:09 +00:00
[33] = 33,
2023-12-02 03:54:25 +00:00
[34] = 27,
2023-11-28 22:54:17 +00:00
[35] = 35,
2023-11-30 16:05:09 +00:00
[36] = 36,
2023-12-02 03:54:25 +00:00
[37] = 35,
2023-11-28 22:54:17 +00:00
[38] = 38,
2023-12-02 03:54:25 +00:00
[39] = 38,
[40] = 28,
[41] = 36,
2023-11-30 01:59:58 +00:00
[42] = 42,
2023-12-02 03:54:25 +00:00
[43] = 43,
[44] = 44,
2023-11-30 16:05:09 +00:00
[45] = 45,
2023-11-30 01:59:58 +00:00
[46] = 46,
2023-11-30 14:30:25 +00:00
[47] = 47,
2023-11-30 16:05:09 +00:00
[48] = 48,
[49] = 49,
2023-12-02 03:54:25 +00:00
[50] = 50,
2023-11-30 14:30:25 +00:00
[51] = 51,
[52] = 52,
2023-12-02 03:54:25 +00:00
[53] = 53,
[54] = 54,
2023-11-30 14:30:25 +00:00
[55] = 55,
2023-12-02 03:54:25 +00:00
[56] = 56,
2023-11-30 16:05:09 +00:00
[57] = 57,
2023-12-02 03:54:25 +00:00
[58] = 58,
2023-11-30 14:30:25 +00:00
[59] = 59,
2023-12-02 03:54:25 +00:00
[60] = 60,
[61] = 61,
[62] = 51,
[63] = 63,
2023-12-02 03:54:25 +00:00
[64] = 64,
[65] = 64,
[66] = 64,
[67] = 67,
[68] = 68,
[69] = 67,
[70] = 70,
[71] = 71,
[72] = 35,
[73] = 35,
[74] = 36,
[75] = 28,
[76] = 60,
[77] = 57,
[78] = 38,
[79] = 36,
[80] = 38,
[81] = 28,
[82] = 49,
[83] = 54,
[84] = 47,
[85] = 55,
[86] = 86,
[87] = 87,
[88] = 52,
[89] = 63,
[90] = 58,
[91] = 61,
[92] = 44,
[93] = 56,
[94] = 53,
[95] = 45,
[96] = 46,
[97] = 48,
[98] = 50,
[99] = 47,
[100] = 44,
[101] = 53,
2023-11-30 16:05:09 +00:00
[102] = 49,
2023-12-02 03:54:25 +00:00
[103] = 63,
[104] = 52,
[105] = 48,
[106] = 46,
[107] = 45,
[108] = 55,
[109] = 50,
[110] = 56,
[111] = 58,
[112] = 61,
[113] = 54,
[114] = 70,
[115] = 60,
2023-11-30 16:05:09 +00:00
[116] = 116,
2023-12-02 03:54:25 +00:00
[117] = 71,
[118] = 57,
2023-11-30 14:30:25 +00:00
[119] = 119,
2023-12-02 03:54:25 +00:00
[120] = 28,
[121] = 35,
2023-11-30 16:05:09 +00:00
[122] = 122,
2023-12-02 03:54:25 +00:00
[123] = 38,
[124] = 36,
[125] = 35,
[126] = 126,
[127] = 127,
[128] = 128,
[129] = 28,
[130] = 38,
[131] = 128,
[132] = 132,
[133] = 126,
[134] = 134,
[135] = 132,
[136] = 42,
[137] = 137,
[138] = 36,
[139] = 137,
[140] = 126,
[141] = 137,
[142] = 132,
[143] = 127,
[144] = 127,
2023-11-30 14:30:25 +00:00
[145] = 145,
2023-12-02 03:54:25 +00:00
[146] = 128,
[147] = 60,
[148] = 43,
[149] = 57,
[150] = 60,
[151] = 151,
[152] = 57,
[153] = 153,
2023-11-30 14:30:25 +00:00
[154] = 154,
[155] = 155,
2023-11-30 16:05:09 +00:00
[156] = 156,
[157] = 157,
2023-12-02 03:54:25 +00:00
[158] = 155,
[159] = 159,
[160] = 157,
[161] = 155,
2023-11-30 16:05:09 +00:00
[162] = 162,
2023-11-30 14:48:56 +00:00
[163] = 163,
2023-12-02 03:54:25 +00:00
[164] = 154,
[165] = 35,
[166] = 156,
2023-11-30 16:05:09 +00:00
[167] = 167,
2023-12-02 03:54:25 +00:00
[168] = 163,
[169] = 156,
2023-11-30 16:05:09 +00:00
[170] = 170,
2023-12-02 03:54:25 +00:00
[171] = 159,
2023-11-30 16:05:09 +00:00
[172] = 172,
2023-12-02 03:54:25 +00:00
[173] = 157,
[174] = 155,
[175] = 36,
2023-11-30 16:05:09 +00:00
[176] = 176,
2023-12-02 03:54:25 +00:00
[177] = 157,
[178] = 155,
[179] = 176,
[180] = 162,
[181] = 181,
[182] = 157,
[183] = 28,
[184] = 172,
[185] = 156,
[186] = 163,
[187] = 154,
[188] = 156,
[189] = 157,
[190] = 155,
[191] = 191,
[192] = 156,
[193] = 38,
[194] = 176,
[195] = 176,
[196] = 156,
[197] = 156,
[198] = 157,
[199] = 155,
[200] = 157,
[201] = 155,
[202] = 191,
[203] = 181,
[204] = 35,
[205] = 167,
[206] = 170,
[207] = 172,
2023-11-30 14:30:25 +00:00
[208] = 208,
[209] = 209,
2023-12-02 03:54:25 +00:00
[210] = 210,
[211] = 211,
[212] = 212,
[213] = 213,
[214] = 67,
[215] = 36,
[216] = 38,
[217] = 28,
[218] = 68,
[219] = 67,
2023-11-30 16:05:09 +00:00
[220] = 220,
[221] = 221,
2023-12-02 03:54:25 +00:00
[222] = 222,
[223] = 212,
[224] = 224,
2023-11-28 22:54:17 +00:00
[225] = 225,
2023-11-30 16:05:09 +00:00
[226] = 226,
2023-12-02 03:54:25 +00:00
[227] = 227,
2023-11-30 16:05:09 +00:00
[228] = 228,
2023-11-30 14:48:56 +00:00
[229] = 229,
2023-12-02 03:54:25 +00:00
[230] = 228,
[231] = 231,
[232] = 227,
[233] = 231,
[234] = 229,
[235] = 235,
2023-11-30 16:05:09 +00:00
[236] = 236,
[237] = 237,
2023-11-30 14:48:56 +00:00
[238] = 238,
2023-12-02 03:54:25 +00:00
[239] = 238,
[240] = 236,
2023-11-30 16:05:09 +00:00
[241] = 241,
2023-12-02 03:54:25 +00:00
[242] = 241,
[243] = 238,
[244] = 236,
[245] = 245,
[246] = 245,
[247] = 245,
2023-11-30 16:05:09 +00:00
[248] = 248,
2023-12-02 03:54:25 +00:00
[249] = 249,
[250] = 250,
[251] = 250,
[252] = 249,
[253] = 248,
[254] = 254,
[255] = 255,
[256] = 256,
2023-11-30 14:48:56 +00:00
[257] = 257,
2023-12-02 03:54:25 +00:00
[258] = 210,
[259] = 257,
[260] = 260,
[261] = 261,
[262] = 262,
[263] = 263,
[264] = 264,
[265] = 265,
[266] = 265,
[267] = 267,
[268] = 263,
2023-11-30 14:48:56 +00:00
[269] = 269,
[270] = 270,
2023-12-02 03:54:25 +00:00
[271] = 116,
[272] = 119,
[273] = 122,
[274] = 151,
[275] = 153,
[276] = 224,
[277] = 226,
[278] = 278,
[279] = 208,
[280] = 278,
[281] = 213,
[282] = 209,
[283] = 222,
[284] = 225,
[285] = 212,
[286] = 211,
[287] = 212,
[288] = 220,
[289] = 289,
[290] = 221,
2023-11-30 16:05:09 +00:00
[291] = 291,
[292] = 292,
[293] = 293,
[294] = 294,
2023-12-02 03:54:25 +00:00
[295] = 293,
2023-11-30 16:05:09 +00:00
[296] = 296,
[297] = 297,
[298] = 298,
[299] = 299,
[300] = 300,
2023-12-02 03:54:25 +00:00
[301] = 294,
[302] = 302,
[303] = 297,
[304] = 296,
[305] = 294,
[306] = 306,
[307] = 302,
[308] = 299,
[309] = 293,
[310] = 292,
[311] = 299,
[312] = 297,
[313] = 302,
[314] = 291,
[315] = 291,
[316] = 297,
[317] = 302,
[318] = 318,
[319] = 291,
[320] = 299,
[321] = 321,
[322] = 322,
[323] = 323,
[324] = 324,
[325] = 325,
[326] = 325,
[327] = 327,
[328] = 328,
[329] = 325,
[330] = 327,
[331] = 325,
[332] = 332,
[333] = 328,
[334] = 334,
[335] = 327,
[336] = 325,
[337] = 334,
[338] = 328,
[339] = 339,
[340] = 340,
[341] = 341,
[342] = 327,
[343] = 340,
[344] = 340,
[345] = 345,
[346] = 332,
[347] = 345,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-12-02 03:54:25 +00:00
if (eof) ADVANCE(26);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(54);
if (lookahead == ')') ADVANCE(55);
if (lookahead == '*') ADVANCE(62);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(51);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(47);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(16);
if (lookahead == 'a') ADVANCE(40);
if (lookahead == 'e') ADVANCE(38);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(79);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-02 03:54:25 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 1:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(54);
if (lookahead == ')') ADVANCE(55);
if (lookahead == '*') ADVANCE(62);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(61);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(14);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(47);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(16);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(23);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-02 03:54:25 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 2:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == ')') ADVANCE(55);
if (lookahead == '*') ADVANCE(62);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(58);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(51);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(23);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 3:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == ')') ADVANCE(55);
if (lookahead == '*') ADVANCE(62);
2023-11-30 14:30:25 +00:00
if (lookahead == '+') ADVANCE(56);
2023-12-02 03:54:25 +00:00
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(15);
if (lookahead == '>') ADVANCE(70);
if (lookahead == 'e') ADVANCE(38);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(23);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 4:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == ')') ADVANCE(55);
if (lookahead == '*') ADVANCE(62);
if (lookahead == '+') ADVANCE(56);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(15);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(23);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 5:
2023-12-02 03:54:25 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(62);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(58);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '|') ADVANCE(23);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-02 03:54:25 +00:00
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 14:30:25 +00:00
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 6:
if (lookahead == '"') ADVANCE(46);
if (lookahead != 0) ADVANCE(6);
END_STATE();
case 7:
2023-12-02 03:54:25 +00:00
if (lookahead == '#') ADVANCE(22);
if (lookahead == '+') ADVANCE(12);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(13);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(69);
if (lookahead == '[') ADVANCE(47);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '|') ADVANCE(79);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(7)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
case 8:
2023-12-02 03:54:25 +00:00
if (lookahead == '&') ADVANCE(67);
END_STATE();
case 9:
2023-12-02 03:54:25 +00:00
if (lookahead == '\'') ADVANCE(46);
if (lookahead != 0) ADVANCE(9);
END_STATE();
case 10:
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(53);
END_STATE();
case 11:
2023-12-02 03:54:25 +00:00
if (lookahead == '=') ADVANCE(66);
END_STATE();
case 12:
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(74);
END_STATE();
case 13:
2023-12-02 03:54:25 +00:00
if (lookahead == '=') ADVANCE(75);
if (lookahead == '>') ADVANCE(80);
END_STATE();
case 14:
2023-12-02 03:54:25 +00:00
if (lookahead == '=') ADVANCE(65);
END_STATE();
case 15:
2023-12-02 03:54:25 +00:00
if (lookahead == '=') ADVANCE(65);
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 16:
2023-12-02 03:54:25 +00:00
if (lookahead == '`') ADVANCE(46);
if (lookahead != 0) ADVANCE(16);
END_STATE();
case 17:
2023-12-02 03:54:25 +00:00
if (lookahead == 'f') ADVANCE(20);
END_STATE();
case 18:
2023-12-02 03:54:25 +00:00
if (lookahead == 'f') ADVANCE(76);
END_STATE();
case 19:
2023-12-02 03:54:25 +00:00
if (lookahead == 'i') ADVANCE(18);
END_STATE();
case 20:
2023-12-02 03:54:25 +00:00
if (lookahead == 'o') ADVANCE(21);
END_STATE();
case 21:
2023-12-02 03:54:25 +00:00
if (lookahead == 'r') ADVANCE(78);
END_STATE();
case 22:
2023-12-02 03:54:25 +00:00
if (lookahead == '|') ADVANCE(28);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(27);
if (lookahead != 0) ADVANCE(22);
END_STATE();
case 23:
2023-12-02 03:54:25 +00:00
if (lookahead == '|') ADVANCE(68);
END_STATE();
case 24:
2023-12-02 03:54:25 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
END_STATE();
case 25:
if (eof) ADVANCE(26);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(6);
if (lookahead == '#') ADVANCE(22);
if (lookahead == '%') ADVANCE(64);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(54);
if (lookahead == '*') ADVANCE(62);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(47);
if (lookahead == '`') ADVANCE(16);
if (lookahead == 'a') ADVANCE(40);
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(23);
if (lookahead == '}') ADVANCE(30);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-12-02 03:54:25 +00:00
lookahead == ' ') SKIP(25)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-12-02 03:54:25 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 26:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-11-30 14:30:25 +00:00
case 27:
ACCEPT_TOKEN(sym__comment);
END_STATE();
2023-11-30 14:30:25 +00:00
case 28:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym__comment);
if (lookahead == '|') ADVANCE(28);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(27);
if (lookahead != 0) ADVANCE(22);
END_STATE();
2023-11-30 14:30:25 +00:00
case 29:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 30:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 31:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
2023-11-30 14:30:25 +00:00
case 32:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-11-30 14:30:25 +00:00
case 33:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-11-30 14:30:25 +00:00
case 34:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == ' ') ADVANCE(19);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
2023-11-30 16:05:09 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 35:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == ' ') ADVANCE(17);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 'c') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 37:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 'e') ADVANCE(34);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 38:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 'l') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 39:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 'n') ADVANCE(36);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 40:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 's') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 41:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 's') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 42:
ACCEPT_TOKEN(sym_identifier);
2023-12-02 03:54:25 +00:00
if (lookahead == 'y') ADVANCE(39);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-12-02 03:54:25 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 14:30:25 +00:00
case 43:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(43);
END_STATE();
2023-11-30 16:05:09 +00:00
case 44:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(24);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
END_STATE();
2023-11-30 16:05:09 +00:00
case 45:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
END_STATE();
2023-11-30 16:05:09 +00:00
case 46:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-11-30 16:05:09 +00:00
case 47:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 48:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 49:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
2023-11-30 16:05:09 +00:00
case 50:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
2023-12-02 03:54:25 +00:00
if (lookahead == '=') ADVANCE(65);
END_STATE();
2023-11-30 16:05:09 +00:00
case 51:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(65);
if (lookahead == '>') ADVANCE(77);
END_STATE();
2023-11-30 16:05:09 +00:00
case 52:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
2023-11-30 16:05:09 +00:00
case 53:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
2023-11-30 16:05:09 +00:00
END_STATE();
case 54:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
2023-11-30 16:05:09 +00:00
END_STATE();
2023-11-30 14:30:25 +00:00
case 55:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
2023-11-30 14:30:25 +00:00
case 56:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
2023-11-30 14:30:25 +00:00
case 57:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(74);
END_STATE();
2023-11-30 14:30:25 +00:00
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-02 03:54:25 +00:00
if (lookahead == '=') ADVANCE(75);
if (lookahead == '>') ADVANCE(80);
END_STATE();
2023-11-30 14:30:25 +00:00
case 59:
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-02 03:54:25 +00:00
if (lookahead == '>') ADVANCE(80);
END_STATE();
2023-11-30 14:30:25 +00:00
case 60:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
2023-12-02 03:54:25 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == '=') ADVANCE(75);
if (lookahead == '>') ADVANCE(80);
END_STATE();
2023-11-30 14:30:25 +00:00
case 61:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
if (lookahead == '>') ADVANCE(80);
END_STATE();
2023-11-30 14:30:25 +00:00
case 62:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-30 14:30:25 +00:00
case 63:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-30 14:30:25 +00:00
case 64:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 65:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 66:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 67:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-30 14:30:25 +00:00
case 68:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 69:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 70:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_GT);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(72);
END_STATE();
2023-11-30 14:30:25 +00:00
case 71:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(73);
END_STATE();
2023-11-30 14:30:25 +00:00
case 72:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 73:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 74:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 75:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 76:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-11-30 14:30:25 +00:00
case 77:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_EQ_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_asyncfor);
2023-11-30 00:23:42 +00:00
END_STATE();
2023-11-30 14:30:25 +00:00
case 79:
2023-12-02 03:54:25 +00:00
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 80:
ACCEPT_TOKEN(anon_sym_DASH_GT);
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-02 03:54:25 +00:00
[1] = {.lex_state = 25},
[2] = {.lex_state = 25},
[3] = {.lex_state = 25},
[4] = {.lex_state = 25},
[5] = {.lex_state = 25},
[6] = {.lex_state = 25},
[7] = {.lex_state = 25},
[8] = {.lex_state = 25},
[9] = {.lex_state = 25},
[10] = {.lex_state = 25},
[11] = {.lex_state = 25},
[12] = {.lex_state = 25},
[13] = {.lex_state = 25},
[14] = {.lex_state = 25},
[15] = {.lex_state = 25},
[16] = {.lex_state = 25},
[17] = {.lex_state = 25},
[18] = {.lex_state = 25},
[19] = {.lex_state = 25},
[20] = {.lex_state = 25},
[21] = {.lex_state = 25},
[22] = {.lex_state = 25},
[23] = {.lex_state = 25},
[24] = {.lex_state = 25},
[25] = {.lex_state = 25},
[26] = {.lex_state = 25},
[27] = {.lex_state = 25},
[28] = {.lex_state = 25},
[29] = {.lex_state = 25},
[30] = {.lex_state = 25},
[31] = {.lex_state = 25},
[32] = {.lex_state = 25},
[33] = {.lex_state = 25},
[34] = {.lex_state = 25},
[35] = {.lex_state = 25},
[36] = {.lex_state = 25},
[37] = {.lex_state = 25},
[38] = {.lex_state = 25},
[39] = {.lex_state = 25},
[40] = {.lex_state = 25},
[41] = {.lex_state = 25},
[42] = {.lex_state = 25},
[43] = {.lex_state = 25},
[44] = {.lex_state = 25},
[45] = {.lex_state = 25},
[46] = {.lex_state = 25},
[47] = {.lex_state = 25},
[48] = {.lex_state = 25},
[49] = {.lex_state = 25},
[50] = {.lex_state = 25},
[51] = {.lex_state = 1},
[52] = {.lex_state = 25},
[53] = {.lex_state = 25},
[54] = {.lex_state = 25},
[55] = {.lex_state = 25},
[56] = {.lex_state = 25},
[57] = {.lex_state = 25},
[58] = {.lex_state = 25},
[59] = {.lex_state = 25},
[60] = {.lex_state = 25},
[61] = {.lex_state = 25},
[62] = {.lex_state = 1},
[63] = {.lex_state = 25},
2023-11-30 16:05:09 +00:00
[64] = {.lex_state = 1},
[65] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[66] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[67] = {.lex_state = 25},
[68] = {.lex_state = 25},
[69] = {.lex_state = 25},
[70] = {.lex_state = 25},
[71] = {.lex_state = 25},
2023-11-30 14:30:25 +00:00
[72] = {.lex_state = 1},
[73] = {.lex_state = 1},
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-11-30 14:30:25 +00:00
[99] = {.lex_state = 2},
[100] = {.lex_state = 2},
[101] = {.lex_state = 2},
[102] = {.lex_state = 2},
[103] = {.lex_state = 2},
[104] = {.lex_state = 2},
[105] = {.lex_state = 2},
[106] = {.lex_state = 2},
[107] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[108] = {.lex_state = 2},
[109] = {.lex_state = 2},
[110] = {.lex_state = 2},
[111] = {.lex_state = 2},
[112] = {.lex_state = 2},
[113] = {.lex_state = 2},
2023-11-30 16:05:09 +00:00
[114] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[115] = {.lex_state = 3},
2023-11-30 16:05:09 +00:00
[116] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[117] = {.lex_state = 1},
[118] = {.lex_state = 3},
[119] = {.lex_state = 0},
[120] = {.lex_state = 5},
[121] = {.lex_state = 5},
[122] = {.lex_state = 0},
[123] = {.lex_state = 5},
[124] = {.lex_state = 5},
[125] = {.lex_state = 5},
2023-11-30 16:05:09 +00:00
[126] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[127] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[128] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[129] = {.lex_state = 5},
[130] = {.lex_state = 5},
2023-11-30 14:30:25 +00:00
[131] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[132] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[133] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[134] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[135] = {.lex_state = 1},
[136] = {.lex_state = 5},
2023-11-30 16:05:09 +00:00
[137] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[138] = {.lex_state = 5},
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
[143] = {.lex_state = 1},
[144] = {.lex_state = 1},
[145] = {.lex_state = 1},
[146] = {.lex_state = 1},
[147] = {.lex_state = 0},
[148] = {.lex_state = 5},
[149] = {.lex_state = 5},
[150] = {.lex_state = 5},
[151] = {.lex_state = 0},
[152] = {.lex_state = 0},
[153] = {.lex_state = 0},
[154] = {.lex_state = 1},
[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},
[164] = {.lex_state = 1},
[165] = {.lex_state = 4},
2023-11-30 14:48:56 +00:00
[166] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[167] = {.lex_state = 1},
[168] = {.lex_state = 1},
[169] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[170] = {.lex_state = 1},
[171] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[172] = {.lex_state = 1},
[173] = {.lex_state = 1},
[174] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[175] = {.lex_state = 4},
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 03:54:25 +00:00
[183] = {.lex_state = 4},
2023-11-30 16:05:09 +00:00
[184] = {.lex_state = 1},
[185] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[186] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[187] = {.lex_state = 1},
[188] = {.lex_state = 1},
[189] = {.lex_state = 1},
[190] = {.lex_state = 1},
[191] = {.lex_state = 1},
[192] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[193] = {.lex_state = 4},
2023-11-30 16:05:09 +00:00
[194] = {.lex_state = 1},
[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-11-30 16:05:09 +00:00
[199] = {.lex_state = 1},
[200] = {.lex_state = 1},
[201] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[202] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[203] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[204] = {.lex_state = 4},
2023-11-30 16:05:09 +00:00
[205] = {.lex_state = 1},
[206] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[207] = {.lex_state = 1},
[208] = {.lex_state = 25},
[209] = {.lex_state = 25},
[210] = {.lex_state = 25},
[211] = {.lex_state = 25},
[212] = {.lex_state = 25},
[213] = {.lex_state = 25},
2023-11-30 16:05:09 +00:00
[214] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[215] = {.lex_state = 4},
[216] = {.lex_state = 4},
[217] = {.lex_state = 4},
2023-11-30 16:05:09 +00:00
[218] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[219] = {.lex_state = 2},
[220] = {.lex_state = 25},
[221] = {.lex_state = 25},
[222] = {.lex_state = 25},
[223] = {.lex_state = 25},
[224] = {.lex_state = 25},
[225] = {.lex_state = 25},
[226] = {.lex_state = 25},
[227] = {.lex_state = 2},
[228] = {.lex_state = 2},
[229] = {.lex_state = 2},
[230] = {.lex_state = 2},
[231] = {.lex_state = 2},
[232] = {.lex_state = 2},
[233] = {.lex_state = 2},
[234] = {.lex_state = 2},
2023-11-30 16:05:09 +00:00
[235] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[236] = {.lex_state = 2},
[237] = {.lex_state = 25},
[238] = {.lex_state = 2},
[239] = {.lex_state = 2},
[240] = {.lex_state = 2},
[241] = {.lex_state = 3},
[242] = {.lex_state = 3},
[243] = {.lex_state = 2},
[244] = {.lex_state = 2},
[245] = {.lex_state = 2},
[246] = {.lex_state = 2},
[247] = {.lex_state = 2},
[248] = {.lex_state = 7},
[249] = {.lex_state = 7},
[250] = {.lex_state = 7},
[251] = {.lex_state = 7},
[252] = {.lex_state = 7},
[253] = {.lex_state = 7},
[254] = {.lex_state = 7},
[255] = {.lex_state = 7},
[256] = {.lex_state = 7},
[257] = {.lex_state = 7},
2023-11-30 16:05:09 +00:00
[258] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[259] = {.lex_state = 7},
[260] = {.lex_state = 7},
2023-11-30 14:30:25 +00:00
[261] = {.lex_state = 1},
[262] = {.lex_state = 1},
[263] = {.lex_state = 1},
[264] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[265] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[266] = {.lex_state = 1},
[267] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[268] = {.lex_state = 1},
[269] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[270] = {.lex_state = 1},
[271] = {.lex_state = 3},
[272] = {.lex_state = 3},
[273] = {.lex_state = 3},
[274] = {.lex_state = 3},
[275] = {.lex_state = 3},
2023-11-30 14:30:25 +00:00
[276] = {.lex_state = 1},
[277] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[278] = {.lex_state = 25},
2023-11-30 14:48:56 +00:00
[279] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[280] = {.lex_state = 25},
2023-11-30 14:30:25 +00:00
[281] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[282] = {.lex_state = 1},
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-11-30 16:05:09 +00:00
[285] = {.lex_state = 1},
[286] = {.lex_state = 1},
[287] = {.lex_state = 1},
[288] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[289] = {.lex_state = 7},
2023-11-30 16:05:09 +00:00
[290] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[291] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[292] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[293] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[294] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[295] = {.lex_state = 1},
[296] = {.lex_state = 1},
[297] = {.lex_state = 7},
[298] = {.lex_state = 7},
2023-11-30 16:05:09 +00:00
[299] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[300] = {.lex_state = 1},
[301] = {.lex_state = 1},
[302] = {.lex_state = 7},
[303] = {.lex_state = 7},
[304] = {.lex_state = 1},
[305] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[306] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[307] = {.lex_state = 7},
[308] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[309] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[310] = {.lex_state = 1},
[311] = {.lex_state = 1},
[312] = {.lex_state = 7},
[313] = {.lex_state = 7},
[314] = {.lex_state = 1},
[315] = {.lex_state = 1},
[316] = {.lex_state = 7},
[317] = {.lex_state = 7},
[318] = {.lex_state = 7},
[319] = {.lex_state = 1},
[320] = {.lex_state = 1},
[321] = {.lex_state = 1},
[322] = {.lex_state = 7},
[323] = {.lex_state = 7},
[324] = {.lex_state = 0},
[325] = {.lex_state = 0},
[326] = {.lex_state = 0},
[327] = {.lex_state = 0},
[328] = {.lex_state = 0},
[329] = {.lex_state = 0},
[330] = {.lex_state = 0},
[331] = {.lex_state = 0},
[332] = {.lex_state = 1},
[333] = {.lex_state = 0},
[334] = {.lex_state = 1},
[335] = {.lex_state = 0},
[336] = {.lex_state = 0},
[337] = {.lex_state = 1},
[338] = {.lex_state = 0},
[339] = {.lex_state = 25},
[340] = {.lex_state = 1},
[341] = {.lex_state = 0},
[342] = {.lex_state = 0},
[343] = {.lex_state = 1},
[344] = {.lex_state = 1},
[345] = {.lex_state = 0},
[346] = {.lex_state = 1},
[347] = {.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_PIPE] = 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),
[anon_sym_fn] = 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),
},
[1] = {
2023-12-02 03:54:25 +00:00
[sym_root] = STATE(324),
[sym_block] = STATE(212),
[sym_statement] = STATE(15),
[sym_expression] = STATE(69),
[sym_value] = STATE(50),
[sym_boolean] = STATE(58),
[sym_list] = STATE(58),
[sym_map] = STATE(58),
[sym_index] = STATE(43),
[sym_math] = STATE(50),
[sym_logic] = STATE(50),
[sym_assignment] = STATE(212),
[sym_index_assignment] = STATE(212),
[sym_if_else] = STATE(212),
[sym_if] = STATE(116),
[sym_match] = STATE(212),
[sym_while] = STATE(212),
[sym_for] = STATE(212),
[sym_return] = STATE(212),
[sym_use] = STATE(212),
[sym_type_definition] = STATE(342),
[sym_function] = STATE(58),
[sym_function_call] = STATE(50),
[sym_yield] = STATE(50),
[aux_sym_root_repeat1] = STATE(15),
[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-02 03:54:25 +00:00
[anon_sym_LT] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_match] = ACTIONS(25),
[anon_sym_while] = ACTIONS(27),
[anon_sym_for] = ACTIONS(29),
[anon_sym_asyncfor] = ACTIONS(31),
[anon_sym_return] = ACTIONS(33),
[anon_sym_use] = ACTIONS(35),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-12-02 03:54:25 +00:00
[0] = 26,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(39), 1,
sym_identifier,
ACTIONS(42), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(45), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(48), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(57), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(60), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(63), 1,
anon_sym_LT,
ACTIONS(66), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(69), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(72), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(75), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(78), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(81), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(84), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
ACTIONS(37), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(51), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(54), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(2), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 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-02 03:54:25 +00:00
[98] = 27,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(23), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(25), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(27), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(29), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(33), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(35), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(87), 1,
sym_identifier,
ACTIONS(89), 1,
anon_sym_RBRACE,
STATE(43), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-12-02 03:54:25 +00:00
STATE(295), 1,
aux_sym_map_repeat1,
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(5), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 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-02 03:54:25 +00:00
[198] = 27,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-30 14:30:25 +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-30 14:30:25 +00:00
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-11-30 14:30:25 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(35), 1,
2023-12-02 03:54:25 +00:00
anon_sym_use,
ACTIONS(87), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(91), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(309), 1,
2023-11-30 14:30:25 +00:00
aux_sym_map_repeat1,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(6), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[298] = 26,
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_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-11-28 22:54:17 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-11-28 22:54:17 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-11-28 22:54:17 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-11-28 22:54:17 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(93), 1,
anon_sym_RBRACE,
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[395] = 26,
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_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(23), 1,
2023-11-30 16:05:09 +00:00
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(25), 1,
2023-11-30 16:05:09 +00:00
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(27), 1,
2023-11-30 16:05:09 +00:00
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(29), 1,
2023-11-30 16:05:09 +00:00
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
2023-11-30 16:05:09 +00:00
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(35), 1,
2023-11-30 16:05:09 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(95), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
STATE(69), 1,
sym_expression,
STATE(116), 1,
sym_if,
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[492] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(97), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[589] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(99), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[686] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(101), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[783] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(103), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[880] = 26,
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,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(105), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[977] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(107), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1074] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(109), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1171] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(111), 1,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1268] = 26,
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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(113), 1,
ts_builtin_sym_end,
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(2), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1365] = 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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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-11-30 16:05:09 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1459] = 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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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-11-30 14:30:25 +00:00
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1553] = 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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[1647] = 25,
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_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
2023-11-30 16:05:09 +00:00
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(13), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 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-02 03:54:25 +00:00
[1741] = 25,
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_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
2023-11-30 16:05:09 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
2023-11-30 16:05:09 +00:00
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(11), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 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-02 03:54:25 +00:00
[1835] = 25,
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_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
2023-11-30 16:05:09 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
2023-11-30 16:05:09 +00:00
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
2023-11-30 16:05:09 +00:00
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-02 03:54:25 +00:00
STATE(14), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 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-02 03:54:25 +00:00
[1929] = 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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[2023] = 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_LT,
ACTIONS(23), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(6), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[2117] = 25,
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_LT,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_match,
ACTIONS(27), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(29), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
2023-11-30 14:30:25 +00:00
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(35), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
STATE(69), 1,
sym_expression,
STATE(116), 1,
sym_if,
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(8), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2211] = 25,
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_LT,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_match,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
STATE(43), 1,
sym_index,
STATE(69), 1,
sym_expression,
STATE(116), 1,
sym_if,
STATE(342), 1,
sym_type_definition,
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-02 03:54:25 +00:00
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(212), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2305] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(115), 1,
sym_identifier,
ACTIONS(117), 1,
anon_sym_async,
ACTIONS(119), 1,
anon_sym_LBRACE,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(131), 1,
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(133), 1,
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(135), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(137), 1,
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(139), 1,
anon_sym_asyncfor,
ACTIONS(141), 1,
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(143), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(148), 1,
sym_index,
STATE(219), 1,
sym_expression,
STATE(271), 1,
sym_if,
STATE(276), 1,
sym_statement,
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(285), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2398] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_match,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(33), 1,
anon_sym_return,
ACTIONS(35), 1,
anon_sym_use,
STATE(43), 1,
sym_index,
STATE(67), 1,
sym_expression,
STATE(116), 1,
sym_if,
STATE(213), 1,
sym_statement,
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2491] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(160), 1,
sym_math_operator,
STATE(161), 1,
sym_logic_operator,
ACTIONS(147), 16,
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-02 03:54:25 +00:00
ACTIONS(145), 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-02 03:54:25 +00:00
[2544] = 25,
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 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,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(23), 1,
2023-11-30 14:30:25 +00:00
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(25), 1,
2023-11-30 14:30:25 +00:00
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(27), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(29), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
2023-11-30 14:30:25 +00:00
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(35), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
STATE(67), 1,
sym_expression,
STATE(116), 1,
sym_if,
STATE(226), 1,
sym_statement,
STATE(342), 1,
sym_type_definition,
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,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2637] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(7), 1,
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(23), 1,
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(27), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(29), 1,
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(31), 1,
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(33), 1,
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(43), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(67), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(224), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[2730] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(115), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(117), 1,
anon_sym_async,
ACTIONS(119), 1,
anon_sym_LBRACE,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(131), 1,
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(133), 1,
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(135), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(137), 1,
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(139), 1,
anon_sym_asyncfor,
ACTIONS(141), 1,
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(143), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(148), 1,
sym_index,
STATE(214), 1,
sym_expression,
STATE(271), 1,
sym_if,
STATE(306), 1,
sym_statement,
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(287), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[2823] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(115), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(117), 1,
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(119), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(131), 1,
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(133), 1,
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(135), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(137), 1,
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(139), 1,
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(141), 1,
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(143), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(148), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(219), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(271), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(277), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(285), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[2916] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(115), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(117), 1,
anon_sym_async,
ACTIONS(119), 1,
anon_sym_LBRACE,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(131), 1,
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(133), 1,
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(135), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(137), 1,
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(139), 1,
anon_sym_asyncfor,
ACTIONS(141), 1,
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(143), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(148), 1,
sym_index,
STATE(214), 1,
sym_expression,
STATE(271), 1,
sym_if,
STATE(306), 1,
sym_statement,
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(287), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3009] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(115), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(117), 1,
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(119), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(131), 1,
anon_sym_if,
2023-12-02 03:54:25 +00:00
ACTIONS(133), 1,
anon_sym_match,
2023-12-02 03:54:25 +00:00
ACTIONS(135), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(137), 1,
anon_sym_for,
2023-12-02 03:54:25 +00:00
ACTIONS(139), 1,
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(141), 1,
anon_sym_return,
2023-12-02 03:54:25 +00:00
ACTIONS(143), 1,
anon_sym_use,
2023-12-02 03:54:25 +00:00
STATE(148), 1,
sym_index,
2023-12-02 03:54:25 +00:00
STATE(219), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(271), 1,
sym_if,
2023-12-02 03:54:25 +00:00
STATE(281), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
STATE(285), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 03:54:25 +00:00
[3102] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(153), 1,
anon_sym_DOT_DOT,
STATE(160), 1,
sym_math_operator,
STATE(161), 1,
sym_logic_operator,
ACTIONS(151), 16,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +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-02 03:54:25 +00:00
ACTIONS(149), 22,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
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,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[3157] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(159), 1,
anon_sym_COLON,
STATE(160), 1,
sym_math_operator,
STATE(161), 1,
sym_logic_operator,
ACTIONS(157), 16,
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,
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,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(155), 22,
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,
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-02 03:54:25 +00:00
[3212] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(160), 1,
sym_math_operator,
STATE(161), 1,
sym_logic_operator,
ACTIONS(151), 16,
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-02 03:54:25 +00:00
ACTIONS(149), 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,
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-02 03:54:25 +00:00
[3265] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(159), 1,
anon_sym_COLON,
ACTIONS(173), 1,
anon_sym_DASH_GT,
STATE(160), 1,
sym_math_operator,
STATE(161), 1,
sym_logic_operator,
ACTIONS(165), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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(161), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
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-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(163), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
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-02 03:54:25 +00:00
[3330] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(173), 1,
anon_sym_DASH_GT,
ACTIONS(175), 1,
anon_sym_COLON,
STATE(155), 1,
sym_logic_operator,
STATE(182), 1,
sym_math_operator,
ACTIONS(165), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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(161), 11,
ts_builtin_sym_end,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(163), 12,
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,
2023-12-02 03:54:25 +00:00
[3394] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(155), 1,
sym_logic_operator,
STATE(182), 1,
sym_math_operator,
ACTIONS(147), 16,
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-02 03:54:25 +00:00
ACTIONS(145), 22,
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_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-02 03:54:25 +00:00
[3446] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(175), 1,
anon_sym_COLON,
STATE(155), 1,
sym_logic_operator,
STATE(182), 1,
sym_math_operator,
ACTIONS(157), 16,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
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-02 03:54:25 +00:00
ACTIONS(155), 21,
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,
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-02 03:54:25 +00:00
[3500] = 8,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(181), 1,
anon_sym_EQ,
ACTIONS(183), 1,
anon_sym_LT,
STATE(30), 1,
sym_assignment_operator,
STATE(278), 1,
sym_type_definition,
ACTIONS(185), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(179), 14,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(177), 20,
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-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[3558] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(181), 1,
anon_sym_EQ,
STATE(27), 1,
sym_assignment_operator,
ACTIONS(185), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(179), 15,
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,
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-02 03:54:25 +00:00
ACTIONS(177), 20,
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 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 03:54:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3611] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(189), 16,
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,
ACTIONS(187), 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-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,
[3658] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(193), 16,
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-02 03:54:25 +00:00
ACTIONS(191), 23,
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,
[3705] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(197), 16,
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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
ACTIONS(195), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[3752] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(201), 16,
2023-11-30 14:30:25 +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 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-02 03:54:25 +00:00
ACTIONS(199), 23,
ts_builtin_sym_end,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +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,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3799] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(205), 16,
anon_sym_async,
2023-11-30 01:59:58 +00:00
sym_identifier,
sym_integer,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(203), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
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 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[3846] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(209), 16,
anon_sym_async,
2023-11-30 01:59:58 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(207), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
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 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[3893] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(179), 16,
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_EQ,
anon_sym_PLUS,
2023-11-30 16:05:09 +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,
ACTIONS(177), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[3940] = 22,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(121), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(171), 1,
anon_sym_GT,
ACTIONS(211), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(215), 1,
anon_sym_COLON,
ACTIONS(217), 1,
anon_sym_LT,
ACTIONS(219), 1,
anon_sym_DASH_GT,
STATE(71), 1,
2023-11-30 14:30:25 +00:00
aux_sym_match_repeat1,
2023-12-02 03:54:25 +00:00
STATE(157), 1,
sym_math_operator,
STATE(158), 1,
sym_logic_operator,
STATE(242), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(111), 4,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
ACTIONS(169), 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(109), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[4025] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(223), 16,
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-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-02 03:54:25 +00:00
ACTIONS(221), 23,
ts_builtin_sym_end,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_DOT_DOT,
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 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4072] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(227), 16,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
2023-11-30 01:59:58 +00:00
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,
ACTIONS(225), 23,
ts_builtin_sym_end,
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,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
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,
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,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4119] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(231), 16,
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-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,
ACTIONS(229), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
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,
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,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4166] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(235), 16,
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-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,
ACTIONS(233), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +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-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4213] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(239), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 14:30:25 +00:00
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,
ACTIONS(237), 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-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-12-02 03:54:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4260] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(243), 16,
2023-11-30 16:05:09 +00:00
anon_sym_async,
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-11-30 16:05:09 +00:00
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,
ACTIONS(241), 23,
ts_builtin_sym_end,
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
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +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-02 03:54:25 +00:00
[4307] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(247), 16,
2023-11-30 16:05:09 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
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,
ACTIONS(245), 23,
ts_builtin_sym_end,
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
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +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-11-30 16:05:09 +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-02 03:54:25 +00:00
[4354] = 8,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(183), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(249), 1,
anon_sym_EQ,
STATE(30), 1,
sym_assignment_operator,
STATE(278), 1,
sym_type_definition,
ACTIONS(185), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(179), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(177), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
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_asyncfor,
anon_sym_DASH_GT,
[4411] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(253), 16,
anon_sym_async,
2023-11-30 14:30:25 +00:00
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-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,
ACTIONS(251), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +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-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4458] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(257), 16,
2023-11-30 16:05:09 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
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,
ACTIONS(255), 23,
ts_builtin_sym_end,
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
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +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-11-30 16:05:09 +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-02 03:54:25 +00:00
[4505] = 22,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(121), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(165), 1,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 1,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(215), 1,
anon_sym_COLON,
ACTIONS(217), 1,
anon_sym_LT,
ACTIONS(219), 1,
anon_sym_DASH_GT,
STATE(117), 1,
aux_sym_match_repeat1,
STATE(157), 1,
sym_math_operator,
STATE(158), 1,
sym_logic_operator,
STATE(241), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(167), 4,
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,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(169), 6,
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
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4590] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(261), 16,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(259), 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,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4637] = 17,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(183), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
ACTIONS(277), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(127), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(179), 2,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(177), 12,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +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-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4711] = 17,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(183), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
ACTIONS(279), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(144), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(179), 2,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(269), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(177), 12,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
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-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4785] = 17,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(183), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
ACTIONS(281), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(143), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(179), 2,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(269), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(177), 12,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[4859] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(171), 1,
anon_sym_GT,
ACTIONS(173), 1,
anon_sym_DASH_GT,
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(155), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
STATE(182), 1,
sym_math_operator,
ACTIONS(167), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
ACTIONS(283), 9,
ts_builtin_sym_end,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
ACTIONS(285), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[4920] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(173), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(155), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
STATE(182), 1,
sym_math_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
ACTIONS(287), 9,
ts_builtin_sym_end,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(289), 11,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[4981] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 1,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(173), 1,
anon_sym_DASH_GT,
ACTIONS(175), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(291), 1,
anon_sym_SEMI,
STATE(155), 1,
sym_logic_operator,
STATE(182), 1,
sym_math_operator,
ACTIONS(167), 4,
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,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 6,
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
ACTIONS(283), 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(285), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[5044] = 16,
ACTIONS(3), 1,
sym__comment,
ACTIONS(295), 1,
sym_identifier,
ACTIONS(300), 1,
anon_sym_LBRACE,
ACTIONS(303), 1,
sym_integer,
ACTIONS(312), 1,
anon_sym_LBRACK,
ACTIONS(315), 1,
anon_sym_LPAREN,
ACTIONS(318), 1,
anon_sym_LT,
STATE(70), 1,
aux_sym_match_repeat1,
STATE(242), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(306), 2,
sym_float,
sym_string,
ACTIONS(309), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(293), 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(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(298), 7,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[5112] = 16,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(70), 1,
aux_sym_match_repeat1,
STATE(242), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(321), 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(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(323), 7,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[5180] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
sym_logic_operator,
ACTIONS(151), 7,
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-02 03:54:25 +00:00
ACTIONS(149), 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,
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-02 03:54:25 +00:00
[5222] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(325), 1,
anon_sym_DOT_DOT,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
sym_logic_operator,
ACTIONS(151), 7,
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-02 03:54:25 +00:00
ACTIONS(149), 20,
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-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-02 03:54:25 +00:00
[5266] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(327), 1,
anon_sym_COLON,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
sym_logic_operator,
ACTIONS(157), 7,
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-02 03:54:25 +00:00
ACTIONS(155), 20,
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-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-02 03:54:25 +00:00
[5310] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
sym_logic_operator,
ACTIONS(147), 7,
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-02 03:54:25 +00:00
ACTIONS(145), 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-02 03:54:25 +00:00
[5352] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(253), 7,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(251), 23,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-30 14:30:25 +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,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5390] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(243), 7,
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-02 03:54:25 +00:00
ACTIONS(241), 23,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
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-02 03:54:25 +00:00
[5428] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(219), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(327), 1,
anon_sym_COLON,
STATE(173), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
STATE(174), 1,
sym_logic_operator,
ACTIONS(171), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(163), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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-02 03:54:25 +00:00
ACTIONS(161), 9,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACK,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
[5482] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(215), 1,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(157), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
STATE(158), 1,
sym_logic_operator,
ACTIONS(157), 7,
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-02 03:54:25 +00:00
ACTIONS(155), 19,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
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,
[5525] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(215), 1,
anon_sym_COLON,
ACTIONS(219), 1,
anon_sym_DASH_GT,
STATE(157), 1,
sym_math_operator,
STATE(158), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(163), 4,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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-02 03:54:25 +00:00
ACTIONS(161), 8,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
[5578] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(157), 1,
sym_math_operator,
STATE(158), 1,
sym_logic_operator,
ACTIONS(147), 7,
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-02 03:54:25 +00:00
ACTIONS(145), 20,
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-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-02 03:54:25 +00:00
[5619] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(209), 7,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
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-02 03:54:25 +00:00
ACTIONS(207), 21,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5655] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(231), 7,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(229), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54: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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5691] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(201), 7,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
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-02 03:54:25 +00:00
ACTIONS(199), 21,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[5727] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(235), 7,
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-02 03:54:25 +00:00
ACTIONS(233), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5763] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 1,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(215), 1,
anon_sym_COLON,
ACTIONS(219), 1,
anon_sym_DASH_GT,
ACTIONS(333), 1,
anon_sym_COMMA,
STATE(157), 1,
sym_math_operator,
STATE(158), 1,
sym_logic_operator,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(329), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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(331), 6,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
[5817] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(215), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(219), 1,
anon_sym_DASH_GT,
ACTIONS(339), 1,
anon_sym_COMMA,
STATE(157), 1,
sym_math_operator,
STATE(158), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(335), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(169), 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-02 03:54:25 +00:00
ACTIONS(337), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
[5871] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(223), 7,
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-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(221), 21,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5907] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(261), 7,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
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
ACTIONS(259), 21,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5943] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(247), 7,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
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
ACTIONS(245), 21,
anon_sym_LBRACE,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 14:30:25 +00:00
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[5979] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(257), 7,
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-02 03:54:25 +00:00
ACTIONS(255), 21,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6015] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(189), 7,
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-02 03:54:25 +00:00
ACTIONS(187), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6051] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(239), 7,
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-02 03:54:25 +00:00
ACTIONS(237), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6087] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(227), 7,
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-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(225), 21,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54: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 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6123] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(193), 7,
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-02 03:54:25 +00:00
ACTIONS(191), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6159] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(197), 7,
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-02 03:54:25 +00:00
ACTIONS(195), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6195] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(205), 7,
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-02 03:54:25 +00:00
ACTIONS(203), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6231] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(179), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(177), 21,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +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,
[6267] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(201), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(199), 20,
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_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6302] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(189), 7,
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(187), 20,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6337] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(227), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
ACTIONS(225), 20,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6372] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(209), 7,
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(207), 20,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6407] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(261), 7,
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(259), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
anon_sym_RPAREN,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[6442] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(223), 7,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(221), 20,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6477] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(205), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(203), 20,
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_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6512] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(197), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(195), 20,
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_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6547] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(193), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(191), 20,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6582] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(235), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(233), 20,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6617] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(179), 7,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(177), 20,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6652] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(239), 7,
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(237), 20,
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,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6687] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(247), 7,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(245), 20,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6722] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(257), 7,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(255), 20,
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,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 14:30:25 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6757] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(231), 7,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(229), 20,
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,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6792] = 15,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(300), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(303), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(312), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(315), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(318), 1,
anon_sym_LT,
STATE(114), 1,
aux_sym_match_repeat1,
STATE(241), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(306), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(309), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(293), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(111), 4,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[6850] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(253), 6,
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_else,
ACTIONS(251), 20,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 14:30:25 +00:00
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,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[6884] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(345), 1,
anon_sym_elseif,
ACTIONS(347), 1,
anon_sym_else,
STATE(225), 1,
sym_else,
STATE(119), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(341), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
ACTIONS(343), 11,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-30 14:30:25 +00:00
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,
[6926] = 15,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(114), 1,
aux_sym_match_repeat1,
STATE(241), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(321), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(111), 4,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[6984] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(243), 6,
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_else,
ACTIONS(241), 20,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
2023-11-30 16:05:09 +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 03:54:25 +00:00
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7018] = 7,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(345), 1,
anon_sym_elseif,
ACTIONS(347), 1,
anon_sym_else,
STATE(222), 1,
sym_else,
STATE(122), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(349), 10,
ts_builtin_sym_end,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
ACTIONS(351), 11,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
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,
[7060] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(200), 1,
sym_math_operator,
STATE(201), 1,
sym_logic_operator,
ACTIONS(147), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(145), 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,
[7097] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(353), 1,
anon_sym_DOT_DOT,
STATE(200), 1,
sym_math_operator,
STATE(201), 1,
sym_logic_operator,
ACTIONS(151), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(149), 17,
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_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[7136] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 1,
anon_sym_elseif,
STATE(122), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(355), 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_LT,
anon_sym_asyncfor,
ACTIONS(357), 12,
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,
[7173] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
anon_sym_EQ,
ACTIONS(362), 1,
anon_sym_COLON,
ACTIONS(364), 1,
anon_sym_DASH_GT,
STATE(200), 1,
sym_math_operator,
STATE(201), 1,
sym_logic_operator,
ACTIONS(165), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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(161), 7,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[7222] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(362), 1,
anon_sym_COLON,
STATE(200), 1,
sym_math_operator,
STATE(201), 1,
sym_logic_operator,
ACTIONS(157), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(155), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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,
[7261] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(200), 1,
sym_math_operator,
STATE(201), 1,
sym_logic_operator,
ACTIONS(151), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(149), 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,
[7298] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(366), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
STATE(87), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(134), 1,
2023-11-30 16:05:09 +00:00
aux_sym__expression_list,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7354] = 15,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(368), 1,
anon_sym_RPAREN,
STATE(87), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(134), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7410] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(370), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
STATE(87), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(140), 1,
2023-11-30 14:30:25 +00:00
aux_sym__expression_list,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7466] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(189), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
STATE(190), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(147), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(145), 17,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
anon_sym_COMMA,
sym_identifier,
2023-12-02 03:54:25 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[7502] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(163), 1,
anon_sym_EQ,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(372), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(190), 1,
sym_logic_operator,
ACTIONS(165), 2,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 3,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(161), 6,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(169), 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-02 03:54:25 +00:00
[7550] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(374), 1,
anon_sym_RPAREN,
STATE(87), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(133), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7606] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(376), 1,
anon_sym_RBRACK,
STATE(86), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(139), 1,
aux_sym_list_repeat1,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7662] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(263), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(378), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
STATE(87), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
STATE(134), 1,
aux_sym__expression_list,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7718] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(380), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(383), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(386), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(395), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(398), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(401), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(403), 1,
anon_sym_LT,
STATE(87), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(134), 1,
2023-11-30 16:05:09 +00:00
aux_sym__expression_list,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(389), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(392), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7774] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(406), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
STATE(86), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(141), 1,
2023-11-30 16:05:09 +00:00
aux_sym_list_repeat1,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[7830] = 8,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(181), 1,
anon_sym_EQ,
ACTIONS(183), 1,
anon_sym_LT,
STATE(26), 1,
sym_assignment_operator,
STATE(280), 1,
sym_type_definition,
ACTIONS(185), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(179), 3,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
ACTIONS(177), 15,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
[7872] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
ACTIONS(408), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(145), 1,
aux_sym_list_repeat1,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7928] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(372), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(189), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
STATE(190), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(157), 5,
anon_sym_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(155), 16,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
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 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[7966] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(410), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(145), 1,
aux_sym_list_repeat1,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8022] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(412), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(134), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8078] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(414), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(145), 1,
aux_sym_list_repeat1,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8134] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(416), 1,
anon_sym_RBRACK,
STATE(86), 1,
sym_expression,
STATE(137), 1,
aux_sym_list_repeat1,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8190] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(418), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(134), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8246] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
ACTIONS(420), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(134), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8302] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(422), 1,
sym_identifier,
ACTIONS(425), 1,
anon_sym_LBRACE,
ACTIONS(428), 1,
sym_integer,
ACTIONS(437), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(440), 1,
anon_sym_RBRACK,
ACTIONS(442), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(445), 1,
anon_sym_LT,
STATE(86), 1,
sym_expression,
STATE(145), 1,
aux_sym_list_repeat1,
STATE(335), 1,
sym_type_definition,
ACTIONS(431), 2,
sym_float,
sym_string,
ACTIONS(434), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8358] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
ACTIONS(448), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(126), 1,
aux_sym__expression_list,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8414] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(251), 11,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(253), 12,
2023-11-30 16:05:09 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
2023-12-02 03:54:25 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
[8445] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(181), 1,
anon_sym_EQ,
STATE(34), 1,
sym_assignment_operator,
ACTIONS(185), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(179), 4,
anon_sym_PLUS,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(177), 15,
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 03:54:25 +00:00
anon_sym_DASH_GT,
[8482] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(243), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(241), 18,
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,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[8513] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(253), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(251), 18,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_COLON,
2023-12-02 03:54:25 +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-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[8544] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(450), 11,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(452), 12,
2023-11-30 16:05:09 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
2023-12-02 03:54:25 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
[8575] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(241), 11,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(243), 12,
2023-11-30 16:05:09 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
2023-12-02 03:54:25 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
[8606] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(454), 11,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
anon_sym_elseif,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
ACTIONS(456), 12,
2023-11-30 01:59:58 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
2023-12-02 03:54:25 +00:00
anon_sym_else,
2023-11-30 14:30:25 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 03:54:25 +00:00
[8637] = 13,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(236), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8687] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(39), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[8737] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(73), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[8787] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(79), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[8837] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(80), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[8887] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(233), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[8937] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(36), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[8987] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
2023-11-30 01:59:58 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(38), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9037] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(230), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9087] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(243), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9137] = 13,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(244), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9187] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(177), 1,
sym_math_operator,
STATE(178), 1,
sym_logic_operator,
ACTIONS(151), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(149), 17,
anon_sym_async,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
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_EQ_GT,
anon_sym_DASH_GT,
[9221] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(165), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9271] = 13,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(62), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9321] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(238), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9371] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(37), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9421] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(232), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9471] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(231), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9521] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
anon_sym_LBRACE,
ACTIONS(462), 1,
sym_identifier,
STATE(246), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9571] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(74), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9621] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(265), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(78), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9671] = 6,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(464), 1,
anon_sym_COLON,
STATE(177), 1,
sym_math_operator,
STATE(178), 1,
sym_logic_operator,
ACTIONS(157), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(155), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
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_EQ_GT,
anon_sym_DASH_GT,
[9707] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(217), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9757] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(175), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9807] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(193), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9857] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(273), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(275), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
STATE(81), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9907] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(228), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[9957] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(234), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10007] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(41), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10057] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(177), 1,
sym_math_operator,
STATE(178), 1,
sym_logic_operator,
ACTIONS(147), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(145), 17,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
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_EQ_GT,
anon_sym_DASH_GT,
[10091] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(466), 1,
sym_identifier,
STATE(247), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
2023-11-30 01:59:58 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10141] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(35), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10191] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(239), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10241] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(240), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10291] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(121), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10341] = 13,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(138), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10391] = 13,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(130), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +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,
STATE(109), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10441] = 13,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(218), 1,
sym_expression,
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10491] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
STATE(72), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(271), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(90), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10541] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(464), 1,
anon_sym_COLON,
STATE(177), 1,
sym_math_operator,
STATE(178), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(161), 5,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_EQ_GT,
ACTIONS(169), 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,
[10585] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(129), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10635] = 13,
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-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(40), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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-02 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(50), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10685] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(125), 1,
sym_expression,
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10735] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(204), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10785] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(215), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10835] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(216), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10885] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(124), 1,
sym_expression,
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(109), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10935] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(123), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(330), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10985] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
2023-11-28 22:54:17 +00:00
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-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(458), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(460), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(68), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(342), 1,
sym_type_definition,
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 03:54:25 +00:00
STATE(58), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(50), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[11035] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(129), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
ACTIONS(211), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(213), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(229), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
2023-12-02 03:54:25 +00:00
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[11085] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(468), 1,
anon_sym_DOT_DOT,
STATE(177), 1,
sym_math_operator,
STATE(178), 1,
sym_logic_operator,
ACTIONS(151), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(149), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
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_EQ_GT,
anon_sym_DASH_GT,
[11121] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_LBRACE,
ACTIONS(267), 1,
sym_integer,
ACTIONS(273), 1,
anon_sym_LBRACK,
ACTIONS(275), 1,
anon_sym_LPAREN,
STATE(51), 1,
sym_expression,
STATE(335), 1,
sym_type_definition,
ACTIONS(269), 2,
sym_float,
sym_string,
ACTIONS(271), 2,
anon_sym_true,
anon_sym_false,
STATE(90), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(98), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11171] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
anon_sym_LBRACE,
STATE(227), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11221] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(129), 1,
anon_sym_LPAREN,
ACTIONS(213), 1,
anon_sym_LBRACE,
ACTIONS(470), 1,
sym_identifier,
STATE(245), 1,
sym_expression,
STATE(327), 1,
sym_type_definition,
ACTIONS(123), 2,
sym_float,
sym_string,
ACTIONS(125), 2,
anon_sym_true,
anon_sym_false,
STATE(111), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(109), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11271] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(472), 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_LT,
anon_sym_asyncfor,
ACTIONS(474), 11,
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,
[11300] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(476), 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_LT,
anon_sym_asyncfor,
ACTIONS(478), 11,
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,
[11329] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(480), 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_LT,
anon_sym_asyncfor,
ACTIONS(482), 11,
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,
[11358] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(484), 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_LT,
anon_sym_asyncfor,
ACTIONS(486), 11,
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,
[11387] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(291), 1,
anon_sym_SEMI,
ACTIONS(283), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
ACTIONS(285), 11,
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,
[11418] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 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_LT,
anon_sym_asyncfor,
ACTIONS(490), 11,
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,
[11447] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(372), 1,
anon_sym_COLON,
ACTIONS(492), 1,
anon_sym_SEMI,
STATE(189), 1,
sym_math_operator,
STATE(190), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(283), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[11492] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(494), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(157), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(155), 15,
anon_sym_async,
anon_sym_LBRACE,
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_EQ_GT,
anon_sym_DASH_GT,
[11527] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(161), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_RPAREN,
anon_sym_EQ_GT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[11570] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(147), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(145), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
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_EQ_GT,
anon_sym_DASH_GT,
[11603] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(372), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(190), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(287), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(169), 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,
[11646] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(372), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(190), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(283), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(169), 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,
[11689] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(496), 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_LT,
anon_sym_asyncfor,
ACTIONS(498), 11,
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,
[11718] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(500), 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_LT,
anon_sym_asyncfor,
ACTIONS(502), 11,
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,
[11747] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(504), 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_LT,
anon_sym_asyncfor,
ACTIONS(506), 11,
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,
[11776] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(283), 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_LT,
anon_sym_asyncfor,
ACTIONS(285), 11,
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,
[11805] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(508), 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_LT,
anon_sym_asyncfor,
ACTIONS(510), 11,
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,
[11834] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(349), 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_LT,
anon_sym_asyncfor,
ACTIONS(351), 11,
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,
[11863] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(512), 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_LT,
anon_sym_asyncfor,
ACTIONS(514), 11,
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,
[11892] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(151), 1,
sym_block,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[11938] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(153), 1,
sym_block,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[11984] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(208), 1,
sym_block,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[12030] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(524), 1,
anon_sym_async,
ACTIONS(526), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(275), 1,
sym_block,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[12076] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(528), 1,
anon_sym_async,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(288), 1,
sym_block,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[12122] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(524), 1,
anon_sym_async,
ACTIONS(526), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(274), 1,
sym_block,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[12168] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(220), 1,
sym_block,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[12214] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
anon_sym_COLON,
ACTIONS(528), 1,
anon_sym_async,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(279), 1,
sym_block,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(169), 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,
[12260] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(538), 1,
anon_sym_fn,
STATE(323), 1,
sym_type,
ACTIONS(532), 4,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(534), 6,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
ACTIONS(536), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12293] = 10,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(364), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(540), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
STATE(198), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12333] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(544), 7,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
ACTIONS(542), 11,
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,
[12359] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(546), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(157), 3,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(155), 11,
2023-11-30 16:05:09 +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,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
[12393] = 7,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(548), 1,
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(157), 3,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(155), 11,
2023-11-30 16:05:09 +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 03:54:25 +00:00
anon_sym_DASH_GT,
[12427] = 10,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(364), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(550), 1,
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12467] = 10,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(364), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(552), 1,
anon_sym_EQ_GT,
2023-11-30 16:05:09 +00:00
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12507] = 10,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(554), 1,
anon_sym_EQ_GT,
2023-11-30 16:05:09 +00:00
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12547] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(556), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
STATE(198), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(157), 3,
anon_sym_DASH,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(155), 11,
2023-11-30 14:48:56 +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 03:54:25 +00:00
anon_sym_DASH_GT,
[12581] = 10,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_DASH_GT,
ACTIONS(494), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
ACTIONS(558), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
STATE(198), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12621] = 9,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(364), 1,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(154), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-12-02 03:54:25 +00:00
STATE(168), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12658] = 9,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(364), 1,
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(163), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(171), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12695] = 9,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(165), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-02 03:54:25 +00:00
ACTIONS(364), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(494), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
STATE(186), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 03:54:25 +00:00
STATE(187), 1,
sym_logic_operator,
ACTIONS(171), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
ACTIONS(167), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 03:54:25 +00:00
ACTIONS(169), 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-02 03:54:25 +00:00
[12732] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(566), 1,
2023-11-30 14:48:56 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
ACTIONS(568), 1,
anon_sym_DASH_GT,
STATE(249), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 03:54:25 +00:00
STATE(257), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(560), 3,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[12765] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(566), 1,
2023-11-30 14:48:56 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
ACTIONS(572), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
STATE(250), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 03:54:25 +00:00
STATE(257), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(570), 3,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[12798] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(576), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(582), 1,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(250), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 03:54:25 +00:00
STATE(257), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(574), 4,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
ACTIONS(579), 7,
2023-11-30 01:59:58 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[12829] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(576), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(582), 1,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(251), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 03:54:25 +00:00
STATE(259), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(574), 3,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(579), 7,
2023-11-30 01:59:58 +00:00
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 01:59:58 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[12859] = 8,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(566), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
ACTIONS(585), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
STATE(251), 1,
2023-11-30 00:23:42 +00:00
aux_sym_type_repeat1,
2023-12-02 03:54:25 +00:00
STATE(259), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(570), 2,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[12891] = 8,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(566), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
ACTIONS(587), 1,
2023-11-30 14:48:56 +00:00
anon_sym_DASH_GT,
2023-12-02 03:54:25 +00:00
STATE(252), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 03:54:25 +00:00
STATE(259), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(560), 2,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[12923] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(574), 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-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 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[12942] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(560), 13,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_LBRACK,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
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 01:59:58 +00:00
anon_sym_fn,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[12961] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(589), 13,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_LBRACK,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
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_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[12980] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(591), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
ACTIONS(594), 12,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
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_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[13001] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(482), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(480), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
[13022] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(596), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
ACTIONS(594), 12,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
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_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[13043] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(598), 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-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_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-12-02 03:54:25 +00:00
[13062] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(600), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(401), 7,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
anon_sym_LT,
[13081] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(602), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(440), 7,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
[13100] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(566), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(256), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[13122] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(604), 1,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(341), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[13144] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(566), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(260), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[13166] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(604), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(260), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[13188] = 5,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(604), 1,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(323), 1,
2023-11-30 16:05:09 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 7,
2023-11-30 16:05:09 +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-02 03:54:25 +00:00
[13210] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(562), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 03:54:25 +00:00
ACTIONS(604), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 03:54:25 +00:00
STATE(256), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-02 03:54:25 +00:00
ACTIONS(564), 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-02 03:54:25 +00:00
[13232] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(606), 4,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(608), 6,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
[13250] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(532), 4,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
ACTIONS(534), 6,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
[13268] = 7,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(343), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(610), 1,
2023-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-12-02 03:54:25 +00:00
ACTIONS(612), 1,
2023-11-30 14:30:25 +00:00
anon_sym_else,
2023-12-02 03:54:25 +00:00
STATE(284), 1,
2023-11-30 14:30:25 +00:00
sym_else,
2023-12-02 03:54:25 +00:00
STATE(272), 2,
2023-11-30 14:30:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-02 03:54:25 +00:00
ACTIONS(341), 3,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
[13293] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(351), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(610), 1,
anon_sym_elseif,
ACTIONS(612), 1,
2023-11-30 01:59:58 +00:00
anon_sym_else,
2023-12-02 03:54:25 +00:00
STATE(283), 1,
sym_else,
STATE(273), 2,
2023-11-30 01:59:58 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-02 03:54:25 +00:00
ACTIONS(349), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
[13318] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(614), 1,
anon_sym_elseif,
2023-12-02 03:54:25 +00:00
ACTIONS(357), 2,
2023-11-30 14:30:25 +00:00
sym_identifier,
anon_sym_else,
2023-12-02 03:54:25 +00:00
STATE(273), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(355), 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-02 03:54:25 +00:00
[13338] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(452), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_else,
2023-12-02 03:54:25 +00:00
ACTIONS(450), 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-02 03:54:25 +00:00
[13352] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(456), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_else,
2023-12-02 03:54:25 +00:00
ACTIONS(454), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
anon_sym_elseif,
2023-12-02 03:54:25 +00:00
[13366] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(508), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 03:54:25 +00:00
[13376] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(512), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 03:54:25 +00:00
[13386] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(29), 1,
sym_assignment_operator,
ACTIONS(185), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13398] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(472), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 03:54:25 +00:00
[13408] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
STATE(32), 1,
sym_assignment_operator,
ACTIONS(185), 3,
2023-11-30 14:48:56 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
[13420] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(488), 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-02 03:54:25 +00:00
[13430] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(476), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 03:54:25 +00:00
[13440] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(504), 4,
anon_sym_RBRACE,
2023-11-28 22:54:17 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
[13450] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(349), 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-02 03:54:25 +00:00
[13460] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(283), 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-02 03:54:25 +00:00
[13470] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(484), 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-02 03:54:25 +00:00
[13480] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(492), 1,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
ACTIONS(283), 3,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_identifier,
2023-12-02 03:54:25 +00:00
[13492] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(496), 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-02 03:54:25 +00:00
[13502] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(617), 4,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_PIPE,
[13512] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(500), 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-02 03:54:25 +00:00
[13522] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(524), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(526), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(103), 1,
sym_block,
2023-12-02 03:54:25 +00:00
[13535] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(528), 1,
anon_sym_async,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(258), 1,
sym_block,
[13548] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(619), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(621), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(300), 1,
2023-11-30 00:23:42 +00:00
aux_sym_map_repeat1,
2023-12-02 03:54:25 +00:00
[13561] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(91), 1,
anon_sym_RBRACE,
ACTIONS(619), 1,
sym_identifier,
2023-12-02 03:54:25 +00:00
STATE(309), 1,
aux_sym_map_repeat1,
[13574] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(619), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(623), 1,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(300), 1,
2023-11-30 01:59:58 +00:00
aux_sym_map_repeat1,
2023-12-02 03:54:25 +00:00
[13587] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(528), 1,
2023-11-30 16:05:09 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(530), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(282), 1,
2023-11-30 16:05:09 +00:00
sym_block,
2023-12-02 03:54:25 +00:00
[13600] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(625), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(627), 1,
2023-11-30 14:48:56 +00:00
anon_sym_PIPE,
2023-12-02 03:54:25 +00:00
STATE(318), 1,
2023-11-30 14:48:56 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 03:54:25 +00:00
[13613] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(631), 1,
anon_sym_COMMA,
ACTIONS(629), 2,
sym_identifier,
anon_sym_PIPE,
[13624] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(520), 1,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(522), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(49), 1,
2023-11-30 14:30:25 +00:00
sym_block,
2023-12-02 03:54:25 +00:00
[13637] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(633), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(636), 1,
anon_sym_RBRACE,
STATE(300), 1,
aux_sym_map_repeat1,
[13650] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(89), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(619), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
STATE(295), 1,
2023-11-30 16:05:09 +00:00
aux_sym_map_repeat1,
2023-12-02 03:54:25 +00:00
[13663] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(625), 1,
sym_identifier,
ACTIONS(638), 1,
anon_sym_PIPE,
STATE(303), 1,
aux_sym_identifier_list_repeat1,
[13676] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(625), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(640), 1,
2023-11-30 16:05:09 +00:00
anon_sym_PIPE,
2023-12-02 03:54:25 +00:00
STATE(318), 1,
2023-11-30 16:05:09 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 03:54:25 +00:00
[13689] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(520), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(522), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(209), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-12-02 03:54:25 +00:00
[13702] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(619), 1,
sym_identifier,
ACTIONS(642), 1,
anon_sym_RBRACE,
STATE(293), 1,
aux_sym_map_repeat1,
[13715] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(646), 1,
anon_sym_COMMA,
ACTIONS(644), 2,
anon_sym_RBRACE,
sym_identifier,
[13726] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(625), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(648), 1,
anon_sym_PIPE,
2023-12-02 03:54:25 +00:00
STATE(312), 1,
2023-11-30 14:48:56 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 03:54:25 +00:00
[13739] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(524), 1,
anon_sym_async,
ACTIONS(526), 1,
anon_sym_LBRACE,
STATE(102), 1,
sym_block,
[13752] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(619), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(650), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
STATE(300), 1,
2023-11-30 16:05:09 +00:00
aux_sym_map_repeat1,
2023-12-02 03:54:25 +00:00
[13765] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(520), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(522), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(210), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-02 03:54:25 +00:00
[13778] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(528), 1,
anon_sym_async,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(82), 1,
sym_block,
[13791] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(625), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(652), 1,
anon_sym_PIPE,
STATE(318), 1,
aux_sym_identifier_list_repeat1,
[13804] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(625), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(654), 1,
anon_sym_PIPE,
STATE(297), 1,
aux_sym_identifier_list_repeat1,
[13817] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(528), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(89), 1,
sym_block,
[13830] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(63), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-02 03:54:25 +00:00
[13843] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(625), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
ACTIONS(656), 1,
2023-11-30 16:05:09 +00:00
anon_sym_PIPE,
2023-12-02 03:54:25 +00:00
STATE(318), 1,
aux_sym_identifier_list_repeat1,
[13856] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(625), 1,
sym_identifier,
ACTIONS(658), 1,
anon_sym_PIPE,
STATE(316), 1,
aux_sym_identifier_list_repeat1,
[13869] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(660), 1,
sym_identifier,
ACTIONS(663), 1,
anon_sym_PIPE,
STATE(318), 1,
2023-11-30 16:05:09 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 03:54:25 +00:00
[13882] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(665), 1,
2023-11-30 16:05:09 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
ACTIONS(667), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
STATE(103), 1,
2023-11-30 16:05:09 +00:00
sym_block,
2023-12-02 03:54:25 +00:00
[13895] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(665), 1,
anon_sym_async,
ACTIONS(667), 1,
anon_sym_LBRACE,
STATE(102), 1,
sym_block,
[13908] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(669), 2,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
sym_identifier,
2023-12-02 03:54:25 +00:00
[13916] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 2,
sym_identifier,
anon_sym_PIPE,
[13924] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
anon_sym_GT,
[13931] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(673), 1,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
[13938] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(675), 1,
anon_sym_LBRACE,
[13945] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(677), 1,
anon_sym_LBRACE,
[13952] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(679), 1,
anon_sym_PIPE,
[13959] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(681), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
[13966] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(683), 1,
anon_sym_LBRACE,
[13973] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(685), 1,
anon_sym_PIPE,
[13980] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(687), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
[13987] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(689), 1,
sym_identifier,
[13994] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(691), 1,
anon_sym_LPAREN,
[14001] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(693), 1,
anon_sym_in,
[14008] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(695), 1,
anon_sym_PIPE,
[14015] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(697), 1,
anon_sym_LBRACE,
[14022] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(699), 1,
2023-11-30 16:05:09 +00:00
anon_sym_in,
2023-12-02 03:54:25 +00:00
[14029] = 2,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(701), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
[14036] = 2,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(703), 1,
anon_sym_EQ,
[14043] = 2,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(705), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
[14050] = 2,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(707), 1,
anon_sym_RBRACK,
[14057] = 2,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(709), 1,
anon_sym_PIPE,
[14064] = 2,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(711), 1,
sym_identifier,
[14071] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(713), 1,
sym_identifier,
[14078] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(715), 1,
sym_string,
[14085] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(717), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
[14092] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(719), 1,
sym_string,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-12-02 03:54:25 +00:00
[SMALL_STATE(3)] = 98,
[SMALL_STATE(4)] = 198,
[SMALL_STATE(5)] = 298,
[SMALL_STATE(6)] = 395,
[SMALL_STATE(7)] = 492,
[SMALL_STATE(8)] = 589,
[SMALL_STATE(9)] = 686,
[SMALL_STATE(10)] = 783,
[SMALL_STATE(11)] = 880,
[SMALL_STATE(12)] = 977,
[SMALL_STATE(13)] = 1074,
[SMALL_STATE(14)] = 1171,
[SMALL_STATE(15)] = 1268,
[SMALL_STATE(16)] = 1365,
[SMALL_STATE(17)] = 1459,
[SMALL_STATE(18)] = 1553,
[SMALL_STATE(19)] = 1647,
[SMALL_STATE(20)] = 1741,
[SMALL_STATE(21)] = 1835,
[SMALL_STATE(22)] = 1929,
[SMALL_STATE(23)] = 2023,
[SMALL_STATE(24)] = 2117,
[SMALL_STATE(25)] = 2211,
[SMALL_STATE(26)] = 2305,
[SMALL_STATE(27)] = 2398,
[SMALL_STATE(28)] = 2491,
[SMALL_STATE(29)] = 2544,
[SMALL_STATE(30)] = 2637,
[SMALL_STATE(31)] = 2730,
[SMALL_STATE(32)] = 2823,
[SMALL_STATE(33)] = 2916,
[SMALL_STATE(34)] = 3009,
[SMALL_STATE(35)] = 3102,
[SMALL_STATE(36)] = 3157,
[SMALL_STATE(37)] = 3212,
[SMALL_STATE(38)] = 3265,
[SMALL_STATE(39)] = 3330,
[SMALL_STATE(40)] = 3394,
[SMALL_STATE(41)] = 3446,
[SMALL_STATE(42)] = 3500,
[SMALL_STATE(43)] = 3558,
[SMALL_STATE(44)] = 3611,
[SMALL_STATE(45)] = 3658,
[SMALL_STATE(46)] = 3705,
[SMALL_STATE(47)] = 3752,
[SMALL_STATE(48)] = 3799,
[SMALL_STATE(49)] = 3846,
[SMALL_STATE(50)] = 3893,
[SMALL_STATE(51)] = 3940,
[SMALL_STATE(52)] = 4025,
[SMALL_STATE(53)] = 4072,
[SMALL_STATE(54)] = 4119,
[SMALL_STATE(55)] = 4166,
[SMALL_STATE(56)] = 4213,
[SMALL_STATE(57)] = 4260,
[SMALL_STATE(58)] = 4307,
[SMALL_STATE(59)] = 4354,
[SMALL_STATE(60)] = 4411,
[SMALL_STATE(61)] = 4458,
[SMALL_STATE(62)] = 4505,
[SMALL_STATE(63)] = 4590,
[SMALL_STATE(64)] = 4637,
[SMALL_STATE(65)] = 4711,
[SMALL_STATE(66)] = 4785,
[SMALL_STATE(67)] = 4859,
[SMALL_STATE(68)] = 4920,
[SMALL_STATE(69)] = 4981,
[SMALL_STATE(70)] = 5044,
[SMALL_STATE(71)] = 5112,
[SMALL_STATE(72)] = 5180,
[SMALL_STATE(73)] = 5222,
[SMALL_STATE(74)] = 5266,
[SMALL_STATE(75)] = 5310,
[SMALL_STATE(76)] = 5352,
[SMALL_STATE(77)] = 5390,
[SMALL_STATE(78)] = 5428,
[SMALL_STATE(79)] = 5482,
[SMALL_STATE(80)] = 5525,
[SMALL_STATE(81)] = 5578,
[SMALL_STATE(82)] = 5619,
[SMALL_STATE(83)] = 5655,
[SMALL_STATE(84)] = 5691,
[SMALL_STATE(85)] = 5727,
[SMALL_STATE(86)] = 5763,
[SMALL_STATE(87)] = 5817,
[SMALL_STATE(88)] = 5871,
[SMALL_STATE(89)] = 5907,
[SMALL_STATE(90)] = 5943,
[SMALL_STATE(91)] = 5979,
[SMALL_STATE(92)] = 6015,
[SMALL_STATE(93)] = 6051,
[SMALL_STATE(94)] = 6087,
[SMALL_STATE(95)] = 6123,
[SMALL_STATE(96)] = 6159,
[SMALL_STATE(97)] = 6195,
[SMALL_STATE(98)] = 6231,
[SMALL_STATE(99)] = 6267,
[SMALL_STATE(100)] = 6302,
[SMALL_STATE(101)] = 6337,
[SMALL_STATE(102)] = 6372,
[SMALL_STATE(103)] = 6407,
[SMALL_STATE(104)] = 6442,
[SMALL_STATE(105)] = 6477,
[SMALL_STATE(106)] = 6512,
[SMALL_STATE(107)] = 6547,
[SMALL_STATE(108)] = 6582,
[SMALL_STATE(109)] = 6617,
[SMALL_STATE(110)] = 6652,
[SMALL_STATE(111)] = 6687,
[SMALL_STATE(112)] = 6722,
[SMALL_STATE(113)] = 6757,
[SMALL_STATE(114)] = 6792,
[SMALL_STATE(115)] = 6850,
[SMALL_STATE(116)] = 6884,
[SMALL_STATE(117)] = 6926,
[SMALL_STATE(118)] = 6984,
[SMALL_STATE(119)] = 7018,
[SMALL_STATE(120)] = 7060,
[SMALL_STATE(121)] = 7097,
[SMALL_STATE(122)] = 7136,
[SMALL_STATE(123)] = 7173,
[SMALL_STATE(124)] = 7222,
[SMALL_STATE(125)] = 7261,
[SMALL_STATE(126)] = 7298,
[SMALL_STATE(127)] = 7354,
[SMALL_STATE(128)] = 7410,
[SMALL_STATE(129)] = 7466,
[SMALL_STATE(130)] = 7502,
[SMALL_STATE(131)] = 7550,
[SMALL_STATE(132)] = 7606,
[SMALL_STATE(133)] = 7662,
[SMALL_STATE(134)] = 7718,
[SMALL_STATE(135)] = 7774,
[SMALL_STATE(136)] = 7830,
[SMALL_STATE(137)] = 7872,
[SMALL_STATE(138)] = 7928,
[SMALL_STATE(139)] = 7966,
[SMALL_STATE(140)] = 8022,
[SMALL_STATE(141)] = 8078,
[SMALL_STATE(142)] = 8134,
[SMALL_STATE(143)] = 8190,
[SMALL_STATE(144)] = 8246,
[SMALL_STATE(145)] = 8302,
[SMALL_STATE(146)] = 8358,
[SMALL_STATE(147)] = 8414,
[SMALL_STATE(148)] = 8445,
[SMALL_STATE(149)] = 8482,
[SMALL_STATE(150)] = 8513,
[SMALL_STATE(151)] = 8544,
[SMALL_STATE(152)] = 8575,
[SMALL_STATE(153)] = 8606,
[SMALL_STATE(154)] = 8637,
[SMALL_STATE(155)] = 8687,
[SMALL_STATE(156)] = 8737,
[SMALL_STATE(157)] = 8787,
[SMALL_STATE(158)] = 8837,
[SMALL_STATE(159)] = 8887,
[SMALL_STATE(160)] = 8937,
[SMALL_STATE(161)] = 8987,
[SMALL_STATE(162)] = 9037,
[SMALL_STATE(163)] = 9087,
[SMALL_STATE(164)] = 9137,
[SMALL_STATE(165)] = 9187,
[SMALL_STATE(166)] = 9221,
[SMALL_STATE(167)] = 9271,
[SMALL_STATE(168)] = 9321,
[SMALL_STATE(169)] = 9371,
[SMALL_STATE(170)] = 9421,
[SMALL_STATE(171)] = 9471,
[SMALL_STATE(172)] = 9521,
[SMALL_STATE(173)] = 9571,
[SMALL_STATE(174)] = 9621,
[SMALL_STATE(175)] = 9671,
[SMALL_STATE(176)] = 9707,
[SMALL_STATE(177)] = 9757,
[SMALL_STATE(178)] = 9807,
[SMALL_STATE(179)] = 9857,
[SMALL_STATE(180)] = 9907,
[SMALL_STATE(181)] = 9957,
[SMALL_STATE(182)] = 10007,
[SMALL_STATE(183)] = 10057,
[SMALL_STATE(184)] = 10091,
[SMALL_STATE(185)] = 10141,
[SMALL_STATE(186)] = 10191,
[SMALL_STATE(187)] = 10241,
[SMALL_STATE(188)] = 10291,
[SMALL_STATE(189)] = 10341,
[SMALL_STATE(190)] = 10391,
[SMALL_STATE(191)] = 10441,
[SMALL_STATE(192)] = 10491,
[SMALL_STATE(193)] = 10541,
[SMALL_STATE(194)] = 10585,
[SMALL_STATE(195)] = 10635,
[SMALL_STATE(196)] = 10685,
[SMALL_STATE(197)] = 10735,
[SMALL_STATE(198)] = 10785,
[SMALL_STATE(199)] = 10835,
[SMALL_STATE(200)] = 10885,
[SMALL_STATE(201)] = 10935,
[SMALL_STATE(202)] = 10985,
[SMALL_STATE(203)] = 11035,
[SMALL_STATE(204)] = 11085,
[SMALL_STATE(205)] = 11121,
[SMALL_STATE(206)] = 11171,
[SMALL_STATE(207)] = 11221,
[SMALL_STATE(208)] = 11271,
[SMALL_STATE(209)] = 11300,
[SMALL_STATE(210)] = 11329,
[SMALL_STATE(211)] = 11358,
[SMALL_STATE(212)] = 11387,
[SMALL_STATE(213)] = 11418,
[SMALL_STATE(214)] = 11447,
[SMALL_STATE(215)] = 11492,
[SMALL_STATE(216)] = 11527,
[SMALL_STATE(217)] = 11570,
[SMALL_STATE(218)] = 11603,
[SMALL_STATE(219)] = 11646,
[SMALL_STATE(220)] = 11689,
[SMALL_STATE(221)] = 11718,
[SMALL_STATE(222)] = 11747,
[SMALL_STATE(223)] = 11776,
[SMALL_STATE(224)] = 11805,
[SMALL_STATE(225)] = 11834,
[SMALL_STATE(226)] = 11863,
[SMALL_STATE(227)] = 11892,
[SMALL_STATE(228)] = 11938,
[SMALL_STATE(229)] = 11984,
[SMALL_STATE(230)] = 12030,
[SMALL_STATE(231)] = 12076,
[SMALL_STATE(232)] = 12122,
[SMALL_STATE(233)] = 12168,
[SMALL_STATE(234)] = 12214,
[SMALL_STATE(235)] = 12260,
[SMALL_STATE(236)] = 12293,
[SMALL_STATE(237)] = 12333,
[SMALL_STATE(238)] = 12359,
[SMALL_STATE(239)] = 12393,
[SMALL_STATE(240)] = 12427,
[SMALL_STATE(241)] = 12467,
[SMALL_STATE(242)] = 12507,
[SMALL_STATE(243)] = 12547,
[SMALL_STATE(244)] = 12581,
[SMALL_STATE(245)] = 12621,
[SMALL_STATE(246)] = 12658,
[SMALL_STATE(247)] = 12695,
[SMALL_STATE(248)] = 12732,
[SMALL_STATE(249)] = 12765,
[SMALL_STATE(250)] = 12798,
[SMALL_STATE(251)] = 12829,
[SMALL_STATE(252)] = 12859,
[SMALL_STATE(253)] = 12891,
[SMALL_STATE(254)] = 12923,
[SMALL_STATE(255)] = 12942,
[SMALL_STATE(256)] = 12961,
[SMALL_STATE(257)] = 12980,
[SMALL_STATE(258)] = 13001,
[SMALL_STATE(259)] = 13022,
[SMALL_STATE(260)] = 13043,
[SMALL_STATE(261)] = 13062,
[SMALL_STATE(262)] = 13081,
[SMALL_STATE(263)] = 13100,
[SMALL_STATE(264)] = 13122,
[SMALL_STATE(265)] = 13144,
[SMALL_STATE(266)] = 13166,
[SMALL_STATE(267)] = 13188,
[SMALL_STATE(268)] = 13210,
[SMALL_STATE(269)] = 13232,
[SMALL_STATE(270)] = 13250,
[SMALL_STATE(271)] = 13268,
[SMALL_STATE(272)] = 13293,
[SMALL_STATE(273)] = 13318,
[SMALL_STATE(274)] = 13338,
[SMALL_STATE(275)] = 13352,
[SMALL_STATE(276)] = 13366,
[SMALL_STATE(277)] = 13376,
[SMALL_STATE(278)] = 13386,
[SMALL_STATE(279)] = 13398,
[SMALL_STATE(280)] = 13408,
[SMALL_STATE(281)] = 13420,
[SMALL_STATE(282)] = 13430,
[SMALL_STATE(283)] = 13440,
[SMALL_STATE(284)] = 13450,
[SMALL_STATE(285)] = 13460,
[SMALL_STATE(286)] = 13470,
[SMALL_STATE(287)] = 13480,
[SMALL_STATE(288)] = 13492,
[SMALL_STATE(289)] = 13502,
[SMALL_STATE(290)] = 13512,
[SMALL_STATE(291)] = 13522,
[SMALL_STATE(292)] = 13535,
[SMALL_STATE(293)] = 13548,
[SMALL_STATE(294)] = 13561,
[SMALL_STATE(295)] = 13574,
[SMALL_STATE(296)] = 13587,
[SMALL_STATE(297)] = 13600,
[SMALL_STATE(298)] = 13613,
[SMALL_STATE(299)] = 13624,
[SMALL_STATE(300)] = 13637,
[SMALL_STATE(301)] = 13650,
[SMALL_STATE(302)] = 13663,
[SMALL_STATE(303)] = 13676,
[SMALL_STATE(304)] = 13689,
[SMALL_STATE(305)] = 13702,
[SMALL_STATE(306)] = 13715,
[SMALL_STATE(307)] = 13726,
[SMALL_STATE(308)] = 13739,
[SMALL_STATE(309)] = 13752,
[SMALL_STATE(310)] = 13765,
[SMALL_STATE(311)] = 13778,
[SMALL_STATE(312)] = 13791,
[SMALL_STATE(313)] = 13804,
[SMALL_STATE(314)] = 13817,
[SMALL_STATE(315)] = 13830,
[SMALL_STATE(316)] = 13843,
[SMALL_STATE(317)] = 13856,
[SMALL_STATE(318)] = 13869,
[SMALL_STATE(319)] = 13882,
[SMALL_STATE(320)] = 13895,
[SMALL_STATE(321)] = 13908,
[SMALL_STATE(322)] = 13916,
[SMALL_STATE(323)] = 13924,
[SMALL_STATE(324)] = 13931,
[SMALL_STATE(325)] = 13938,
[SMALL_STATE(326)] = 13945,
[SMALL_STATE(327)] = 13952,
[SMALL_STATE(328)] = 13959,
[SMALL_STATE(329)] = 13966,
[SMALL_STATE(330)] = 13973,
[SMALL_STATE(331)] = 13980,
[SMALL_STATE(332)] = 13987,
[SMALL_STATE(333)] = 13994,
[SMALL_STATE(334)] = 14001,
[SMALL_STATE(335)] = 14008,
[SMALL_STATE(336)] = 14015,
[SMALL_STATE(337)] = 14022,
[SMALL_STATE(338)] = 14029,
[SMALL_STATE(339)] = 14036,
[SMALL_STATE(340)] = 14043,
[SMALL_STATE(341)] = 14050,
[SMALL_STATE(342)] = 14057,
[SMALL_STATE(343)] = 14064,
[SMALL_STATE(344)] = 14071,
[SMALL_STATE(345)] = 14078,
[SMALL_STATE(346)] = 14085,
[SMALL_STATE(347)] = 14092,
};
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-02 03:54:25 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345),
[37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(42),
[42] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(336),
[45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3),
[48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(58),
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(58),
[54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(61),
[57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(142),
[60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(207),
[63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(267),
[66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(206),
[69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(205),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(203),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(346),
[78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(346),
[81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(202),
[84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(345),
[87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59),
[89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
[117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326),
[119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112),
[127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170),
[133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167),
[135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
[137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332),
[139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347),
[145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269),
[167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237),
[183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267),
[185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 5),
[193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 5),
[195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 5),
[197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 5),
[199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
[213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235),
[219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33),
[251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5),
[261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5),
[263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98),
[265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90),
[269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(109),
[298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(294),
[303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(111),
[306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(111),
[309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(112),
[312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(135),
[315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(184),
[318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(267),
[321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304),
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(180),
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98),
[383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(305),
[386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(90),
[389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(90),
[392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(91),
[395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(132),
[398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(172),
[401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(267),
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98),
[425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(305),
[428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(90),
[431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(90),
[434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(91),
[437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(132),
[440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(172),
[445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(267),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50),
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66),
[472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255),
[538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(264),
[579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(255),
[582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(248),
[585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), SHIFT_REPEAT(254),
[594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296),
[614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(162),
[617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(339),
[636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(298),
[663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[673] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343),
[703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
[719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
};
#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