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

13955 lines
312 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2023-12-02 07:34:23 +00:00
#define STATE_COUNT 338
#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-12-02 07:34:23 +00:00
[3] = 2,
[4] = 4,
2023-11-28 22:54:17 +00:00
[5] = 5,
2023-12-02 07:34:23 +00:00
[6] = 6,
2023-11-30 16:05:09 +00:00
[7] = 7,
[8] = 7,
2023-12-02 07:34:23 +00:00
[9] = 6,
2023-12-02 03:54:25 +00:00
[10] = 7,
2023-12-02 07:34:23 +00:00
[11] = 6,
[12] = 6,
2023-11-30 16:05:09 +00:00
[13] = 7,
2023-12-02 07:34:23 +00:00
[14] = 6,
[15] = 7,
2023-12-02 03:54:25 +00:00
[16] = 16,
[17] = 17,
[18] = 16,
2023-12-02 07:34:23 +00:00
[19] = 17,
2023-12-02 03:54:25 +00:00
[20] = 17,
2023-12-02 07:34:23 +00:00
[21] = 16,
[22] = 17,
2023-12-02 03:54:25 +00:00
[23] = 17,
[24] = 16,
2023-12-02 07:34:23 +00:00
[25] = 16,
2023-12-02 03:54:25 +00:00
[26] = 26,
[27] = 27,
[28] = 28,
2023-11-30 16:05:09 +00:00
[29] = 29,
2023-12-02 07:34:23 +00:00
[30] = 30,
2023-11-30 16:05:09 +00:00
[31] = 31,
2023-12-02 07:34:23 +00:00
[32] = 32,
2023-11-30 16:05:09 +00:00
[33] = 33,
2023-12-02 07:34:23 +00:00
[34] = 32,
[35] = 30,
2023-11-30 16:05:09 +00:00
[36] = 36,
2023-12-02 07:34:23 +00:00
[37] = 33,
[38] = 36,
[39] = 39,
[40] = 40,
[41] = 26,
[42] = 40,
[43] = 28,
[44] = 39,
[45] = 40,
2023-11-30 01:59:58 +00:00
[46] = 46,
2023-12-02 07:34:23 +00:00
[47] = 39,
[48] = 31,
2023-11-30 16:05:09 +00:00
[49] = 49,
2023-12-02 03:54:25 +00:00
[50] = 50,
2023-11-30 14:30:25 +00:00
[51] = 51,
[52] = 52,
2023-12-02 03:54:25 +00:00
[53] = 53,
[54] = 54,
2023-12-02 07:34:23 +00:00
[55] = 50,
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,
2023-12-02 07:34:23 +00:00
[62] = 62,
[63] = 63,
2023-12-02 03:54:25 +00:00
[64] = 64,
2023-12-02 07:34:23 +00:00
[65] = 65,
[66] = 66,
2023-12-02 03:54:25 +00:00
[67] = 67,
[68] = 68,
2023-12-02 07:34:23 +00:00
[69] = 69,
2023-12-02 03:54:25 +00:00
[70] = 70,
2023-12-02 07:34:23 +00:00
[71] = 69,
[72] = 72,
[73] = 73,
[74] = 26,
[75] = 31,
[76] = 53,
[77] = 32,
[78] = 28,
[79] = 63,
[80] = 32,
2023-12-02 03:54:25 +00:00
[81] = 28,
2023-12-02 07:34:23 +00:00
[82] = 26,
[83] = 31,
[84] = 60,
[85] = 85,
[86] = 68,
2023-12-02 03:54:25 +00:00
[87] = 87,
[88] = 52,
2023-12-02 07:34:23 +00:00
[89] = 62,
2023-12-02 03:54:25 +00:00
[90] = 58,
2023-12-02 07:34:23 +00:00
[91] = 57,
[92] = 49,
[93] = 61,
[94] = 59,
[95] = 64,
[96] = 54,
[97] = 66,
[98] = 56,
[99] = 65,
[100] = 100,
[101] = 100,
[102] = 100,
[103] = 103,
[104] = 60,
[105] = 62,
[106] = 54,
[107] = 68,
[108] = 57,
[109] = 65,
[110] = 72,
[111] = 52,
[112] = 49,
[113] = 73,
[114] = 58,
[115] = 115,
2023-11-30 16:05:09 +00:00
[116] = 116,
2023-12-02 07:34:23 +00:00
[117] = 61,
[118] = 59,
[119] = 56,
[120] = 66,
[121] = 64,
[122] = 32,
[123] = 26,
[124] = 28,
[125] = 63,
[126] = 32,
[127] = 53,
2023-12-02 03:54:25 +00:00
[128] = 128,
2023-12-02 07:34:23 +00:00
[129] = 31,
[130] = 130,
[131] = 131,
2023-12-02 03:54:25 +00:00
[132] = 132,
2023-12-02 07:34:23 +00:00
[133] = 133,
[134] = 46,
[135] = 131,
[136] = 131,
[137] = 130,
[138] = 132,
[139] = 139,
[140] = 133,
[141] = 132,
[142] = 130,
[143] = 133,
[144] = 144,
[145] = 26,
[146] = 31,
[147] = 28,
[148] = 53,
[149] = 53,
[150] = 63,
[151] = 67,
[152] = 152,
[153] = 63,
2023-11-30 14:30:25 +00:00
[154] = 154,
[155] = 155,
2023-11-30 16:05:09 +00:00
[156] = 156,
2023-12-02 07:34:23 +00:00
[157] = 156,
[158] = 158,
2023-12-02 03:54:25 +00:00
[159] = 159,
2023-12-02 07:34:23 +00:00
[160] = 156,
[161] = 161,
2023-11-30 16:05:09 +00:00
[162] = 162,
2023-11-30 14:48:56 +00:00
[163] = 163,
2023-12-02 07:34:23 +00:00
[164] = 164,
[165] = 165,
[166] = 162,
[167] = 158,
[168] = 168,
[169] = 159,
[170] = 156,
[171] = 158,
[172] = 159,
[173] = 163,
[174] = 174,
[175] = 156,
[176] = 164,
[177] = 155,
[178] = 178,
[179] = 158,
[180] = 159,
[181] = 161,
[182] = 168,
[183] = 183,
[184] = 159,
[185] = 158,
[186] = 165,
[187] = 159,
[188] = 163,
[189] = 155,
[190] = 165,
[191] = 183,
2023-12-02 03:54:25 +00:00
[192] = 156,
2023-12-02 07:34:23 +00:00
[193] = 159,
[194] = 156,
[195] = 159,
[196] = 158,
[197] = 155,
[198] = 158,
[199] = 158,
[200] = 178,
[201] = 156,
[202] = 202,
[203] = 164,
[204] = 174,
[205] = 205,
[206] = 70,
[207] = 26,
[208] = 31,
[209] = 32,
2023-12-02 03:54:25 +00:00
[210] = 210,
[211] = 211,
[212] = 212,
[213] = 213,
2023-12-02 07:34:23 +00:00
[214] = 214,
[215] = 69,
[216] = 69,
[217] = 217,
[218] = 218,
[219] = 219,
[220] = 205,
[221] = 32,
[222] = 28,
[223] = 223,
2023-12-02 03:54:25 +00:00
[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 07:34:23 +00:00
[230] = 31,
[231] = 227,
[232] = 26,
[233] = 229,
[234] = 28,
[235] = 228,
[236] = 226,
2023-11-30 16:05:09 +00:00
[237] = 237,
2023-11-30 14:48:56 +00:00
[238] = 238,
2023-12-02 07:34:23 +00:00
[239] = 239,
[240] = 238,
2023-11-30 16:05:09 +00:00
[241] = 241,
2023-12-02 07:34:23 +00:00
[242] = 242,
[243] = 243,
[244] = 242,
[245] = 241,
[246] = 243,
[247] = 223,
2023-11-30 16:05:09 +00:00
[248] = 248,
2023-12-02 03:54:25 +00:00
[249] = 249,
[250] = 250,
2023-12-02 07:34:23 +00:00
[251] = 251,
[252] = 248,
[253] = 253,
2023-12-02 03:54:25 +00:00
[254] = 254,
[255] = 255,
[256] = 256,
2023-11-30 14:48:56 +00:00
[257] = 257,
2023-12-02 07:34:23 +00:00
[258] = 258,
[259] = 259,
2023-12-02 03:54:25 +00:00
[260] = 260,
[261] = 261,
2023-12-02 07:34:23 +00:00
[262] = 260,
[263] = 257,
[264] = 116,
[265] = 115,
[266] = 128,
[267] = 152,
[268] = 154,
[269] = 214,
[270] = 211,
[271] = 271,
[272] = 213,
[273] = 273,
[274] = 205,
[275] = 225,
[276] = 271,
[277] = 205,
[278] = 212,
[279] = 217,
[280] = 224,
[281] = 218,
[282] = 210,
[283] = 219,
[284] = 284,
[285] = 285,
[286] = 286,
[287] = 287,
[288] = 288,
2023-12-02 03:54:25 +00:00
[289] = 289,
2023-12-02 07:34:23 +00:00
[290] = 286,
2023-11-30 16:05:09 +00:00
[291] = 291,
[292] = 292,
[293] = 293,
[294] = 294,
2023-12-02 07:34:23 +00:00
[295] = 295,
[296] = 287,
[297] = 294,
2023-11-30 16:05:09 +00:00
[298] = 298,
2023-12-02 07:34:23 +00:00
[299] = 298,
[300] = 287,
[301] = 292,
[302] = 294,
[303] = 284,
[304] = 286,
[305] = 288,
[306] = 285,
[307] = 298,
[308] = 284,
[309] = 288,
[310] = 286,
[311] = 287,
[312] = 284,
[313] = 298,
[314] = 314,
[315] = 315,
[316] = 316,
[317] = 317,
2023-12-02 03:54:25 +00:00
[318] = 318,
2023-12-02 07:34:23 +00:00
[319] = 317,
[320] = 318,
[321] = 317,
2023-12-02 03:54:25 +00:00
[322] = 322,
2023-12-02 07:34:23 +00:00
[323] = 316,
[324] = 317,
2023-12-02 03:54:25 +00:00
[325] = 325,
2023-12-02 07:34:23 +00:00
[326] = 316,
2023-12-02 03:54:25 +00:00
[327] = 327,
[328] = 328,
2023-12-02 07:34:23 +00:00
[329] = 322,
[330] = 330,
[331] = 327,
[332] = 328,
[333] = 333,
[334] = 318,
[335] = 335,
[336] = 316,
[337] = 317,
};
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(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(62);
2023-12-02 07:34:23 +00:00
if (lookahead == '+') ADVANCE(57);
2023-12-02 03:54:25 +00:00
if (lookahead == ',') ADVANCE(32);
2023-12-02 07:34:23 +00:00
if (lookahead == '-') ADVANCE(58);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
if (lookahead == ';') ADVANCE(31);
if (lookahead == '<') ADVANCE(71);
2023-12-02 07:34:23 +00:00
if (lookahead == '=') ADVANCE(50);
2023-12-02 03:54:25 +00:00
if (lookahead == '>') ADVANCE(70);
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(62);
if (lookahead == '+') ADVANCE(56);
2023-12-02 07:34:23 +00:00
if (lookahead == ',') ADVANCE(32);
2023-12-02 03:54:25 +00:00
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
2023-12-02 07:34:23 +00:00
if (lookahead == ';') ADVANCE(31);
2023-12-02 03:54:25 +00:00
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(15);
if (lookahead == '>') ADVANCE(70);
2023-12-02 07:34:23 +00:00
if (lookahead == 'e') ADVANCE(38);
2023-12-02 03:54:25 +00:00
if (lookahead == '{') ADVANCE(29);
if (lookahead == '|') ADVANCE(23);
2023-12-02 07:34:23 +00:00
if (lookahead == '}') ADVANCE(30);
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);
2023-12-02 07:34:23 +00:00
if (lookahead == '+') ADVANCE(56);
if (lookahead == '-') ADVANCE(59);
2023-12-02 03:54:25 +00:00
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(63);
if (lookahead == ':') ADVANCE(52);
if (lookahead == '<') ADVANCE(71);
2023-12-02 07:34:23 +00:00
if (lookahead == '=') ADVANCE(15);
2023-12-02 03:54:25 +00:00
if (lookahead == '>') ADVANCE(70);
2023-12-02 07:34:23 +00:00
if (lookahead == '{') ADVANCE(29);
2023-12-02 03:54:25 +00:00
if (lookahead == '|') ADVANCE(23);
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},
2023-12-02 07:34:23 +00:00
[39] = {.lex_state = 1},
[40] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[41] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[42] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[43] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[44] = {.lex_state = 1},
[45] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[46] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[47] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[48] = {.lex_state = 25},
[49] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[50] = {.lex_state = 1},
[51] = {.lex_state = 25},
2023-12-02 03:54:25 +00:00
[52] = {.lex_state = 25},
[53] = {.lex_state = 25},
[54] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[55] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[56] = {.lex_state = 25},
[57] = {.lex_state = 25},
[58] = {.lex_state = 25},
[59] = {.lex_state = 25},
[60] = {.lex_state = 25},
[61] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[62] = {.lex_state = 25},
2023-12-02 03:54:25 +00:00
[63] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[64] = {.lex_state = 25},
[65] = {.lex_state = 25},
[66] = {.lex_state = 25},
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-12-02 07:34:23 +00:00
[72] = {.lex_state = 25},
[73] = {.lex_state = 25},
2023-12-02 03:54:25 +00:00
[74] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[75] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[76] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[77] = {.lex_state = 1},
[78] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[79] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[80] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[81] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[82] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[83] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[84] = {.lex_state = 1},
[85] = {.lex_state = 1},
[86] = {.lex_state = 1},
[87] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[88] = {.lex_state = 1},
[89] = {.lex_state = 1},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[92] = {.lex_state = 1},
[93] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[94] = {.lex_state = 1},
[95] = {.lex_state = 1},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[104] = {.lex_state = 2},
[105] = {.lex_state = 2},
[106] = {.lex_state = 2},
[107] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[108] = {.lex_state = 2},
[109] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[110] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[111] = {.lex_state = 2},
[112] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[113] = {.lex_state = 1},
[114] = {.lex_state = 2},
[115] = {.lex_state = 0},
2023-11-30 16:05:09 +00:00
[116] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[117] = {.lex_state = 2},
[118] = {.lex_state = 2},
[119] = {.lex_state = 2},
[120] = {.lex_state = 2},
[121] = {.lex_state = 2},
[122] = {.lex_state = 3},
[123] = {.lex_state = 3},
[124] = {.lex_state = 3},
[125] = {.lex_state = 4},
[126] = {.lex_state = 3},
[127] = {.lex_state = 4},
[128] = {.lex_state = 0},
[129] = {.lex_state = 3},
[130] = {.lex_state = 1},
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-12-02 07:34:23 +00:00
[134] = {.lex_state = 3},
2023-12-02 03:54:25 +00:00
[135] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[136] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[137] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[138] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
[143] = {.lex_state = 1},
[144] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[145] = {.lex_state = 3},
[146] = {.lex_state = 3},
[147] = {.lex_state = 3},
[148] = {.lex_state = 0},
[149] = {.lex_state = 3},
[150] = {.lex_state = 3},
[151] = {.lex_state = 3},
2023-12-02 03:54:25 +00:00
[152] = {.lex_state = 0},
[153] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[154] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[155] = {.lex_state = 1},
[156] = {.lex_state = 1},
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 1},
[162] = {.lex_state = 1},
[163] = {.lex_state = 1},
[164] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[165] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[166] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[167] = {.lex_state = 1},
[168] = {.lex_state = 1},
[169] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[170] = {.lex_state = 1},
[171] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[172] = {.lex_state = 1},
[173] = {.lex_state = 1},
[174] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[175] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[176] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[177] = {.lex_state = 1},
[178] = {.lex_state = 1},
[179] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[180] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[181] = {.lex_state = 1},
[182] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[183] = {.lex_state = 1},
2023-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 07:34:23 +00:00
[193] = {.lex_state = 1},
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 07:34:23 +00:00
[204] = {.lex_state = 1},
[205] = {.lex_state = 25},
[206] = {.lex_state = 2},
[207] = {.lex_state = 5},
[208] = {.lex_state = 5},
[209] = {.lex_state = 5},
2023-12-02 03:54:25 +00:00
[210] = {.lex_state = 25},
[211] = {.lex_state = 25},
[212] = {.lex_state = 25},
[213] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[214] = {.lex_state = 25},
[215] = {.lex_state = 2},
[216] = {.lex_state = 2},
[217] = {.lex_state = 25},
[218] = {.lex_state = 25},
[219] = {.lex_state = 25},
2023-12-02 03:54:25 +00:00
[220] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[221] = {.lex_state = 5},
[222] = {.lex_state = 5},
2023-12-02 03:54:25 +00:00
[223] = {.lex_state = 25},
[224] = {.lex_state = 25},
[225] = {.lex_state = 25},
2023-12-02 07:34:23 +00:00
[226] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[227] = {.lex_state = 2},
[228] = {.lex_state = 2},
[229] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[230] = {.lex_state = 5},
2023-12-02 03:54:25 +00:00
[231] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[232] = {.lex_state = 5},
2023-12-02 03:54:25 +00:00
[233] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[234] = {.lex_state = 5},
[235] = {.lex_state = 2},
2023-12-02 03:54:25 +00:00
[236] = {.lex_state = 2},
2023-12-02 07:34:23 +00:00
[237] = {.lex_state = 1},
[238] = {.lex_state = 4},
[239] = {.lex_state = 25},
[240] = {.lex_state = 4},
[241] = {.lex_state = 7},
[242] = {.lex_state = 7},
[243] = {.lex_state = 7},
[244] = {.lex_state = 7},
[245] = {.lex_state = 7},
[246] = {.lex_state = 7},
[247] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[248] = {.lex_state = 7},
[249] = {.lex_state = 7},
[250] = {.lex_state = 7},
[251] = {.lex_state = 7},
[252] = {.lex_state = 7},
[253] = {.lex_state = 7},
2023-12-02 07:34:23 +00:00
[254] = {.lex_state = 1},
[255] = {.lex_state = 1},
[256] = {.lex_state = 1},
[257] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[258] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[259] = {.lex_state = 1},
[260] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[261] = {.lex_state = 1},
[262] = {.lex_state = 1},
[263] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[264] = {.lex_state = 4},
[265] = {.lex_state = 4},
[266] = {.lex_state = 4},
[267] = {.lex_state = 4},
[268] = {.lex_state = 4},
2023-11-30 16:05:09 +00:00
[269] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[270] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[271] = {.lex_state = 25},
[272] = {.lex_state = 1},
[273] = {.lex_state = 7},
[274] = {.lex_state = 1},
[275] = {.lex_state = 1},
[276] = {.lex_state = 25},
2023-11-30 14:30:25 +00:00
[277] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[278] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[279] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[280] = {.lex_state = 1},
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},
2023-12-02 07:34:23 +00:00
[286] = {.lex_state = 7},
[287] = {.lex_state = 7},
2023-11-30 16:05:09 +00:00
[288] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[289] = {.lex_state = 1},
[290] = {.lex_state = 7},
[291] = {.lex_state = 7},
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 07:34:23 +00:00
[295] = {.lex_state = 7},
[296] = {.lex_state = 7},
[297] = {.lex_state = 1},
[298] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[299] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[300] = {.lex_state = 7},
2023-12-02 03:54:25 +00:00
[301] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[302] = {.lex_state = 1},
[303] = {.lex_state = 1},
[304] = {.lex_state = 7},
2023-12-02 03:54:25 +00:00
[305] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[306] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[307] = {.lex_state = 1},
2023-12-02 03:54:25 +00:00
[308] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[309] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[310] = {.lex_state = 7},
[311] = {.lex_state = 7},
[312] = {.lex_state = 1},
[313] = {.lex_state = 1},
[314] = {.lex_state = 7},
2023-12-02 03:54:25 +00:00
[315] = {.lex_state = 1},
2023-12-02 07:34:23 +00:00
[316] = {.lex_state = 0},
[317] = {.lex_state = 0},
[318] = {.lex_state = 0},
[319] = {.lex_state = 0},
[320] = {.lex_state = 0},
[321] = {.lex_state = 0},
[322] = {.lex_state = 1},
[323] = {.lex_state = 0},
2023-12-02 03:54:25 +00:00
[324] = {.lex_state = 0},
[325] = {.lex_state = 0},
[326] = {.lex_state = 0},
[327] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[328] = {.lex_state = 1},
[329] = {.lex_state = 1},
[330] = {.lex_state = 7},
2023-12-02 03:54:25 +00:00
[331] = {.lex_state = 0},
[332] = {.lex_state = 1},
[333] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[334] = {.lex_state = 0},
[335] = {.lex_state = 25},
2023-12-02 03:54:25 +00:00
[336] = {.lex_state = 0},
2023-12-02 07:34:23 +00:00
[337] = {.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 07:34:23 +00:00
[sym_root] = STATE(333),
[sym_block] = STATE(220),
[sym_statement] = STATE(5),
[sym_expression] = STATE(71),
[sym_value] = STATE(57),
[sym_boolean] = STATE(54),
[sym_list] = STATE(54),
[sym_map] = STATE(54),
[sym_index] = STATE(67),
[sym_math] = STATE(57),
[sym_logic] = STATE(57),
[sym_assignment] = STATE(220),
[sym_index_assignment] = STATE(220),
[sym_if_else] = STATE(220),
2023-12-02 03:54:25 +00:00
[sym_if] = STATE(116),
2023-12-02 07:34:23 +00:00
[sym_match] = STATE(220),
[sym_while] = STATE(220),
[sym_for] = STATE(220),
[sym_return] = STATE(220),
[sym_use] = STATE(220),
[sym_type_definition] = STATE(336),
[sym_function] = STATE(54),
[sym_function_call] = STATE(57),
[sym_yield] = STATE(57),
[aux_sym_root_repeat1] = STATE(5),
[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 07:34:23 +00:00
[0] = 27,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(23), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(25), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(27), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(29), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(33), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(35), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-12-02 07:34:23 +00:00
ACTIONS(37), 1,
sym_identifier,
ACTIONS(39), 1,
anon_sym_RBRACE,
STATE(67), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 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 07:34:23 +00:00
STATE(288), 1,
aux_sym_map_repeat1,
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(15), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
[100] = 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 07:34:23 +00:00
ACTIONS(37), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(41), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
STATE(67), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 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 07:34:23 +00:00
STATE(305), 1,
2023-12-02 03:54:25 +00:00
aux_sym_map_repeat1,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(8), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
[200] = 26,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(45), 1,
sym_identifier,
ACTIONS(48), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(51), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(54), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(63), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(66), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(69), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(72), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(75), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(78), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(81), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(84), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(87), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(90), 1,
2023-12-02 03:54:25 +00:00
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(43), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(57), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(60), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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,
2023-12-02 07:34:23 +00:00
ts_builtin_sym_end,
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
STATE(4), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(6), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(14), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 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 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(54), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 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 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
STATE(7), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
2023-11-30 16:05:09 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 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 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(12), 2,
2023-11-30 16:05:09 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-11-30 16:05:09 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(8), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 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 07:34:23 +00:00
STATE(67), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
STATE(9), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[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,
2023-12-02 07:34:23 +00:00
STATE(67), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(71), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(11), 2,
2023-12-02 03:54:25 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(220), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[2305] = 6,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(119), 1,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
STATE(179), 1,
sym_logic_operator,
STATE(180), 1,
sym_math_operator,
ACTIONS(117), 16,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
ACTIONS(115), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[2360] = 25,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(123), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(125), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(137), 1,
2023-12-02 03:54:25 +00:00
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(139), 1,
2023-12-02 03:54:25 +00:00
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(141), 1,
2023-12-02 03:54:25 +00:00
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(143), 1,
2023-12-02 03:54:25 +00:00
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(145), 1,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(147), 1,
2023-12-02 03:54:25 +00:00
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(149), 1,
2023-12-02 03:54:25 +00:00
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(151), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(216), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(264), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-02 07:34:23 +00:00
STATE(289), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(277), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[2453] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(179), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(180), 1,
sym_math_operator,
ACTIONS(153), 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 07:34:23 +00:00
ACTIONS(151), 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 07:34:23 +00:00
[2506] = 25,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(123), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(125), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(137), 1,
2023-11-30 14:30:25 +00:00
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(139), 1,
2023-11-30 14:30:25 +00:00
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(141), 1,
2023-11-30 14:30:25 +00:00
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(143), 1,
2023-11-30 14:30:25 +00:00
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(145), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(147), 1,
2023-11-30 14:30:25 +00:00
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(149), 1,
2023-11-30 14:30:25 +00:00
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(151), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(216), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(264), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-02 07:34:23 +00:00
STATE(289), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(277), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[2599] = 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(67), 1,
2023-12-02 07:34:23 +00:00
sym_index,
STATE(69), 1,
sym_expression,
2023-12-02 03:54:25 +00:00
STATE(116), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(213), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(205), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[2692] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(119), 1,
anon_sym_COLON,
ACTIONS(167), 1,
anon_sym_DASH_GT,
STATE(179), 1,
sym_logic_operator,
STATE(180), 1,
sym_math_operator,
ACTIONS(159), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(161), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(163), 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(155), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(157), 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,
[2757] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(179), 1,
sym_logic_operator,
STATE(180), 1,
sym_math_operator,
ACTIONS(171), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(169), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[2810] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(7), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(9), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(23), 1,
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(27), 1,
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(29), 1,
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(31), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(33), 1,
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(67), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(69), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(116), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-02 07:34:23 +00:00
STATE(219), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(205), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[2903] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(173), 1,
anon_sym_DOT_DOT,
STATE(179), 1,
sym_logic_operator,
STATE(180), 1,
sym_math_operator,
ACTIONS(171), 16,
anon_sym_async,
2023-12-02 07:34:23 +00:00
sym_identifier,
sym_integer,
2023-12-02 07:34:23 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
2023-12-02 07:34:23 +00:00
anon_sym_use,
ACTIONS(169), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[2958] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(121), 1,
sym_identifier,
ACTIONS(123), 1,
anon_sym_async,
ACTIONS(125), 1,
anon_sym_LBRACE,
ACTIONS(127), 1,
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
ACTIONS(135), 1,
anon_sym_LPAREN,
ACTIONS(137), 1,
anon_sym_if,
ACTIONS(139), 1,
anon_sym_match,
ACTIONS(141), 1,
anon_sym_while,
2023-12-02 03:54:25 +00:00
ACTIONS(143), 1,
2023-12-02 07:34:23 +00:00
anon_sym_for,
ACTIONS(145), 1,
anon_sym_asyncfor,
ACTIONS(147), 1,
anon_sym_return,
ACTIONS(149), 1,
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(151), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(215), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(264), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(272), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(274), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[3051] = 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 07:34:23 +00:00
ACTIONS(121), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(123), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(125), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(137), 1,
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(139), 1,
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(141), 1,
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(143), 1,
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(145), 1,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(147), 1,
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(149), 1,
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(151), 1,
2023-12-02 03:54:25 +00:00
sym_index,
2023-12-02 07:34:23 +00:00
STATE(215), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(264), 1,
2023-12-02 03:54:25 +00:00
sym_if,
2023-12-02 07:34:23 +00:00
STATE(278), 1,
2023-12-02 03:54:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
2023-12-02 03:54:25 +00:00
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(274), 9,
2023-12-02 03:54:25 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[3144] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(121), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(123), 1,
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(125), 1,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(137), 1,
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(139), 1,
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(141), 1,
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(143), 1,
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(145), 1,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(147), 1,
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(149), 1,
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(151), 1,
sym_index,
2023-12-02 07:34:23 +00:00
STATE(215), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(264), 1,
sym_if,
2023-12-02 07:34:23 +00:00
STATE(283), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
STATE(274), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-12-02 07:34:23 +00:00
[3237] = 25,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(5), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-12-02 07:34:23 +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 07:34:23 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-12-02 07:34:23 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-12-02 07:34:23 +00:00
ACTIONS(27), 1,
anon_sym_while,
2023-12-02 07:34:23 +00:00
ACTIONS(29), 1,
anon_sym_for,
2023-12-02 07:34:23 +00:00
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_return,
2023-12-02 07:34:23 +00:00
ACTIONS(35), 1,
anon_sym_use,
2023-12-02 07:34:23 +00:00
STATE(67), 1,
sym_index,
STATE(69), 1,
sym_expression,
STATE(116), 1,
sym_if,
STATE(212), 1,
sym_statement,
STATE(336), 1,
sym_type_definition,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(57), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(205), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3330] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(191), 1,
anon_sym_RPAREN,
ACTIONS(193), 1,
anon_sym_LT,
ACTIONS(195), 1,
anon_sym_DASH_GT,
STATE(87), 1,
sym_expression,
STATE(142), 1,
aux_sym__expression_list,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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 07:34:23 +00:00
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3418] = 23,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(159), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
anon_sym_LPAREN,
ACTIONS(193), 1,
anon_sym_LT,
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(197), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(141), 1,
aux_sym__expression_list,
STATE(164), 1,
sym_logic_operator,
STATE(202), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3506] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(199), 1,
anon_sym_COLON,
STATE(185), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(187), 1,
sym_math_operator,
ACTIONS(117), 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 07:34:23 +00:00
ACTIONS(115), 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,
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 07:34:23 +00:00
[3560] = 23,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_COLON,
ACTIONS(189), 1,
anon_sym_LPAREN,
ACTIONS(193), 1,
anon_sym_LT,
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(201), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(138), 1,
aux_sym__expression_list,
STATE(176), 1,
sym_logic_operator,
STATE(202), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3648] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(185), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(187), 1,
sym_math_operator,
ACTIONS(153), 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 07:34:23 +00:00
ACTIONS(151), 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,
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_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[3700] = 23,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(159), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
anon_sym_LPAREN,
ACTIONS(193), 1,
anon_sym_LT,
ACTIONS(195), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(203), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(137), 1,
aux_sym__expression_list,
STATE(184), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(198), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3788] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
anon_sym_COLON,
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(193), 1,
anon_sym_LT,
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(205), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
STATE(202), 1,
sym_math_operator,
STATE(203), 1,
sym_logic_operator,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3876] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(211), 1,
anon_sym_EQ,
ACTIONS(213), 1,
anon_sym_LT,
STATE(30), 1,
sym_assignment_operator,
STATE(276), 1,
sym_type_definition,
ACTIONS(215), 2,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 14,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
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 07:34:23 +00:00
ACTIONS(207), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3934] = 23,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
ACTIONS(175), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(187), 1,
anon_sym_COLON,
ACTIONS(189), 1,
anon_sym_LPAREN,
ACTIONS(193), 1,
anon_sym_LT,
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(217), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
STATE(130), 1,
aux_sym__expression_list,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4022] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(167), 1,
anon_sym_DASH_GT,
ACTIONS(199), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(185), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(187), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 2,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 3,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(155), 11,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(157), 12,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[4086] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(221), 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 07:34:23 +00:00
ACTIONS(219), 23,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[4133] = 22,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
ACTIONS(135), 1,
anon_sym_LPAREN,
ACTIONS(159), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 1,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
anon_sym_COLON,
ACTIONS(193), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(110), 1,
aux_sym_match_repeat1,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
STATE(238), 1,
sym_expression,
STATE(326), 1,
sym_type_definition,
ACTIONS(129), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4218] = 8,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(213), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(227), 1,
anon_sym_EQ,
2023-12-02 03:54:25 +00:00
STATE(30), 1,
sym_assignment_operator,
2023-12-02 07:34:23 +00:00
STATE(276), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(215), 2,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 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 07:34:23 +00:00
ACTIONS(207), 19,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[4275] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(231), 16,
2023-11-30 16:05:09 +00:00
anon_sym_async,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
ACTIONS(229), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[4322] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(235), 16,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
ACTIONS(233), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[4369] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(239), 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 07:34:23 +00:00
ACTIONS(237), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-28 22:54:17 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[4416] = 22,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
ACTIONS(135), 1,
anon_sym_LPAREN,
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 1,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
anon_sym_COLON,
ACTIONS(193), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(72), 1,
aux_sym_match_repeat1,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
STATE(240), 1,
sym_expression,
STATE(326), 1,
sym_type_definition,
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
ACTIONS(163), 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 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4501] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(243), 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 07:34:23 +00:00
ACTIONS(241), 23,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
[4548] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 16,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(207), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
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 07:34:23 +00:00
[4595] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(247), 16,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(245), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
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 07:34:23 +00:00
[4642] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(251), 16,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 14:30:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 03:54:25 +00:00
anon_sym_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,
2023-12-02 07:34:23 +00:00
ACTIONS(249), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
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 07:34:23 +00:00
[4689] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(255), 16,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-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 07:34:23 +00:00
ACTIONS(253), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[4736] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(259), 16,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(257), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[4783] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(263), 16,
2023-12-02 03:54: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-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
ACTIONS(261), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[4830] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(267), 16,
2023-12-02 03:54: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-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
ACTIONS(265), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[4877] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(271), 16,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(269), 23,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
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,
2023-12-02 07:34:23 +00:00
[4924] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(275), 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,
2023-12-02 07:34:23 +00:00
ACTIONS(273), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[4971] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(279), 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,
2023-12-02 07:34:23 +00:00
ACTIONS(277), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[5018] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(211), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
STATE(38), 1,
2023-12-02 03:54:25 +00:00
sym_assignment_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(215), 2,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 15,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +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,
2023-12-02 07:34:23 +00:00
ACTIONS(207), 20,
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
[5071] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(283), 16,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(281), 23,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
[5118] = 11,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(165), 1,
anon_sym_GT,
ACTIONS(167), 1,
anon_sym_DASH_GT,
ACTIONS(199), 1,
anon_sym_COLON,
STATE(185), 1,
sym_logic_operator,
STATE(187), 1,
sym_math_operator,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(163), 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(285), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(287), 12,
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,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[5179] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(167), 1,
anon_sym_DASH_GT,
ACTIONS(199), 1,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(185), 1,
sym_logic_operator,
STATE(187), 1,
sym_math_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
ACTIONS(289), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(291), 11,
2023-12-02 03:54: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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[5240] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 1,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(167), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(199), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(293), 1,
2023-12-02 03:54:25 +00:00
anon_sym_SEMI,
2023-12-02 07:34:23 +00:00
STATE(185), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(187), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 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 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
ACTIONS(285), 8,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(287), 12,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
[5303] = 16,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
STATE(73), 1,
2023-12-02 03:54:25 +00:00
aux_sym_match_repeat1,
2023-12-02 07:34:23 +00:00
STATE(240), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(295), 4,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
ACTIONS(297), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[5371] = 16,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(301), 1,
sym_identifier,
ACTIONS(306), 1,
anon_sym_LBRACE,
ACTIONS(309), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(318), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(321), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(324), 1,
anon_sym_LT,
STATE(73), 1,
2023-12-02 03:54:25 +00:00
aux_sym_match_repeat1,
2023-12-02 07:34:23 +00:00
STATE(240), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(312), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(315), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(299), 4,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
ACTIONS(304), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[5439] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(327), 1,
anon_sym_COLON,
STATE(171), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(172), 1,
sym_math_operator,
ACTIONS(117), 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 07:34:23 +00:00
ACTIONS(115), 20,
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_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 07:34:23 +00:00
[5483] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(327), 1,
anon_sym_COLON,
STATE(171), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(172), 1,
sym_math_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(157), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(163), 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(155), 9,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
[5537] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(235), 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 07:34:23 +00:00
ACTIONS(233), 23,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-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 07:34:23 +00:00
[5575] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(171), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(172), 1,
sym_math_operator,
ACTIONS(171), 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 07:34:23 +00:00
ACTIONS(169), 21,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[5617] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(171), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(172), 1,
sym_math_operator,
ACTIONS(153), 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 07:34:23 +00:00
ACTIONS(151), 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 07:34:23 +00:00
[5659] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(267), 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 07:34:23 +00:00
ACTIONS(265), 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 07:34:23 +00:00
[5697] = 6,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(329), 1,
anon_sym_DOT_DOT,
STATE(171), 1,
sym_logic_operator,
STATE(172), 1,
sym_math_operator,
ACTIONS(171), 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 07:34:23 +00:00
ACTIONS(169), 20,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-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 07:34:23 +00:00
[5741] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(184), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(198), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(153), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(151), 20,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
[5782] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(184), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(198), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(117), 7,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(115), 19,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
[5825] = 11,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
STATE(184), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(198), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(157), 4,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
ACTIONS(155), 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,
2023-12-02 07:34:23 +00:00
[5878] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(255), 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 07:34:23 +00:00
ACTIONS(253), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[5914] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 1,
anon_sym_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(335), 1,
anon_sym_COMMA,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
ACTIONS(161), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(331), 5,
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,
2023-11-28 22:54:17 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
ACTIONS(333), 6,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
[5968] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(283), 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 07:34:23 +00:00
ACTIONS(281), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
[6004] = 12,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(341), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
STATE(184), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(198), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(337), 4,
2023-12-02 03:54:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
ACTIONS(339), 6,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
[6058] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(231), 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 07:34:23 +00:00
ACTIONS(229), 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 07:34:23 +00:00
[6094] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(263), 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 07:34:23 +00:00
ACTIONS(261), 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 07:34:23 +00:00
[6130] = 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 07:34:23 +00:00
[6166] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 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 07:34:23 +00:00
ACTIONS(207), 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 07:34:23 +00:00
[6202] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(221), 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 07:34:23 +00:00
ACTIONS(219), 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 07:34:23 +00:00
[6238] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(259), 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 07:34:23 +00:00
ACTIONS(257), 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 07:34:23 +00:00
[6274] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(251), 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 07:34:23 +00:00
ACTIONS(249), 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 07:34:23 +00:00
[6310] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(271), 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 07:34:23 +00:00
ACTIONS(269), 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 07:34:23 +00:00
[6346] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +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 07:34:23 +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 07:34:23 +00:00
[6382] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(279), 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 07:34:23 +00:00
ACTIONS(277), 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 07:34:23 +00:00
[6418] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(243), 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,
2023-12-02 07:34:23 +00:00
ACTIONS(241), 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,
2023-12-02 07:34:23 +00:00
[6454] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(275), 7,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(273), 21,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6490] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(343), 1,
anon_sym_RPAREN,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
ACTIONS(165), 2,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(157), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(155), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(163), 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 07:34:23 +00:00
[6543] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(345), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(157), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(155), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
[6596] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(195), 1,
anon_sym_DASH_GT,
ACTIONS(347), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(157), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(161), 4,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(155), 5,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
ACTIONS(163), 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 07:34:23 +00:00
[6649] = 6,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(187), 1,
anon_sym_COLON,
STATE(184), 1,
sym_math_operator,
STATE(198), 1,
sym_logic_operator,
ACTIONS(117), 7,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(115), 17,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6690] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(255), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(253), 19,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6724] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(263), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(261), 19,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6758] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(239), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(237), 19,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6792] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(283), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(281), 19,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6826] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(207), 19,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6860] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(275), 7,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(273), 19,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6894] = 15,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
ACTIONS(135), 1,
anon_sym_LPAREN,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(113), 1,
aux_sym_match_repeat1,
STATE(238), 1,
sym_expression,
STATE(326), 1,
sym_type_definition,
ACTIONS(129), 2,
sym_float,
sym_string,
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(295), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6952] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(231), 7,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(229), 19,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[6986] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(221), 7,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(219), 19,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7020] = 15,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(301), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(306), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(309), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(318), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(321), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(324), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
STATE(113), 1,
2023-12-02 03:54:25 +00:00
aux_sym_match_repeat1,
2023-12-02 07:34:23 +00:00
STATE(238), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(312), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(315), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(299), 3,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
STATE(106), 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,
2023-12-02 07:34:23 +00:00
STATE(108), 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 07:34:23 +00:00
[7078] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(247), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(245), 19,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7112] = 7,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(353), 1,
2023-12-02 03:54:25 +00:00
anon_sym_elseif,
2023-12-02 07:34:23 +00:00
ACTIONS(355), 1,
2023-12-02 03:54:25 +00:00
anon_sym_else,
2023-12-02 07:34:23 +00:00
STATE(218), 1,
2023-12-02 03:54:25 +00:00
sym_else,
2023-12-02 07:34:23 +00:00
STATE(128), 2,
2023-12-02 03:54:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-02 07:34:23 +00:00
ACTIONS(349), 10,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(351), 11,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
[7154] = 7,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(353), 1,
anon_sym_elseif,
ACTIONS(355), 1,
anon_sym_else,
STATE(225), 1,
sym_else,
STATE(115), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(357), 10,
ts_builtin_sym_end,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
ACTIONS(359), 11,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[7196] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(259), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(257), 19,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7230] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(251), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 07:34:23 +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 07:34:23 +00:00
ACTIONS(249), 19,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7264] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(243), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(241), 19,
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-12-02 07:34:23 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7298] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(279), 7,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(277), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[7332] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(271), 7,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(269), 19,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7366] = 6,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(361), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
STATE(193), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(199), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(171), 5,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(169), 17,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7405] = 6,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(363), 1,
anon_sym_COLON,
STATE(193), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(117), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(115), 17,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 07:34:23 +00:00
anon_sym_COMMA,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[7444] = 5,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(193), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(199), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(153), 5,
anon_sym_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(151), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
[7481] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(267), 6,
anon_sym_async,
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
anon_sym_else,
ACTIONS(265), 19,
anon_sym_LBRACE,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
anon_sym_COLON,
2023-12-02 03:54:25 +00:00
anon_sym_DOT_DOT,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_elseif,
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7514] = 5,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(193), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(199), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(171), 5,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(169), 18,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
[7551] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(235), 6,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
anon_sym_else,
ACTIONS(233), 19,
anon_sym_LBRACE,
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,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_elseif,
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[7584] = 5,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(369), 1,
anon_sym_elseif,
STATE(128), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(365), 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(367), 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,
[7621] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(157), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(363), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
anon_sym_DASH_GT,
STATE(193), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(199), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 2,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 3,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
ACTIONS(155), 7,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[7670] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 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 07:34:23 +00:00
STATE(144), 1,
2023-12-02 03:54:25 +00:00
aux_sym__expression_list,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[7726] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 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,
2023-12-02 07:34:23 +00:00
STATE(85), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(140), 1,
2023-12-02 03:54:25 +00:00
aux_sym_list_repeat1,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[7782] = 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 07:34:23 +00:00
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 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,
2023-12-02 07:34:23 +00:00
STATE(144), 1,
2023-11-30 16:05:09 +00:00
aux_sym__expression_list,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[7838] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(380), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
STATE(85), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(139), 1,
2023-11-30 16:05:09 +00:00
aux_sym_list_repeat1,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[7894] = 8,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(211), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(213), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
STATE(35), 1,
2023-12-02 03:54:25 +00:00
sym_assignment_operator,
2023-12-02 07:34:23 +00:00
STATE(271), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(215), 2,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
ACTIONS(209), 3,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(207), 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,
2023-12-02 07:34:23 +00:00
[7936] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_LPAREN,
ACTIONS(382), 1,
anon_sym_RBRACK,
STATE(85), 1,
sym_expression,
STATE(133), 1,
aux_sym_list_repeat1,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7992] = 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 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(384), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
STATE(85), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(143), 1,
2023-12-02 03:54:25 +00:00
aux_sym_list_repeat1,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8048] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(386), 1,
anon_sym_RPAREN,
STATE(87), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(144), 1,
aux_sym__expression_list,
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8104] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(388), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(144), 1,
2023-12-02 03:54:25 +00:00
aux_sym__expression_list,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8160] = 15,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(390), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(393), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(396), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(405), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(408), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(410), 1,
anon_sym_LPAREN,
ACTIONS(413), 1,
anon_sym_LT,
STATE(85), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(139), 1,
2023-12-02 03:54:25 +00:00
aux_sym_list_repeat1,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(399), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(402), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8216] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 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,
2023-12-02 07:34:23 +00:00
STATE(85), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(139), 1,
2023-12-02 03:54:25 +00:00
aux_sym_list_repeat1,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8272] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 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,
2023-12-02 07:34:23 +00:00
STATE(144), 1,
2023-12-02 03:54:25 +00:00
aux_sym__expression_list,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8328] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
ACTIONS(420), 1,
anon_sym_RPAREN,
STATE(87), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(144), 1,
2023-12-02 03:54:25 +00:00
aux_sym__expression_list,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8384] = 15,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(422), 1,
anon_sym_RBRACK,
STATE(85), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(139), 1,
2023-12-02 03:54:25 +00:00
aux_sym_list_repeat1,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8440] = 15,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(424), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(427), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(430), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(439), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(442), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(445), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(447), 1,
anon_sym_LT,
2023-12-02 03:54:25 +00:00
STATE(87), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(144), 1,
2023-12-02 03:54:25 +00:00
aux_sym__expression_list,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(433), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(436), 2,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8496] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(450), 1,
anon_sym_COLON,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(117), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(115), 16,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[8534] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(157), 1,
anon_sym_EQ,
ACTIONS(372), 1,
anon_sym_DASH_GT,
ACTIONS(450), 1,
anon_sym_COLON,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(159), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(161), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(155), 6,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(163), 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,
[8582] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(153), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(151), 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,
[8618] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(233), 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 07:34:23 +00:00
ACTIONS(235), 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 07:34:23 +00:00
[8649] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(235), 5,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(233), 18,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[8680] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(267), 5,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(265), 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,
2023-12-02 07:34:23 +00:00
[8711] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(211), 1,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
2023-12-02 07:34:23 +00:00
STATE(36), 1,
sym_assignment_operator,
ACTIONS(215), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(209), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(207), 15,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[8748] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(452), 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 07:34:23 +00:00
ACTIONS(454), 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 07:34:23 +00:00
[8779] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(265), 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 07:34:23 +00:00
ACTIONS(267), 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 07:34:23 +00:00
[8810] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(456), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(458), 12,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[8841] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
STATE(234), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8891] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
STATE(221), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[8941] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(127), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
anon_sym_LBRACE,
STATE(126), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 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 07:34:23 +00:00
[8991] = 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(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(146), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9041] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(145), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9091] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-11-30 01:59:58 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(122), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9141] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(233), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9191] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(460), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(462), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(70), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 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 07:34:23 +00:00
[9241] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(39), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9291] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(101), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9341] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(40), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9391] = 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(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(206), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9441] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(208), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-11-30 16:05:09 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9491] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(55), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9541] = 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(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(207), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9591] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(80), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9641] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(75), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9691] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(74), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9741] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(47), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9791] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(231), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[9841] = 13,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(460), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(462), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(32), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 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 07:34:23 +00:00
[9891] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(102), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9941] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(81), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
[9991] = 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(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(235), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10041] = 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(460), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(462), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(31), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 03:54:25 +00:00
[10091] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(11), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(460), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(462), 1,
anon_sym_LBRACE,
STATE(26), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 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 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(229), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(50), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(226), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(82), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 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 07:34:23 +00:00
ACTIONS(11), 1,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(17), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(19), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(460), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(462), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(48), 1,
2023-11-30 16:05:09 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-11-30 16:05:09 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(42), 1,
sym_expression,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10441] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(460), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(462), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(41), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 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 07:34:23 +00:00
[10491] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(44), 1,
sym_expression,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10541] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(460), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(462), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(43), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(13), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(15), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(54), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10591] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(45), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10641] = 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(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(236), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10691] = 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(460), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
ACTIONS(462), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(34), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(336), 1,
2023-12-02 03:54:25 +00:00
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 07:34:23 +00:00
STATE(54), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(57), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10741] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(123), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10791] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(209), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10841] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(232), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10891] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(230), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10941] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(147), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[10991] = 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,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(83), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[11041] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(129), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(316), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[11091] = 13,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(228), 1,
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
sym_boolean,
sym_list,
sym_map,
2023-12-02 03:54:25 +00:00
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[11141] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(21), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
sym_integer,
ACTIONS(185), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_LPAREN,
STATE(77), 1,
sym_expression,
STATE(323), 1,
sym_type_definition,
ACTIONS(181), 2,
sym_float,
sym_string,
ACTIONS(183), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 4,
sym_boolean,
sym_list,
sym_map,
sym_function,
STATE(91), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11191] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(177), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(103), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[11241] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(175), 1,
sym_identifier,
ACTIONS(177), 1,
anon_sym_LBRACE,
ACTIONS(179), 1,
2023-12-02 03:54:25 +00:00
sym_integer,
2023-12-02 07:34:23 +00:00
ACTIONS(185), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(189), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
STATE(100), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(323), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(181), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(183), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(96), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(91), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[11291] = 13,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(21), 1,
anon_sym_LT,
ACTIONS(127), 1,
2023-12-02 07:34:23 +00:00
sym_integer,
ACTIONS(133), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(135), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
ACTIONS(223), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(225), 1,
anon_sym_LBRACE,
STATE(227), 1,
2023-12-02 03:54:25 +00:00
sym_expression,
2023-12-02 07:34:23 +00:00
STATE(326), 1,
2023-12-02 03:54:25 +00:00
sym_type_definition,
2023-12-02 07:34:23 +00:00
ACTIONS(129), 2,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
2023-12-02 07:34:23 +00:00
ACTIONS(131), 2,
2023-12-02 03:54:25 +00:00
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
STATE(106), 4,
2023-12-02 03:54:25 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
2023-12-02 07:34:23 +00:00
STATE(108), 6,
2023-12-02 03:54:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-12-02 07:34:23 +00:00
[11341] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(285), 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(287), 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,
[11370] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(372), 1,
anon_sym_DASH_GT,
ACTIONS(450), 1,
anon_sym_COLON,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(289), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(163), 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,
[11413] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(464), 1,
anon_sym_COLON,
STATE(167), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(117), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(115), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[11448] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(372), 1,
anon_sym_DASH_GT,
ACTIONS(464), 1,
anon_sym_COLON,
STATE(167), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(155), 4,
anon_sym_async,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(163), 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,
[11491] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(466), 1,
anon_sym_DOT_DOT,
STATE(167), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(171), 3,
anon_sym_DASH,
anon_sym_GT,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(169), 15,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[11526] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(468), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(470), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11555] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(472), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(474), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11584] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(476), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(478), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11613] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(480), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_SEMI,
2023-12-02 03:54:25 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(482), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11642] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(484), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(486), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11671] = 10,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
ACTIONS(372), 1,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(450), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(158), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(159), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(285), 4,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
[11714] = 11,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
ACTIONS(372), 1,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(450), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(488), 1,
anon_sym_SEMI,
STATE(158), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(159), 1,
sym_math_operator,
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(285), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
[11759] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(490), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(492), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11788] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(494), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(496), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11817] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(498), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(500), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11846] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(293), 1,
anon_sym_SEMI,
ACTIONS(285), 9,
2023-12-02 03:54:25 +00:00
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,
2023-12-02 07:34:23 +00:00
ACTIONS(287), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11877] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(167), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(171), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(169), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[11910] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(167), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(153), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(151), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[11943] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(502), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(504), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[11972] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(506), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(508), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-12-02 07:34:23 +00:00
[12001] = 3,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(349), 10,
2023-12-02 03:54:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
2023-12-02 07:34:23 +00:00
ACTIONS(351), 11,
2023-12-02 03:54:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[12030] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(510), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(512), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
anon_sym_COLON,
STATE(195), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(267), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[12076] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(516), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(518), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(195), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(224), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[12122] = 12,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-12-02 03:54:25 +00:00
anon_sym_COLON,
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(154), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
STATE(195), 1,
2023-12-02 03:54:25 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-12-02 03:54:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-12-02 03:54:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 6,
2023-12-02 03:54:25 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-12-02 07:34:23 +00:00
[12168] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(526), 1,
anon_sym_LBRACE,
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(270), 1,
sym_block,
ACTIONS(165), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12214] = 10,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
ACTIONS(372), 1,
anon_sym_DASH_GT,
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(155), 3,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_EQ_GT,
ACTIONS(161), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12256] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
anon_sym_async,
ACTIONS(526), 1,
anon_sym_LBRACE,
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(280), 1,
sym_block,
ACTIONS(165), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12302] = 6,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(117), 3,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(115), 14,
anon_sym_async,
anon_sym_LBRACE,
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 07:34:23 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[12336] = 12,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 16:05:09 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(211), 1,
sym_block,
ACTIONS(165), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12382] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(195), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(153), 3,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(151), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
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 07:34:23 +00:00
anon_sym_EQ_GT,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
[12414] = 12,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-12-02 03:54:25 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(510), 1,
anon_sym_async,
ACTIONS(512), 1,
anon_sym_LBRACE,
ACTIONS(514), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
STATE(195), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
STATE(268), 1,
sym_block,
ACTIONS(165), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12460] = 12,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(159), 1,
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(520), 1,
anon_sym_async,
ACTIONS(522), 1,
anon_sym_LBRACE,
STATE(152), 1,
sym_block,
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
sym_logic_operator,
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12506] = 6,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(534), 1,
anon_sym_fn,
STATE(330), 1,
sym_type,
ACTIONS(528), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(530), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
ACTIONS(532), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[12539] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 1,
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(536), 1,
anon_sym_EQ_GT,
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12579] = 3,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(540), 7,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
anon_sym_asyncfor,
ACTIONS(538), 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,
[12605] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(159), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH,
2023-12-02 07:34:23 +00:00
ACTIONS(372), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(514), 1,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
2023-12-02 07:34:23 +00:00
ACTIONS(542), 1,
anon_sym_EQ_GT,
STATE(195), 1,
2023-11-30 16:05:09 +00:00
sym_math_operator,
2023-12-02 07:34:23 +00:00
STATE(196), 1,
2023-12-02 03:54:25 +00:00
sym_logic_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(165), 2,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
anon_sym_LT,
2023-12-02 07:34:23 +00:00
ACTIONS(161), 4,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-12-02 07:34:23 +00:00
ACTIONS(163), 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 07:34:23 +00:00
[12645] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(546), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(552), 1,
2023-11-30 14:48:56 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(241), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 07:34:23 +00:00
STATE(252), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(544), 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 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(549), 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 07:34:23 +00:00
[12676] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(561), 1,
2023-11-30 14:48:56 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
ACTIONS(563), 1,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
STATE(243), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 07:34:23 +00:00
STATE(252), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(555), 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 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[12709] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(561), 1,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
ACTIONS(567), 1,
anon_sym_DASH_GT,
STATE(241), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 07:34:23 +00:00
STATE(252), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(565), 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 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[12742] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(561), 1,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
ACTIONS(569), 1,
anon_sym_DASH_GT,
STATE(246), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 07:34:23 +00:00
STATE(248), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(555), 2,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
anon_sym_GT,
2023-12-02 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[12774] = 7,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(546), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(552), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(245), 1,
2023-11-30 00:23:42 +00:00
aux_sym_type_repeat1,
2023-12-02 07:34:23 +00:00
STATE(248), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(544), 3,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
anon_sym_GT,
2023-12-02 07:34:23 +00:00
anon_sym_DASH_GT,
ACTIONS(549), 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 07:34:23 +00:00
[12804] = 8,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(561), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
ACTIONS(571), 1,
2023-11-30 14:48:56 +00:00
anon_sym_DASH_GT,
2023-12-02 07:34:23 +00:00
STATE(245), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-12-02 07:34:23 +00:00
STATE(248), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(565), 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 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[12836] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(504), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(502), 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,
[12857] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(573), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
ACTIONS(575), 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 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 07:34:23 +00:00
[12878] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(577), 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 07:34:23 +00:00
[12897] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(579), 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 07:34:23 +00:00
[12916] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(555), 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 07:34:23 +00:00
[12935] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(581), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
ACTIONS(575), 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 07:34:23 +00:00
[12956] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(544), 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 07:34:23 +00:00
[12975] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(584), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(408), 7,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-12-02 07:34:23 +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,
2023-12-02 07:34:23 +00:00
[12994] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(586), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-12-02 07:34:23 +00:00
ACTIONS(445), 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 07:34:23 +00:00
anon_sym_RPAREN,
2023-12-02 03:54:25 +00:00
anon_sym_LT,
2023-12-02 07:34:23 +00:00
[13013] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(588), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(330), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[13035] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(561), 1,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(250), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[13057] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(528), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(530), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
anon_sym_LPAREN,
anon_sym_LT,
[13075] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(590), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(592), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_LT,
[13093] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(561), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(249), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[13115] = 5,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(588), 1,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(325), 1,
2023-11-30 16:05:09 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[13137] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(588), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-12-02 07:34:23 +00:00
STATE(249), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-12-02 07:34:23 +00:00
ACTIONS(559), 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 07:34:23 +00:00
[13159] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(557), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-12-02 07:34:23 +00:00
ACTIONS(588), 1,
anon_sym_fn,
STATE(250), 1,
sym_type,
ACTIONS(559), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[13181] = 7,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(359), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(594), 1,
2023-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-12-02 07:34:23 +00:00
ACTIONS(596), 1,
2023-11-30 14:30:25 +00:00
anon_sym_else,
2023-12-02 07:34:23 +00:00
STATE(275), 1,
2023-11-30 14:30:25 +00:00
sym_else,
2023-12-02 07:34:23 +00:00
STATE(265), 2,
2023-11-30 14:30:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-02 07:34:23 +00:00
ACTIONS(357), 3,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-12-02 07:34:23 +00:00
[13206] = 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 07:34:23 +00:00
ACTIONS(594), 1,
2023-12-02 03:54:25 +00:00
anon_sym_elseif,
2023-12-02 07:34:23 +00:00
ACTIONS(596), 1,
2023-11-30 01:59:58 +00:00
anon_sym_else,
2023-12-02 07:34:23 +00:00
STATE(281), 1,
2023-12-02 03:54:25 +00:00
sym_else,
2023-12-02 07:34:23 +00:00
STATE(266), 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 07:34:23 +00:00
[13231] = 5,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(598), 1,
anon_sym_elseif,
2023-12-02 07:34:23 +00:00
ACTIONS(367), 2,
2023-11-30 14:30:25 +00:00
sym_identifier,
anon_sym_else,
2023-12-02 07:34:23 +00:00
STATE(266), 2,
2023-12-02 03:54:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-12-02 07:34:23 +00:00
ACTIONS(365), 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 07:34:23 +00:00
[13251] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(454), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_else,
2023-12-02 07:34:23 +00:00
ACTIONS(452), 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 07:34:23 +00:00
[13265] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(458), 2,
2023-11-30 16:05:09 +00:00
sym_identifier,
anon_sym_else,
2023-12-02 07:34:23 +00:00
ACTIONS(456), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
anon_sym_elseif,
2023-12-02 07:34:23 +00:00
[13279] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(484), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 07:34:23 +00:00
[13289] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(472), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 07:34:23 +00:00
[13299] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(37), 1,
2023-12-02 03:54:25 +00:00
sym_assignment_operator,
2023-12-02 07:34:23 +00:00
ACTIONS(215), 3,
2023-12-02 03:54:25 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
[13311] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(480), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 07:34:23 +00:00
[13321] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(601), 4,
2023-11-30 14:48:56 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
[13331] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(285), 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 07:34:23 +00:00
[13341] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(349), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-12-02 07:34:23 +00:00
[13351] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
STATE(33), 1,
sym_assignment_operator,
ACTIONS(215), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[13363] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 1,
2023-11-28 22:54:17 +00:00
anon_sym_SEMI,
2023-12-02 07:34:23 +00:00
ACTIONS(285), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
[13375] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(476), 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 07:34:23 +00:00
[13385] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(490), 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 07:34:23 +00:00
[13395] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(506), 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 07:34:23 +00:00
[13405] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(494), 4,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_identifier,
2023-12-02 07:34:23 +00:00
[13415] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(468), 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 07:34:23 +00:00
[13425] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(498), 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 07:34:23 +00:00
[13435] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(510), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(512), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(119), 1,
sym_block,
2023-12-02 07:34:23 +00:00
[13448] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(516), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(518), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(223), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13461] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(605), 1,
anon_sym_PIPE,
STATE(291), 1,
aux_sym_identifier_list_repeat1,
[13474] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(607), 1,
anon_sym_PIPE,
STATE(290), 1,
aux_sym_identifier_list_repeat1,
[13487] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(609), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(611), 1,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
STATE(293), 1,
2023-11-30 01:59:58 +00:00
aux_sym_map_repeat1,
2023-12-02 07:34:23 +00:00
[13500] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(615), 1,
anon_sym_COMMA,
ACTIONS(613), 2,
anon_sym_RBRACE,
sym_identifier,
[13511] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(617), 1,
2023-11-30 14:48:56 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
STATE(291), 1,
2023-11-30 14:48:56 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 07:34:23 +00:00
[13524] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(619), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(622), 1,
2023-12-02 03:54:25 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
STATE(291), 1,
aux_sym_identifier_list_repeat1,
[13537] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(526), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(279), 1,
2023-11-30 14:30:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13550] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(624), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(627), 1,
2023-12-02 03:54:25 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
STATE(293), 1,
2023-12-02 03:54:25 +00:00
aux_sym_map_repeat1,
2023-12-02 07:34:23 +00:00
[13563] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(41), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
ACTIONS(609), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
STATE(305), 1,
2023-11-30 16:05:09 +00:00
aux_sym_map_repeat1,
2023-12-02 07:34:23 +00:00
[13576] = 3,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(631), 1,
anon_sym_COMMA,
ACTIONS(629), 2,
2023-12-02 03:54:25 +00:00
sym_identifier,
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
[13587] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(633), 1,
2023-11-30 16:05:09 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
STATE(286), 1,
2023-11-30 16:05:09 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 07:34:23 +00:00
[13600] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(609), 1,
sym_identifier,
ACTIONS(635), 1,
anon_sym_RBRACE,
STATE(309), 1,
aux_sym_map_repeat1,
[13613] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(510), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(512), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(118), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13626] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(59), 1,
sym_block,
[13639] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(637), 1,
anon_sym_PIPE,
STATE(304), 1,
aux_sym_identifier_list_repeat1,
[13652] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(217), 1,
sym_block,
[13665] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(39), 1,
anon_sym_RBRACE,
ACTIONS(609), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
STATE(288), 1,
aux_sym_map_repeat1,
[13678] = 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,
2023-12-02 07:34:23 +00:00
STATE(98), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13691] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
sym_identifier,
ACTIONS(639), 1,
anon_sym_PIPE,
STATE(291), 1,
aux_sym_identifier_list_repeat1,
[13704] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(641), 1,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
2023-12-02 07:34:23 +00:00
STATE(293), 1,
2023-11-30 16:05:09 +00:00
aux_sym_map_repeat1,
2023-12-02 07:34:23 +00:00
[13717] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(526), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(247), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13730] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(524), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(526), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(94), 1,
sym_block,
[13743] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(516), 1,
anon_sym_async,
ACTIONS(518), 1,
anon_sym_LBRACE,
STATE(56), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13756] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 1,
sym_identifier,
ACTIONS(643), 1,
anon_sym_RBRACE,
STATE(293), 1,
aux_sym_map_repeat1,
[13769] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(645), 1,
2023-12-02 03:54:25 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
STATE(291), 1,
2023-12-02 03:54:25 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 07:34:23 +00:00
[13782] = 4,
2023-11-30 16:05:09 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(603), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
ACTIONS(647), 1,
2023-12-02 03:54:25 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
STATE(310), 1,
2023-12-02 03:54:25 +00:00
aux_sym_identifier_list_repeat1,
2023-12-02 07:34:23 +00:00
[13795] = 4,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(649), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(651), 1,
2023-12-02 03:54:25 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(119), 1,
2023-12-02 03:54:25 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13808] = 4,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(649), 1,
2023-12-02 03:54:25 +00:00
anon_sym_async,
2023-12-02 07:34:23 +00:00
ACTIONS(651), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
STATE(118), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-12-02 07:34:23 +00:00
[13821] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(622), 2,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
[13829] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(653), 2,
anon_sym_RBRACE,
2023-12-02 03:54:25 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
[13837] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(655), 1,
2023-12-02 03:54:25 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
[13844] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(657), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
[13851] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(659), 1,
anon_sym_LPAREN,
[13858] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(661), 1,
anon_sym_LBRACE,
[13865] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 1,
anon_sym_LPAREN,
[13872] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(665), 1,
anon_sym_LBRACE,
2023-12-02 07:34:23 +00:00
[13879] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(667), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
2023-12-02 07:34:23 +00:00
[13886] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-12-02 07:34:23 +00:00
ACTIONS(669), 1,
2023-12-02 03:54:25 +00:00
anon_sym_PIPE,
2023-12-02 07:34:23 +00:00
[13893] = 2,
2023-12-02 03:54:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
2023-12-02 07:34:23 +00:00
anon_sym_LBRACE,
[13900] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(673), 1,
2023-12-02 07:34:23 +00:00
anon_sym_RBRACK,
[13907] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(675), 1,
2023-12-02 07:34:23 +00:00
anon_sym_PIPE,
[13914] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(677), 1,
2023-12-02 07:34:23 +00:00
sym_string,
[13921] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(679), 1,
2023-12-02 07:34:23 +00:00
anon_sym_in,
[13928] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(681), 1,
2023-12-02 07:34:23 +00:00
sym_identifier,
[13935] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(683), 1,
2023-12-02 07:34:23 +00:00
anon_sym_GT,
[13942] = 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,
2023-12-02 07:34:23 +00:00
sym_string,
[13949] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(687), 1,
2023-12-02 07:34:23 +00:00
anon_sym_in,
[13956] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(689), 1,
2023-12-02 07:34:23 +00:00
ts_builtin_sym_end,
[13963] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(691), 1,
anon_sym_LPAREN,
2023-12-02 07:34:23 +00:00
[13970] = 2,
ACTIONS(3), 1,
sym__comment,
2023-12-02 03:54:25 +00:00
ACTIONS(693), 1,
2023-12-02 07:34:23 +00:00
anon_sym_EQ,
[13977] = 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,
2023-12-02 07:34:23 +00:00
[13984] = 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,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-12-02 07:34:23 +00:00
[SMALL_STATE(3)] = 100,
[SMALL_STATE(4)] = 200,
2023-12-02 03:54:25 +00:00
[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,
2023-12-02 07:34:23 +00:00
[SMALL_STATE(27)] = 2360,
[SMALL_STATE(28)] = 2453,
[SMALL_STATE(29)] = 2506,
[SMALL_STATE(30)] = 2599,
[SMALL_STATE(31)] = 2692,
[SMALL_STATE(32)] = 2757,
[SMALL_STATE(33)] = 2810,
[SMALL_STATE(34)] = 2903,
[SMALL_STATE(35)] = 2958,
[SMALL_STATE(36)] = 3051,
[SMALL_STATE(37)] = 3144,
[SMALL_STATE(38)] = 3237,
2023-12-02 03:54:25 +00:00
[SMALL_STATE(39)] = 3330,
2023-12-02 07:34:23 +00:00
[SMALL_STATE(40)] = 3418,
[SMALL_STATE(41)] = 3506,
[SMALL_STATE(42)] = 3560,
[SMALL_STATE(43)] = 3648,
[SMALL_STATE(44)] = 3700,
[SMALL_STATE(45)] = 3788,
[SMALL_STATE(46)] = 3876,
[SMALL_STATE(47)] = 3934,
[SMALL_STATE(48)] = 4022,
[SMALL_STATE(49)] = 4086,
[SMALL_STATE(50)] = 4133,
[SMALL_STATE(51)] = 4218,
[SMALL_STATE(52)] = 4275,
[SMALL_STATE(53)] = 4322,
[SMALL_STATE(54)] = 4369,
[SMALL_STATE(55)] = 4416,
[SMALL_STATE(56)] = 4501,
[SMALL_STATE(57)] = 4548,
[SMALL_STATE(58)] = 4595,
[SMALL_STATE(59)] = 4642,
[SMALL_STATE(60)] = 4689,
[SMALL_STATE(61)] = 4736,
[SMALL_STATE(62)] = 4783,
[SMALL_STATE(63)] = 4830,
[SMALL_STATE(64)] = 4877,
[SMALL_STATE(65)] = 4924,
[SMALL_STATE(66)] = 4971,
[SMALL_STATE(67)] = 5018,
[SMALL_STATE(68)] = 5071,
[SMALL_STATE(69)] = 5118,
[SMALL_STATE(70)] = 5179,
[SMALL_STATE(71)] = 5240,
[SMALL_STATE(72)] = 5303,
[SMALL_STATE(73)] = 5371,
[SMALL_STATE(74)] = 5439,
[SMALL_STATE(75)] = 5483,
[SMALL_STATE(76)] = 5537,
[SMALL_STATE(77)] = 5575,
[SMALL_STATE(78)] = 5617,
[SMALL_STATE(79)] = 5659,
[SMALL_STATE(80)] = 5697,
[SMALL_STATE(81)] = 5741,
[SMALL_STATE(82)] = 5782,
[SMALL_STATE(83)] = 5825,
[SMALL_STATE(84)] = 5878,
[SMALL_STATE(85)] = 5914,
[SMALL_STATE(86)] = 5968,
[SMALL_STATE(87)] = 6004,
[SMALL_STATE(88)] = 6058,
[SMALL_STATE(89)] = 6094,
[SMALL_STATE(90)] = 6130,
[SMALL_STATE(91)] = 6166,
[SMALL_STATE(92)] = 6202,
[SMALL_STATE(93)] = 6238,
[SMALL_STATE(94)] = 6274,
[SMALL_STATE(95)] = 6310,
[SMALL_STATE(96)] = 6346,
[SMALL_STATE(97)] = 6382,
[SMALL_STATE(98)] = 6418,
[SMALL_STATE(99)] = 6454,
[SMALL_STATE(100)] = 6490,
[SMALL_STATE(101)] = 6543,
[SMALL_STATE(102)] = 6596,
[SMALL_STATE(103)] = 6649,
[SMALL_STATE(104)] = 6690,
[SMALL_STATE(105)] = 6724,
[SMALL_STATE(106)] = 6758,
[SMALL_STATE(107)] = 6792,
[SMALL_STATE(108)] = 6826,
[SMALL_STATE(109)] = 6860,
[SMALL_STATE(110)] = 6894,
[SMALL_STATE(111)] = 6952,
[SMALL_STATE(112)] = 6986,
[SMALL_STATE(113)] = 7020,
[SMALL_STATE(114)] = 7078,
[SMALL_STATE(115)] = 7112,
[SMALL_STATE(116)] = 7154,
[SMALL_STATE(117)] = 7196,
[SMALL_STATE(118)] = 7230,
[SMALL_STATE(119)] = 7264,
[SMALL_STATE(120)] = 7298,
[SMALL_STATE(121)] = 7332,
[SMALL_STATE(122)] = 7366,
[SMALL_STATE(123)] = 7405,
[SMALL_STATE(124)] = 7444,
[SMALL_STATE(125)] = 7481,
[SMALL_STATE(126)] = 7514,
[SMALL_STATE(127)] = 7551,
[SMALL_STATE(128)] = 7584,
[SMALL_STATE(129)] = 7621,
[SMALL_STATE(130)] = 7670,
[SMALL_STATE(131)] = 7726,
[SMALL_STATE(132)] = 7782,
[SMALL_STATE(133)] = 7838,
[SMALL_STATE(134)] = 7894,
[SMALL_STATE(135)] = 7936,
[SMALL_STATE(136)] = 7992,
[SMALL_STATE(137)] = 8048,
[SMALL_STATE(138)] = 8104,
[SMALL_STATE(139)] = 8160,
[SMALL_STATE(140)] = 8216,
[SMALL_STATE(141)] = 8272,
[SMALL_STATE(142)] = 8328,
[SMALL_STATE(143)] = 8384,
[SMALL_STATE(144)] = 8440,
[SMALL_STATE(145)] = 8496,
[SMALL_STATE(146)] = 8534,
[SMALL_STATE(147)] = 8582,
[SMALL_STATE(148)] = 8618,
[SMALL_STATE(149)] = 8649,
[SMALL_STATE(150)] = 8680,
[SMALL_STATE(151)] = 8711,
[SMALL_STATE(152)] = 8748,
[SMALL_STATE(153)] = 8779,
[SMALL_STATE(154)] = 8810,
[SMALL_STATE(155)] = 8841,
[SMALL_STATE(156)] = 8891,
[SMALL_STATE(157)] = 8941,
[SMALL_STATE(158)] = 8991,
[SMALL_STATE(159)] = 9041,
[SMALL_STATE(160)] = 9091,
[SMALL_STATE(161)] = 9141,
[SMALL_STATE(162)] = 9191,
[SMALL_STATE(163)] = 9241,
[SMALL_STATE(164)] = 9291,
[SMALL_STATE(165)] = 9341,
[SMALL_STATE(166)] = 9391,
[SMALL_STATE(167)] = 9441,
[SMALL_STATE(168)] = 9491,
[SMALL_STATE(169)] = 9541,
[SMALL_STATE(170)] = 9591,
[SMALL_STATE(171)] = 9641,
[SMALL_STATE(172)] = 9691,
[SMALL_STATE(173)] = 9741,
[SMALL_STATE(174)] = 9791,
[SMALL_STATE(175)] = 9841,
[SMALL_STATE(176)] = 9891,
[SMALL_STATE(177)] = 9941,
[SMALL_STATE(178)] = 9991,
[SMALL_STATE(179)] = 10041,
[SMALL_STATE(180)] = 10091,
[SMALL_STATE(181)] = 10141,
[SMALL_STATE(182)] = 10191,
[SMALL_STATE(183)] = 10241,
[SMALL_STATE(184)] = 10291,
[SMALL_STATE(185)] = 10341,
[SMALL_STATE(186)] = 10391,
[SMALL_STATE(187)] = 10441,
[SMALL_STATE(188)] = 10491,
[SMALL_STATE(189)] = 10541,
[SMALL_STATE(190)] = 10591,
[SMALL_STATE(191)] = 10641,
[SMALL_STATE(192)] = 10691,
[SMALL_STATE(193)] = 10741,
[SMALL_STATE(194)] = 10791,
[SMALL_STATE(195)] = 10841,
[SMALL_STATE(196)] = 10891,
[SMALL_STATE(197)] = 10941,
[SMALL_STATE(198)] = 10991,
[SMALL_STATE(199)] = 11041,
[SMALL_STATE(200)] = 11091,
[SMALL_STATE(201)] = 11141,
[SMALL_STATE(202)] = 11191,
[SMALL_STATE(203)] = 11241,
[SMALL_STATE(204)] = 11291,
[SMALL_STATE(205)] = 11341,
[SMALL_STATE(206)] = 11370,
[SMALL_STATE(207)] = 11413,
[SMALL_STATE(208)] = 11448,
[SMALL_STATE(209)] = 11491,
[SMALL_STATE(210)] = 11526,
[SMALL_STATE(211)] = 11555,
[SMALL_STATE(212)] = 11584,
[SMALL_STATE(213)] = 11613,
[SMALL_STATE(214)] = 11642,
[SMALL_STATE(215)] = 11671,
[SMALL_STATE(216)] = 11714,
[SMALL_STATE(217)] = 11759,
[SMALL_STATE(218)] = 11788,
[SMALL_STATE(219)] = 11817,
[SMALL_STATE(220)] = 11846,
[SMALL_STATE(221)] = 11877,
[SMALL_STATE(222)] = 11910,
[SMALL_STATE(223)] = 11943,
[SMALL_STATE(224)] = 11972,
[SMALL_STATE(225)] = 12001,
[SMALL_STATE(226)] = 12030,
[SMALL_STATE(227)] = 12076,
[SMALL_STATE(228)] = 12122,
[SMALL_STATE(229)] = 12168,
[SMALL_STATE(230)] = 12214,
[SMALL_STATE(231)] = 12256,
[SMALL_STATE(232)] = 12302,
[SMALL_STATE(233)] = 12336,
[SMALL_STATE(234)] = 12382,
[SMALL_STATE(235)] = 12414,
[SMALL_STATE(236)] = 12460,
[SMALL_STATE(237)] = 12506,
[SMALL_STATE(238)] = 12539,
[SMALL_STATE(239)] = 12579,
[SMALL_STATE(240)] = 12605,
[SMALL_STATE(241)] = 12645,
[SMALL_STATE(242)] = 12676,
[SMALL_STATE(243)] = 12709,
[SMALL_STATE(244)] = 12742,
[SMALL_STATE(245)] = 12774,
[SMALL_STATE(246)] = 12804,
[SMALL_STATE(247)] = 12836,
[SMALL_STATE(248)] = 12857,
[SMALL_STATE(249)] = 12878,
[SMALL_STATE(250)] = 12897,
[SMALL_STATE(251)] = 12916,
[SMALL_STATE(252)] = 12935,
[SMALL_STATE(253)] = 12956,
[SMALL_STATE(254)] = 12975,
[SMALL_STATE(255)] = 12994,
[SMALL_STATE(256)] = 13013,
[SMALL_STATE(257)] = 13035,
[SMALL_STATE(258)] = 13057,
[SMALL_STATE(259)] = 13075,
[SMALL_STATE(260)] = 13093,
[SMALL_STATE(261)] = 13115,
[SMALL_STATE(262)] = 13137,
[SMALL_STATE(263)] = 13159,
[SMALL_STATE(264)] = 13181,
[SMALL_STATE(265)] = 13206,
[SMALL_STATE(266)] = 13231,
[SMALL_STATE(267)] = 13251,
[SMALL_STATE(268)] = 13265,
[SMALL_STATE(269)] = 13279,
[SMALL_STATE(270)] = 13289,
[SMALL_STATE(271)] = 13299,
[SMALL_STATE(272)] = 13311,
[SMALL_STATE(273)] = 13321,
[SMALL_STATE(274)] = 13331,
[SMALL_STATE(275)] = 13341,
[SMALL_STATE(276)] = 13351,
[SMALL_STATE(277)] = 13363,
[SMALL_STATE(278)] = 13375,
[SMALL_STATE(279)] = 13385,
[SMALL_STATE(280)] = 13395,
[SMALL_STATE(281)] = 13405,
[SMALL_STATE(282)] = 13415,
[SMALL_STATE(283)] = 13425,
[SMALL_STATE(284)] = 13435,
[SMALL_STATE(285)] = 13448,
[SMALL_STATE(286)] = 13461,
[SMALL_STATE(287)] = 13474,
[SMALL_STATE(288)] = 13487,
[SMALL_STATE(289)] = 13500,
[SMALL_STATE(290)] = 13511,
[SMALL_STATE(291)] = 13524,
[SMALL_STATE(292)] = 13537,
[SMALL_STATE(293)] = 13550,
[SMALL_STATE(294)] = 13563,
[SMALL_STATE(295)] = 13576,
2023-12-02 03:54:25 +00:00
[SMALL_STATE(296)] = 13587,
[SMALL_STATE(297)] = 13600,
[SMALL_STATE(298)] = 13613,
2023-12-02 07:34:23 +00:00
[SMALL_STATE(299)] = 13626,
[SMALL_STATE(300)] = 13639,
[SMALL_STATE(301)] = 13652,
[SMALL_STATE(302)] = 13665,
[SMALL_STATE(303)] = 13678,
[SMALL_STATE(304)] = 13691,
[SMALL_STATE(305)] = 13704,
[SMALL_STATE(306)] = 13717,
[SMALL_STATE(307)] = 13730,
[SMALL_STATE(308)] = 13743,
[SMALL_STATE(309)] = 13756,
[SMALL_STATE(310)] = 13769,
[SMALL_STATE(311)] = 13782,
[SMALL_STATE(312)] = 13795,
[SMALL_STATE(313)] = 13808,
[SMALL_STATE(314)] = 13821,
[SMALL_STATE(315)] = 13829,
[SMALL_STATE(316)] = 13837,
[SMALL_STATE(317)] = 13844,
[SMALL_STATE(318)] = 13851,
[SMALL_STATE(319)] = 13858,
[SMALL_STATE(320)] = 13865,
[SMALL_STATE(321)] = 13872,
[SMALL_STATE(322)] = 13879,
[SMALL_STATE(323)] = 13886,
[SMALL_STATE(324)] = 13893,
[SMALL_STATE(325)] = 13900,
[SMALL_STATE(326)] = 13907,
[SMALL_STATE(327)] = 13914,
[SMALL_STATE(328)] = 13921,
[SMALL_STATE(329)] = 13928,
[SMALL_STATE(330)] = 13935,
[SMALL_STATE(331)] = 13942,
[SMALL_STATE(332)] = 13949,
[SMALL_STATE(333)] = 13956,
[SMALL_STATE(334)] = 13963,
[SMALL_STATE(335)] = 13970,
[SMALL_STATE(336)] = 13977,
[SMALL_STATE(337)] = 13984,
};
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 07:34:23 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(46),
[48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(317),
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54),
[57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54),
[60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(68),
[63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(136),
[66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(190),
[69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(256),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(191),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168),
[78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(161),
[81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329),
[84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329),
[87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(162),
[90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(331),
[93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337),
[125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
[129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
[139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
[141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
[143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322),
[145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166),
[149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327),
[151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259),
[161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
[167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86),
[185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237),
[195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239),
[213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256),
[215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108),
[225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29),
[229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5),
[253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 5),
[279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 5),
[281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(108),
[304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(294),
[309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(106),
[312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(106),
[315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(107),
[318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(131),
[321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(165),
[324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(256),
[327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
2023-12-02 03:54:25 +00:00
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
2023-12-02 07:34:23 +00:00
[353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301),
[357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(200),
[372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(91),
[393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(297),
[396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96),
[399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96),
[402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(86),
[405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(135),
[408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(186),
[413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(256),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(91),
[427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(297),
[430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96),
[433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96),
[436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(86),
[439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(135),
[442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(186),
[445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(256),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
2023-12-02 03:54:25 +00:00
[472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
2023-12-02 07:34:23 +00:00
[476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251),
[534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
[538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(261),
[549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(251),
[552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(242),
[555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), SHIFT_REPEAT(253),
[584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(178),
[601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(295),
[622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(335),
[627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
2023-12-02 03:54:25 +00:00
[629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
2023-12-02 07:34:23 +00:00
[631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[689] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
2023-12-02 03:54:25 +00:00
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
};
#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