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

12335 lines
278 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-11-30 16:05:09 +00:00
#define STATE_COUNT 313
#define LARGE_STATE_COUNT 2
2023-11-30 16:05:09 +00:00
#define SYMBOL_COUNT 95
#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,
sym_function_declaration = 84,
sym_function = 85,
sym_function_call = 86,
sym_yield = 87,
aux_sym_root_repeat1 = 88,
aux_sym_list_repeat1 = 89,
aux_sym_map_repeat1 = 90,
aux_sym_if_else_repeat1 = 91,
aux_sym_match_repeat1 = 92,
aux_sym_identifier_list_repeat1 = 93,
aux_sym_type_repeat1 = 94,
};
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",
2023-11-30 14:30:25 +00:00
[sym_function_declaration] = "function_declaration",
[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,
2023-11-30 14:30:25 +00:00
[sym_function_declaration] = sym_function_declaration,
[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 14:30:25 +00:00
[sym_function_declaration] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_yield] = {
.visible = true,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = {
.visible = false,
.named = false,
},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
2023-11-30 14:30:25 +00:00
[3] = 3,
[4] = 2,
2023-11-28 22:54:17 +00:00
[5] = 5,
2023-11-30 00:23:42 +00:00
[6] = 6,
2023-11-30 16:05:09 +00:00
[7] = 7,
[8] = 7,
[9] = 9,
[10] = 10,
[11] = 7,
[12] = 12,
[13] = 7,
2023-11-30 14:30:25 +00:00
[14] = 14,
2023-11-30 16:05:09 +00:00
[15] = 9,
2023-11-30 14:30:25 +00:00
[16] = 14,
2023-11-30 16:05:09 +00:00
[17] = 9,
[18] = 9,
[19] = 19,
[20] = 12,
2023-11-30 14:30:25 +00:00
[21] = 21,
2023-11-30 16:05:09 +00:00
[22] = 19,
[23] = 21,
[24] = 19,
[25] = 21,
[26] = 6,
[27] = 10,
[28] = 19,
[29] = 29,
2023-11-30 14:30:25 +00:00
[30] = 21,
2023-11-30 16:05:09 +00:00
[31] = 31,
2023-11-30 14:30:25 +00:00
[32] = 32,
2023-11-30 16:05:09 +00:00
[33] = 33,
2023-11-28 22:54:17 +00:00
[34] = 34,
[35] = 35,
2023-11-30 16:05:09 +00:00
[36] = 36,
[37] = 37,
2023-11-28 22:54:17 +00:00
[38] = 38,
2023-11-30 14:30:25 +00:00
[39] = 39,
2023-11-30 01:59:58 +00:00
[40] = 40,
2023-11-30 00:23:42 +00:00
[41] = 41,
2023-11-30 01:59:58 +00:00
[42] = 42,
2023-11-30 16:05:09 +00:00
[43] = 31,
[44] = 44,
2023-11-30 16:05:09 +00:00
[45] = 45,
2023-11-30 01:59:58 +00:00
[46] = 46,
2023-11-30 14:30:25 +00:00
[47] = 47,
2023-11-30 16:05:09 +00:00
[48] = 48,
[49] = 49,
[50] = 40,
2023-11-30 14:30:25 +00:00
[51] = 51,
[52] = 52,
2023-11-30 16:05:09 +00:00
[53] = 48,
[54] = 54,
2023-11-30 14:30:25 +00:00
[55] = 55,
2023-11-30 16:05:09 +00:00
[56] = 55,
[57] = 57,
[58] = 54,
2023-11-30 14:30:25 +00:00
[59] = 59,
[60] = 59,
2023-11-30 16:05:09 +00:00
[61] = 59,
[62] = 62,
[63] = 63,
2023-11-30 16:05:09 +00:00
[64] = 6,
[65] = 10,
[66] = 14,
[67] = 12,
[68] = 14,
[69] = 10,
[70] = 14,
[71] = 14,
[72] = 10,
[73] = 6,
[74] = 12,
[75] = 12,
[76] = 6,
[77] = 51,
[78] = 37,
[79] = 39,
[80] = 6,
[81] = 33,
[82] = 10,
[83] = 49,
[84] = 35,
[85] = 45,
[86] = 44,
[87] = 46,
[88] = 34,
[89] = 52,
[90] = 90,
[91] = 91,
[92] = 36,
[93] = 32,
[94] = 12,
[95] = 51,
[96] = 32,
[97] = 44,
[98] = 37,
[99] = 45,
[100] = 39,
[101] = 35,
[102] = 49,
[103] = 33,
[104] = 34,
[105] = 46,
[106] = 52,
[107] = 36,
2023-11-30 14:30:25 +00:00
[108] = 108,
[109] = 109,
[110] = 110,
2023-11-30 16:05:09 +00:00
[111] = 29,
[112] = 63,
[113] = 42,
[114] = 62,
2023-11-30 00:23:42 +00:00
[115] = 115,
2023-11-30 16:05:09 +00:00
[116] = 116,
[117] = 117,
2023-11-30 14:30:25 +00:00
[118] = 118,
[119] = 119,
2023-11-30 16:05:09 +00:00
[120] = 120,
2023-11-30 14:30:25 +00:00
[121] = 121,
2023-11-30 16:05:09 +00:00
[122] = 122,
[123] = 123,
[124] = 122,
2023-11-30 14:30:25 +00:00
[125] = 125,
2023-11-30 16:05:09 +00:00
[126] = 121,
[127] = 55,
[128] = 121,
[129] = 125,
2023-11-30 01:59:58 +00:00
[130] = 130,
2023-11-30 16:05:09 +00:00
[131] = 123,
[132] = 55,
[133] = 130,
[134] = 123,
[135] = 57,
[136] = 122,
[137] = 125,
[138] = 130,
2023-11-30 01:59:58 +00:00
[139] = 139,
2023-11-30 14:30:25 +00:00
[140] = 140,
[141] = 141,
2023-11-30 16:05:09 +00:00
[142] = 141,
2023-11-30 14:30:25 +00:00
[143] = 143,
2023-11-30 16:05:09 +00:00
[144] = 115,
2023-11-30 14:30:25 +00:00
[145] = 145,
[146] = 146,
2023-11-30 14:48:56 +00:00
[147] = 147,
2023-11-30 14:30:25 +00:00
[148] = 148,
2023-11-30 14:48:56 +00:00
[149] = 149,
2023-11-30 16:05:09 +00:00
[150] = 150,
[151] = 143,
2023-11-30 14:30:25 +00:00
[152] = 152,
2023-11-30 16:05:09 +00:00
[153] = 118,
2023-11-30 14:30:25 +00:00
[154] = 154,
[155] = 155,
2023-11-30 16:05:09 +00:00
[156] = 156,
[157] = 157,
[158] = 140,
[159] = 155,
[160] = 160,
2023-11-28 22:54:17 +00:00
[161] = 161,
2023-11-30 16:05:09 +00:00
[162] = 162,
2023-11-30 14:48:56 +00:00
[163] = 163,
2023-11-30 16:05:09 +00:00
[164] = 152,
[165] = 165,
2023-11-30 01:59:58 +00:00
[166] = 166,
2023-11-30 16:05:09 +00:00
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 167,
[172] = 172,
[173] = 166,
[174] = 169,
[175] = 165,
[176] = 176,
[177] = 177,
2023-11-30 14:30:25 +00:00
[178] = 178,
2023-11-30 16:05:09 +00:00
[179] = 179,
[180] = 180,
[181] = 178,
[182] = 178,
[183] = 180,
[184] = 178,
[185] = 180,
[186] = 165,
[187] = 187,
[188] = 168,
[189] = 165,
[190] = 167,
[191] = 172,
[192] = 177,
[193] = 187,
[194] = 178,
[195] = 180,
[196] = 176,
[197] = 165,
[198] = 180,
[199] = 178,
[200] = 180,
[201] = 172,
[202] = 165,
[203] = 170,
[204] = 179,
[205] = 179,
[206] = 169,
2023-11-30 14:30:25 +00:00
[207] = 207,
[208] = 208,
[209] = 209,
2023-11-30 16:05:09 +00:00
[210] = 209,
[211] = 207,
[212] = 208,
[213] = 207,
[214] = 208,
2023-11-30 14:48:56 +00:00
[215] = 215,
2023-11-30 16:05:09 +00:00
[216] = 215,
2023-11-30 14:48:56 +00:00
[217] = 217,
2023-11-30 16:05:09 +00:00
[218] = 215,
[219] = 219,
[220] = 220,
[221] = 221,
[222] = 219,
[223] = 220,
[224] = 221,
2023-11-28 22:54:17 +00:00
[225] = 225,
2023-11-30 16:05:09 +00:00
[226] = 226,
[227] = 226,
[228] = 228,
2023-11-30 14:48:56 +00:00
[229] = 229,
[230] = 230,
2023-11-30 16:05:09 +00:00
[231] = 115,
[232] = 118,
[233] = 156,
[234] = 234,
[235] = 234,
[236] = 236,
[237] = 237,
2023-11-30 14:48:56 +00:00
[238] = 238,
2023-11-30 16:05:09 +00:00
[239] = 239,
2023-11-30 14:48:56 +00:00
[240] = 238,
2023-11-30 16:05:09 +00:00
[241] = 241,
[242] = 109,
[243] = 243,
[244] = 244,
[245] = 108,
[246] = 110,
[247] = 116,
[248] = 248,
[249] = 115,
[250] = 248,
[251] = 117,
[252] = 118,
[253] = 157,
[254] = 139,
[255] = 150,
[256] = 147,
2023-11-30 14:48:56 +00:00
[257] = 257,
2023-11-30 16:05:09 +00:00
[258] = 154,
[259] = 161,
[260] = 160,
[261] = 162,
[262] = 146,
[263] = 152,
[264] = 145,
[265] = 163,
[266] = 148,
[267] = 149,
[268] = 152,
2023-11-30 14:48:56 +00:00
[269] = 269,
[270] = 270,
[271] = 271,
2023-11-30 00:23:42 +00:00
[272] = 272,
2023-11-30 16:05:09 +00:00
[273] = 273,
[274] = 274,
[275] = 275,
[276] = 269,
[277] = 277,
[278] = 271,
2023-11-30 14:48:56 +00:00
[279] = 279,
2023-11-28 22:54:17 +00:00
[280] = 280,
2023-11-30 01:59:58 +00:00
[281] = 281,
2023-11-30 16:05:09 +00:00
[282] = 275,
[283] = 273,
[284] = 273,
[285] = 274,
[286] = 271,
2023-11-30 01:59:58 +00:00
[287] = 287,
2023-11-30 16:05:09 +00:00
[288] = 279,
[289] = 272,
[290] = 281,
[291] = 291,
[292] = 292,
[293] = 293,
[294] = 294,
[295] = 295,
[296] = 296,
[297] = 297,
[298] = 298,
[299] = 299,
[300] = 300,
[301] = 298,
[302] = 294,
[303] = 294,
[304] = 300,
[305] = 305,
[306] = 299,
[307] = 297,
[308] = 300,
[309] = 309,
[310] = 297,
[311] = 300,
[312] = 309,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-11-30 14:30:25 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-30 16:05:09 +00:00
if (lookahead == '(') ADVANCE(53);
if (lookahead == ')') ADVANCE(54);
2023-11-30 14:30:25 +00:00
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
2023-11-30 16:05:09 +00:00
if (lookahead == ',') ADVANCE(31);
2023-11-30 14:30:25 +00:00
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(51);
2023-11-30 14:30:25 +00:00
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
2023-11-30 16:05:09 +00:00
if (lookahead == '=') ADVANCE(50);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(69);
2023-11-30 16:05:09 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(15);
2023-11-30 16:05:09 +00:00
if (lookahead == 'a') ADVANCE(39);
if (lookahead == 'e') ADVANCE(37);
2023-11-30 14:30:25 +00:00
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(78);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 16:05:09 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 1:
2023-11-30 14:30:25 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-30 16:05:09 +00:00
if (lookahead == '(') ADVANCE(53);
if (lookahead == ')') ADVANCE(54);
2023-11-30 14:30:25 +00:00
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(55);
2023-11-30 16:05:09 +00:00
if (lookahead == ',') ADVANCE(31);
2023-11-30 14:30:25 +00:00
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(51);
2023-11-30 14:30:25 +00:00
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(13);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(69);
2023-11-30 16:05:09 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(15);
2023-11-30 14:30:25 +00:00
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 16:05:09 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 2:
2023-11-30 14:30:25 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
2023-11-30 16:05:09 +00:00
if (lookahead == ')') ADVANCE(54);
2023-11-30 14:30:25 +00:00
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
2023-11-30 16:05:09 +00:00
if (lookahead == ',') ADVANCE(31);
2023-11-30 14:30:25 +00:00
if (lookahead == '-') ADVANCE(57);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
2023-11-30 16:05:09 +00:00
if (lookahead == ':') ADVANCE(51);
2023-11-30 14:30:25 +00:00
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
2023-11-30 16:05:09 +00:00
if (lookahead == '=') ADVANCE(50);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(69);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
2023-11-30 14:30:25 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 3:
2023-11-30 14:30:25 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
2023-11-30 16:05:09 +00:00
if (lookahead == ',') ADVANCE(31);
2023-11-30 14:30:25 +00:00
if (lookahead == '-') ADVANCE(57);
if (lookahead == '/') ADVANCE(62);
2023-11-30 16:05:09 +00:00
if (lookahead == ':') ADVANCE(51);
2023-11-30 14:30:25 +00:00
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
2023-11-30 16:05:09 +00:00
if (lookahead == '=') ADVANCE(49);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(69);
if (lookahead == '|') ADVANCE(22);
2023-11-30 14:30:25 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 4:
2023-11-30 14:30:25 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(55);
2023-11-30 16:05:09 +00:00
if (lookahead == ',') ADVANCE(31);
2023-11-30 14:30:25 +00:00
if (lookahead == '-') ADVANCE(58);
if (lookahead == '/') ADVANCE(62);
2023-11-30 16:05:09 +00:00
if (lookahead == ':') ADVANCE(51);
2023-11-30 14:30:25 +00:00
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(14);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(69);
2023-11-30 16:05:09 +00:00
if (lookahead == 'e') ADVANCE(37);
if (lookahead == '|') ADVANCE(22);
2023-11-30 14:30:25 +00:00
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 5:
2023-11-30 16:05:09 +00:00
if (lookahead == '"') ADVANCE(45);
2023-11-30 14:30:25 +00:00
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '+') ADVANCE(11);
2023-11-30 16:05:09 +00:00
if (lookahead == ',') ADVANCE(31);
2023-11-30 14:30:25 +00:00
if (lookahead == '-') ADVANCE(12);
2023-11-30 16:05:09 +00:00
if (lookahead == '=') ADVANCE(48);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(68);
2023-11-30 16:05:09 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(47);
2023-11-30 14:30:25 +00:00
if (lookahead == '|') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(6)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 14:30:25 +00:00
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
case 7:
2023-11-30 14:30:25 +00:00
if (lookahead == '&') ADVANCE(66);
END_STATE();
case 8:
2023-11-30 16:05:09 +00:00
if (lookahead == '\'') ADVANCE(45);
2023-11-30 14:30:25 +00:00
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
2023-11-30 16:05:09 +00:00
if (lookahead == '.') ADVANCE(52);
END_STATE();
case 10:
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(65);
END_STATE();
case 11:
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(73);
END_STATE();
case 12:
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(74);
if (lookahead == '>') ADVANCE(79);
END_STATE();
case 13:
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(64);
END_STATE();
case 14:
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(64);
if (lookahead == '>') ADVANCE(76);
END_STATE();
case 15:
2023-11-30 16:05:09 +00:00
if (lookahead == '`') ADVANCE(45);
if (lookahead != 0) ADVANCE(15);
END_STATE();
case 16:
if (lookahead == 'f') ADVANCE(19);
END_STATE();
case 17:
2023-11-30 14:30:25 +00:00
if (lookahead == 'f') ADVANCE(75);
END_STATE();
case 18:
if (lookahead == 'i') ADVANCE(17);
END_STATE();
case 19:
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 20:
2023-11-30 14:30:25 +00:00
if (lookahead == 'r') ADVANCE(77);
END_STATE();
case 21:
2023-11-30 14:30:25 +00:00
if (lookahead == '|') ADVANCE(27);
if (lookahead == '\n' ||
2023-11-30 14:30:25 +00:00
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 22:
2023-11-30 14:30:25 +00:00
if (lookahead == '|') ADVANCE(67);
END_STATE();
case 23:
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
END_STATE();
case 24:
2023-11-30 14:30:25 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(21);
2023-11-30 14:30:25 +00:00
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-30 16:05:09 +00:00
if (lookahead == '(') ADVANCE(53);
2023-11-30 14:30:25 +00:00
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
if (lookahead == ':') ADVANCE(51);
2023-11-30 14:30:25 +00:00
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
2023-11-30 16:05:09 +00:00
if (lookahead == '=') ADVANCE(49);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(69);
2023-11-30 16:05:09 +00:00
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(15);
2023-11-30 16:05:09 +00:00
if (lookahead == 'a') ADVANCE(39);
2023-11-30 14:30:25 +00:00
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-30 14:30:25 +00:00
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 16:05:09 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 25:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-11-30 14:30:25 +00:00
case 26:
ACCEPT_TOKEN(sym__comment);
END_STATE();
2023-11-30 14:30:25 +00:00
case 27:
ACCEPT_TOKEN(sym__comment);
2023-11-30 14:30:25 +00:00
if (lookahead == '|') ADVANCE(27);
if (lookahead == '\n' ||
2023-11-30 14:30:25 +00:00
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(21);
END_STATE();
2023-11-30 14:30:25 +00:00
case 28:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 29:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 30:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
2023-11-30 14:30:25 +00:00
case 31:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-11-30 14:30:25 +00:00
case 32:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-11-30 14:30:25 +00:00
case 33:
2023-11-30 16:05:09 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 34:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 35:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 'c') ADVANCE(34);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 'e') ADVANCE(33);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 37:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 'l') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 38:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 'n') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 39:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 's') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 40:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 's') ADVANCE(36);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 41:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (lookahead == 'y') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 42:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 16:05:09 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(42);
END_STATE();
2023-11-30 14:30:25 +00:00
case 43:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_integer);
2023-11-30 14:30:25 +00:00
if (lookahead == '.') ADVANCE(23);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
2023-11-30 16:05:09 +00:00
case 44:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_float);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44);
END_STATE();
2023-11-30 16:05:09 +00:00
case 45:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-11-30 16:05:09 +00:00
case 46:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 47:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-30 16:05:09 +00:00
case 48:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
2023-11-30 16:05:09 +00:00
case 49:
ACCEPT_TOKEN(anon_sym_EQ);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(64);
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-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(64);
if (lookahead == '>') ADVANCE(76);
END_STATE();
2023-11-30 16:05:09 +00:00
case 51:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
2023-11-30 16:05:09 +00:00
case 52:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
2023-11-30 16:05:09 +00:00
case 53:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
2023-11-30 14:30:25 +00:00
case 55:
ACCEPT_TOKEN(anon_sym_PLUS);
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);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(73);
END_STATE();
2023-11-30 14:30:25 +00:00
case 57:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(74);
if (lookahead == '>') ADVANCE(79);
END_STATE();
2023-11-30 14:30:25 +00:00
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(79);
END_STATE();
2023-11-30 14:30:25 +00:00
case 59:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(74);
if (lookahead == '>') ADVANCE(79);
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-11-30 16:05:09 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
2023-11-30 14:30:25 +00:00
if (lookahead == '>') ADVANCE(79);
END_STATE();
2023-11-30 14:30:25 +00:00
case 61:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-30 14:30:25 +00:00
case 62:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-30 14:30:25 +00:00
case 63:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 64:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 65:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 66:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-30 14:30:25 +00:00
case 67:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 68:
ACCEPT_TOKEN(anon_sym_GT);
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);
2023-11-30 14:30:25 +00:00
if (lookahead == '=') ADVANCE(71);
END_STATE();
2023-11-30 14:30:25 +00:00
case 70:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LT);
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-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 72:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 73:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 74:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-11-30 14:30:25 +00:00
case 75:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-11-30 14:30:25 +00:00
case 76:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
2023-11-30 14:30:25 +00:00
case 77:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
2023-11-30 14:30:25 +00:00
case 78:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
2023-11-30 14:30:25 +00:00
case 79:
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-11-30 14:30:25 +00:00
[1] = {.lex_state = 24},
[2] = {.lex_state = 24},
[3] = {.lex_state = 24},
[4] = {.lex_state = 24},
[5] = {.lex_state = 24},
[6] = {.lex_state = 24},
[7] = {.lex_state = 24},
[8] = {.lex_state = 24},
[9] = {.lex_state = 24},
[10] = {.lex_state = 24},
[11] = {.lex_state = 24},
[12] = {.lex_state = 24},
[13] = {.lex_state = 24},
[14] = {.lex_state = 24},
[15] = {.lex_state = 24},
[16] = {.lex_state = 24},
[17] = {.lex_state = 24},
[18] = {.lex_state = 24},
[19] = {.lex_state = 24},
[20] = {.lex_state = 24},
[21] = {.lex_state = 24},
[22] = {.lex_state = 24},
[23] = {.lex_state = 24},
[24] = {.lex_state = 24},
[25] = {.lex_state = 24},
[26] = {.lex_state = 24},
[27] = {.lex_state = 24},
[28] = {.lex_state = 24},
[29] = {.lex_state = 24},
[30] = {.lex_state = 24},
[31] = {.lex_state = 24},
[32] = {.lex_state = 24},
[33] = {.lex_state = 24},
[34] = {.lex_state = 24},
[35] = {.lex_state = 24},
[36] = {.lex_state = 24},
[37] = {.lex_state = 24},
[38] = {.lex_state = 24},
[39] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[40] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[41] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[42] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[43] = {.lex_state = 24},
[44] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[45] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[46] = {.lex_state = 24},
[47] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[48] = {.lex_state = 24},
[49] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[50] = {.lex_state = 24},
[51] = {.lex_state = 24},
[52] = {.lex_state = 24},
[53] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[54] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[55] = {.lex_state = 24},
[56] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[57] = {.lex_state = 24},
[58] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[59] = {.lex_state = 1},
[60] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[61] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[62] = {.lex_state = 24},
[63] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[64] = {.lex_state = 1},
[65] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[66] = {.lex_state = 1},
[67] = {.lex_state = 1},
[68] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[69] = {.lex_state = 2},
[70] = {.lex_state = 2},
[71] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[72] = {.lex_state = 1},
[73] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[74] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[75] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[76] = {.lex_state = 2},
[77] = {.lex_state = 1},
[78] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[79] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[80] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[81] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[82] = {.lex_state = 2},
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-11-30 14:30:25 +00:00
[94] = {.lex_state = 2},
[95] = {.lex_state = 2},
[96] = {.lex_state = 2},
[97] = {.lex_state = 2},
[98] = {.lex_state = 2},
[99] = {.lex_state = 2},
[100] = {.lex_state = 2},
[101] = {.lex_state = 2},
[102] = {.lex_state = 2},
[103] = {.lex_state = 2},
[104] = {.lex_state = 2},
[105] = {.lex_state = 2},
[106] = {.lex_state = 2},
[107] = {.lex_state = 2},
[108] = {.lex_state = 0},
[109] = {.lex_state = 0},
2023-11-30 16:05:09 +00:00
[110] = {.lex_state = 0},
[111] = {.lex_state = 3},
2023-11-30 14:30:25 +00:00
[112] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[113] = {.lex_state = 3},
[114] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[115] = {.lex_state = 0},
2023-11-30 16:05:09 +00:00
[116] = {.lex_state = 0},
[117] = {.lex_state = 0},
[118] = {.lex_state = 0},
2023-11-30 14:30:25 +00:00
[119] = {.lex_state = 1},
[120] = {.lex_state = 1},
[121] = {.lex_state = 1},
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[126] = {.lex_state = 1},
[127] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[128] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[129] = {.lex_state = 1},
[130] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[131] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[132] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[133] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[134] = {.lex_state = 1},
[135] = {.lex_state = 2},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[139] = {.lex_state = 24},
2023-11-30 14:48:56 +00:00
[140] = {.lex_state = 2},
2023-11-30 16:05:09 +00:00
[141] = {.lex_state = 2},
[142] = {.lex_state = 2},
[143] = {.lex_state = 2},
[144] = {.lex_state = 24},
[145] = {.lex_state = 24},
[146] = {.lex_state = 24},
[147] = {.lex_state = 24},
[148] = {.lex_state = 24},
[149] = {.lex_state = 24},
[150] = {.lex_state = 24},
[151] = {.lex_state = 2},
2023-11-30 14:30:25 +00:00
[152] = {.lex_state = 24},
2023-11-30 14:48:56 +00:00
[153] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[154] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[155] = {.lex_state = 2},
[156] = {.lex_state = 24},
[157] = {.lex_state = 24},
[158] = {.lex_state = 2},
[159] = {.lex_state = 2},
[160] = {.lex_state = 24},
2023-11-30 14:30:25 +00:00
[161] = {.lex_state = 24},
2023-11-30 16:05:09 +00:00
[162] = {.lex_state = 24},
[163] = {.lex_state = 24},
[164] = {.lex_state = 24},
2023-11-30 14:48:56 +00:00
[165] = {.lex_state = 1},
[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},
[175] = {.lex_state = 1},
[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},
[183] = {.lex_state = 1},
[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},
[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},
[204] = {.lex_state = 1},
[205] = {.lex_state = 1},
[206] = {.lex_state = 1},
[207] = {.lex_state = 2},
[208] = {.lex_state = 2},
[209] = {.lex_state = 4},
[210] = {.lex_state = 4},
[211] = {.lex_state = 2},
[212] = {.lex_state = 2},
[213] = {.lex_state = 2},
[214] = {.lex_state = 2},
[215] = {.lex_state = 2},
[216] = {.lex_state = 2},
[217] = {.lex_state = 24},
[218] = {.lex_state = 2},
[219] = {.lex_state = 6},
[220] = {.lex_state = 6},
[221] = {.lex_state = 6},
[222] = {.lex_state = 6},
[223] = {.lex_state = 6},
[224] = {.lex_state = 6},
[225] = {.lex_state = 6},
[226] = {.lex_state = 6},
[227] = {.lex_state = 6},
[228] = {.lex_state = 6},
[229] = {.lex_state = 6},
[230] = {.lex_state = 6},
[231] = {.lex_state = 1},
[232] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[233] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[234] = {.lex_state = 1},
[235] = {.lex_state = 1},
[236] = {.lex_state = 1},
[237] = {.lex_state = 1},
[238] = {.lex_state = 1},
[239] = {.lex_state = 1},
[240] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[241] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[242] = {.lex_state = 4},
2023-11-30 14:30:25 +00:00
[243] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[244] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[245] = {.lex_state = 4},
[246] = {.lex_state = 4},
[247] = {.lex_state = 4},
[248] = {.lex_state = 6},
[249] = {.lex_state = 4},
[250] = {.lex_state = 6},
[251] = {.lex_state = 4},
[252] = {.lex_state = 4},
2023-11-30 14:30:25 +00:00
[253] = {.lex_state = 1},
[254] = {.lex_state = 1},
[255] = {.lex_state = 1},
[256] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[257] = {.lex_state = 6},
[258] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[259] = {.lex_state = 1},
[260] = {.lex_state = 1},
[261] = {.lex_state = 1},
[262] = {.lex_state = 1},
[263] = {.lex_state = 1},
[264] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[265] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[266] = {.lex_state = 1},
[267] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[268] = {.lex_state = 1},
[269] = {.lex_state = 1},
[270] = {.lex_state = 6},
2023-11-30 14:30:25 +00:00
[271] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[272] = {.lex_state = 6},
2023-11-30 16:05:09 +00:00
[273] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[274] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[275] = {.lex_state = 6},
2023-11-30 14:30:25 +00:00
[276] = {.lex_state = 1},
[277] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[278] = {.lex_state = 1},
[279] = {.lex_state = 1},
[280] = {.lex_state = 6},
2023-11-30 14:30:25 +00:00
[281] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[282] = {.lex_state = 6},
[283] = {.lex_state = 1},
2023-11-30 14:48:56 +00:00
[284] = {.lex_state = 1},
2023-11-30 16:05:09 +00:00
[285] = {.lex_state = 1},
[286] = {.lex_state = 1},
[287] = {.lex_state = 1},
[288] = {.lex_state = 1},
[289] = {.lex_state = 6},
[290] = {.lex_state = 1},
[291] = {.lex_state = 6},
2023-11-30 14:48:56 +00:00
[292] = {.lex_state = 1},
[293] = {.lex_state = 0},
2023-11-30 16:05:09 +00:00
[294] = {.lex_state = 1},
2023-11-30 14:30:25 +00:00
[295] = {.lex_state = 0},
2023-11-30 16:05:09 +00:00
[296] = {.lex_state = 24},
[297] = {.lex_state = 0},
[298] = {.lex_state = 0},
[299] = {.lex_state = 1},
[300] = {.lex_state = 0},
[301] = {.lex_state = 0},
[302] = {.lex_state = 1},
[303] = {.lex_state = 1},
[304] = {.lex_state = 0},
[305] = {.lex_state = 6},
[306] = {.lex_state = 1},
[307] = {.lex_state = 0},
[308] = {.lex_state = 0},
[309] = {.lex_state = 1},
[310] = {.lex_state = 0},
[311] = {.lex_state = 0},
[312] = {.lex_state = 1},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[sym_integer] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[anon_sym_DOT_DOT] = ACTIONS(1),
2023-11-30 16:05:09 +00:00
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_match] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_asyncfor] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_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-11-30 16:05:09 +00:00
[sym_root] = STATE(293),
[sym_block] = STATE(164),
[sym_statement] = STATE(5),
[sym_expression] = STATE(56),
[sym_value] = STATE(51),
[sym_boolean] = STATE(49),
[sym_list] = STATE(49),
[sym_map] = STATE(49),
[sym_index] = STATE(42),
[sym_math] = STATE(51),
[sym_logic] = STATE(51),
[sym_assignment] = STATE(164),
[sym_index_assignment] = STATE(164),
[sym_if_else] = STATE(164),
[sym_if] = STATE(108),
[sym_match] = STATE(164),
[sym_while] = STATE(164),
[sym_for] = STATE(164),
[sym_return] = STATE(164),
[sym_use] = STATE(164),
[sym_function_declaration] = STATE(164),
[sym_function_call] = STATE(51),
[sym_yield] = STATE(51),
[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),
[anon_sym_if] = ACTIONS(21),
[anon_sym_match] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_asyncfor] = ACTIONS(29),
2023-11-30 14:30:25 +00:00
[anon_sym_return] = ACTIONS(31),
[anon_sym_use] = ACTIONS(33),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-11-30 14:30:25 +00:00
[0] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(7), 1,
anon_sym_async,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-11-30 14:30:25 +00:00
ACTIONS(35), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 14:30:25 +00:00
ACTIONS(37), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 16:05:09 +00:00
STATE(284), 1,
2023-11-28 22:54:17 +00:00
aux_sym_map_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(8), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
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-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[94] = 24,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(41), 1,
sym_identifier,
ACTIONS(44), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
ACTIONS(47), 1,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
ACTIONS(50), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(62), 1,
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
ACTIONS(65), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-11-30 14:30:25 +00:00
ACTIONS(68), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-11-30 14:30:25 +00:00
ACTIONS(71), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-11-30 14:30:25 +00:00
ACTIONS(74), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-11-30 14:30:25 +00:00
ACTIONS(77), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-11-30 14:30:25 +00:00
ACTIONS(80), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(83), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 14:30:25 +00:00
ACTIONS(39), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(53), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(56), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
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-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[186] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
ACTIONS(21), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-11-30 14:30:25 +00:00
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 14:30:25 +00:00
ACTIONS(35), 1,
sym_identifier,
ACTIONS(86), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
STATE(273), 1,
2023-11-30 14:30:25 +00:00
aux_sym_map_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[280] = 24,
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,
anon_sym_if,
2023-11-28 22:54:17 +00:00
ACTIONS(23), 1,
anon_sym_match,
2023-11-28 22:54:17 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-11-28 22:54:17 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-11-28 22:54:17 +00:00
ACTIONS(29), 1,
anon_sym_asyncfor,
2023-11-28 22:54:17 +00:00
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 14:30:25 +00:00
ACTIONS(88), 1,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[371] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(94), 1,
anon_sym_COLON,
STATE(194), 1,
sym_logic_operator,
STATE(195), 1,
sym_math_operator,
ACTIONS(92), 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,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(90), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[426] = 24,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(96), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[517] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(98), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[608] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(100), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[699] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(94), 1,
anon_sym_COLON,
ACTIONS(114), 1,
anon_sym_DASH_GT,
STATE(194), 1,
sym_logic_operator,
STATE(195), 1,
sym_math_operator,
ACTIONS(106), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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(102), 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(104), 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,
[764] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(116), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[855] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(194), 1,
sym_logic_operator,
STATE(195), 1,
sym_math_operator,
ACTIONS(120), 16,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(118), 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,
[908] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(122), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[999] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(194), 1,
sym_logic_operator,
STATE(195), 1,
sym_math_operator,
ACTIONS(126), 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,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(124), 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,
[1052] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(128), 1,
anon_sym_RBRACE,
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1143] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(130), 1,
anon_sym_DOT_DOT,
STATE(194), 1,
sym_logic_operator,
STATE(195), 1,
sym_math_operator,
ACTIONS(126), 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,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(124), 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,
[1198] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(132), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1289] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(134), 1,
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1380] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1468] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(184), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(120), 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,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
ACTIONS(118), 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,
[1520] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1608] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1696] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[1784] = 23,
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,
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(23), 1,
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 16:05:09 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
STATE(56), 1,
sym_expression,
STATE(108), 1,
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(18), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1872] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(42), 1,
sym_index,
STATE(56), 1,
sym_expression,
STATE(108), 1,
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(11), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1960] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(136), 1,
anon_sym_COLON,
STATE(184), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(200), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(92), 16,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(90), 21,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[2014] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(114), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(136), 1,
anon_sym_COLON,
STATE(184), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(200), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 2,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 3,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(102), 11,
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_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(104), 12,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
[2078] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(42), 1,
sym_index,
STATE(56), 1,
sym_expression,
STATE(108), 1,
sym_if,
ACTIONS(13), 2,
sym_float,
sym_string,
ACTIONS(15), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2166] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(142), 1,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
2023-11-30 16:05:09 +00:00
ACTIONS(144), 1,
anon_sym_LT,
STATE(48), 1,
sym_assignment_operator,
STATE(248), 1,
sym_type_definition,
ACTIONS(146), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(140), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
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-11-30 16:05:09 +00:00
ACTIONS(138), 20,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
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-11-30 16:05:09 +00:00
[2224] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(56), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(8), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(164), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[2312] = 23,
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 14:30:25 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(55), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
2023-11-30 16:05:09 +00:00
STATE(157), 1,
sym_statement,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(152), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[2399] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(150), 16,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(148), 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,
2023-11-30 16:05:09 +00:00
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,
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-11-30 16:05:09 +00:00
[2446] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(154), 16,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(152), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 16:05:09 +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,
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,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[2493] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(158), 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-11-30 16:05:09 +00:00
ACTIONS(156), 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-11-30 16:05:09 +00:00
[2540] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(162), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-11-30 14:30: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,
ACTIONS(160), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[2587] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(166), 16,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(164), 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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[2634] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(170), 16,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(168), 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,
2023-11-30 16:05:09 +00:00
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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[2681] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(172), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(174), 1,
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(176), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(188), 1,
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(190), 1,
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(192), 1,
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(194), 1,
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(196), 1,
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(198), 1,
anon_sym_return,
2023-11-30 16:05:09 +00:00
ACTIONS(200), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(113), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(132), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(245), 1,
sym_if,
2023-11-30 16:05:09 +00:00
STATE(277), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(263), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[2768] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(204), 16,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(202), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_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,
[2815] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(172), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(174), 1,
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(176), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(188), 1,
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(190), 1,
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(192), 1,
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(194), 1,
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(196), 1,
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(198), 1,
anon_sym_return,
2023-11-30 16:05:09 +00:00
ACTIONS(200), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(113), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(127), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(245), 1,
sym_if,
2023-11-30 16:05:09 +00:00
STATE(264), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(268), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[2902] = 8,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(144), 1,
anon_sym_LT,
ACTIONS(206), 1,
anon_sym_EQ,
STATE(48), 1,
sym_assignment_operator,
STATE(248), 1,
sym_type_definition,
ACTIONS(146), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(140), 14,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_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-11-30 16:05:09 +00:00
ACTIONS(138), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[2959] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(142), 1,
anon_sym_EQ,
STATE(50), 1,
sym_assignment_operator,
ACTIONS(146), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(140), 15,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_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-11-30 16:05:09 +00:00
ACTIONS(138), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_LPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3012] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(172), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(174), 1,
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(176), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(188), 1,
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(190), 1,
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(192), 1,
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(194), 1,
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(196), 1,
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(198), 1,
anon_sym_return,
2023-11-30 16:05:09 +00:00
ACTIONS(200), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(113), 1,
sym_index,
2023-11-30 16:05:09 +00:00
STATE(127), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(245), 1,
sym_if,
2023-11-30 16:05:09 +00:00
STATE(253), 1,
2023-11-30 14:30:25 +00:00
sym_statement,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(268), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 14:30:25 +00:00
sym_function_declaration,
2023-11-30 16:05:09 +00:00
[3099] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(210), 16,
anon_sym_async,
2023-11-30 16:05:09 +00:00
sym_identifier,
sym_integer,
2023-11-30 16:05:09 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(208), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_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 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3146] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(214), 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-11-30 16:05:09 +00:00
ACTIONS(212), 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-11-30 16:05:09 +00:00
[3193] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(218), 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-11-30 16:05:09 +00:00
ACTIONS(216), 23,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[3240] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(172), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(174), 1,
anon_sym_async,
ACTIONS(176), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(188), 1,
anon_sym_if,
ACTIONS(190), 1,
anon_sym_match,
ACTIONS(192), 1,
anon_sym_while,
2023-11-30 14:30:25 +00:00
ACTIONS(194), 1,
2023-11-30 16:05:09 +00:00
anon_sym_for,
2023-11-30 14:30:25 +00:00
ACTIONS(196), 1,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
ACTIONS(198), 1,
anon_sym_return,
ACTIONS(200), 1,
anon_sym_use,
STATE(113), 1,
sym_index,
STATE(132), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(245), 1,
sym_if,
STATE(277), 1,
sym_statement,
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(263), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[3327] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(5), 1,
2023-11-30 00:23:42 +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,
anon_sym_if,
2023-11-30 16:05:09 +00:00
ACTIONS(23), 1,
anon_sym_match,
2023-11-30 16:05:09 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-11-30 16:05:09 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-11-30 16:05:09 +00:00
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
2023-11-30 16:05:09 +00:00
ACTIONS(33), 1,
anon_sym_use,
2023-11-30 16:05:09 +00:00
STATE(42), 1,
sym_index,
STATE(55), 1,
sym_expression,
STATE(108), 1,
sym_if,
STATE(147), 1,
sym_statement,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(152), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[3414] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(222), 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-11-30 16:05:09 +00:00
ACTIONS(220), 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,
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-11-30 16:05:09 +00:00
[3461] = 23,
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,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
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,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(42), 1,
sym_index,
STATE(55), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(108), 1,
sym_if,
STATE(145), 1,
sym_statement,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(152), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[3548] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 16,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
ACTIONS(138), 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,
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-11-30 16:05:09 +00:00
[3595] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(226), 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-11-30 16:05:09 +00:00
ACTIONS(224), 23,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[3642] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(172), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(174), 1,
anon_sym_async,
ACTIONS(176), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(188), 1,
anon_sym_if,
ACTIONS(190), 1,
anon_sym_match,
ACTIONS(192), 1,
anon_sym_while,
2023-11-30 14:30:25 +00:00
ACTIONS(194), 1,
2023-11-30 16:05:09 +00:00
anon_sym_for,
2023-11-30 14:30:25 +00:00
ACTIONS(196), 1,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
ACTIONS(198), 1,
anon_sym_return,
ACTIONS(200), 1,
anon_sym_use,
STATE(113), 1,
sym_index,
STATE(127), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(245), 1,
sym_if,
STATE(256), 1,
sym_statement,
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 5,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
STATE(268), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[3729] = 20,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(234), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
STATE(114), 1,
aux_sym_match_repeat1,
STATE(182), 1,
2023-11-30 01:59:58 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(183), 1,
sym_math_operator,
STATE(210), 1,
sym_expression,
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
2023-11-30 01:59:58 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 6,
2023-11-30 01:59:58 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
2023-11-30 01:59:58 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[3808] = 11,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(114), 1,
anon_sym_DASH_GT,
ACTIONS(136), 1,
anon_sym_COLON,
STATE(184), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(112), 2,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(236), 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-11-30 01:59:58 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(238), 11,
2023-11-30 01:59:58 +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-11-30 16:05:09 +00:00
[3869] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(114), 1,
anon_sym_DASH_GT,
ACTIONS(136), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(240), 1,
anon_sym_SEMI,
STATE(184), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
2023-11-30 00:23:42 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(236), 8,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(238), 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,
2023-11-30 16:05:09 +00:00
[3932] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(114), 1,
anon_sym_DASH_GT,
ACTIONS(136), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
STATE(184), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(242), 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,
2023-11-30 16:05:09 +00:00
ACTIONS(244), 11,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
[3993] = 20,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
ACTIONS(184), 1,
anon_sym_LBRACK,
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_COLON,
ACTIONS(234), 1,
anon_sym_DASH_GT,
STATE(62), 1,
aux_sym_match_repeat1,
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
STATE(209), 1,
sym_expression,
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4072] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(260), 1,
anon_sym_RPAREN,
STATE(90), 1,
sym_expression,
STATE(137), 1,
aux_sym__expression_list,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 3,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(138), 12,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +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-11-30 16:05:09 +00:00
[4140] = 15,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
2023-11-30 01:59:58 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(262), 1,
anon_sym_RPAREN,
STATE(90), 1,
sym_expression,
STATE(125), 1,
aux_sym__expression_list,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 3,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(138), 12,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +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-11-30 16:05:09 +00:00
[4208] = 15,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(264), 1,
2023-11-30 01:59:58 +00:00
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(90), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(129), 1,
2023-11-30 01:59:58 +00:00
aux_sym__expression_list,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 00:23:42 +00:00
sym_value,
2023-11-30 01:59:58 +00:00
sym_index,
2023-11-30 00:23:42 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
ACTIONS(138), 12,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4276] = 14,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(63), 1,
2023-11-30 14:30:25 +00:00
aux_sym_match_repeat1,
2023-11-30 16:05:09 +00:00
STATE(209), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
ACTIONS(266), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(95), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
ACTIONS(268), 7,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[4337] = 14,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(272), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(277), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(280), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(292), 1,
anon_sym_LPAREN,
STATE(63), 1,
2023-11-30 00:23:42 +00:00
aux_sym_match_repeat1,
2023-11-30 16:05:09 +00:00
STATE(209), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(283), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(286), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
ACTIONS(270), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(95), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
ACTIONS(275), 7,
2023-11-30 01:59:58 +00:00
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
[4398] = 6,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(295), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
STATE(181), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(185), 1,
sym_math_operator,
ACTIONS(92), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(90), 20,
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,
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-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[4442] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(234), 1,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(295), 1,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
STATE(181), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(185), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(104), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(108), 4,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(102), 9,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
[4496] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(297), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
STATE(181), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(185), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(126), 7,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
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-11-30 16:05:09 +00:00
ACTIONS(124), 20,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_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-11-30 16:05:09 +00:00
[4540] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(181), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(185), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(120), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(118), 21,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
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,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4582] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(181), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(185), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(126), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(124), 21,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
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-11-30 16:05:09 +00:00
[4624] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(299), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
anon_sym_DASH_GT,
STATE(178), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(180), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(104), 3,
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
ACTIONS(108), 3,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(102), 9,
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-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
[4677] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(303), 1,
anon_sym_DOT_DOT,
STATE(178), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(180), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(126), 7,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(124), 19,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4720] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(178), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(180), 1,
sym_math_operator,
ACTIONS(126), 7,
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(124), 20,
anon_sym_LBRACE,
2023-11-30 16:05:09 +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
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4761] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(232), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(234), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
STATE(182), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(183), 1,
sym_math_operator,
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(104), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
anon_sym_PLUS,
2023-11-30 14:30:25 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(102), 8,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
[4814] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(232), 1,
anon_sym_COLON,
STATE(182), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(183), 1,
sym_math_operator,
ACTIONS(92), 7,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(90), 19,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
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-11-30 16:05:09 +00:00
[4857] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(178), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(180), 1,
sym_math_operator,
ACTIONS(120), 7,
anon_sym_async,
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(118), 20,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4898] = 5,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
ACTIONS(120), 7,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(118), 20,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4939] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(299), 1,
anon_sym_COLON,
STATE(178), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(180), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(92), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(90), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[4982] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 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,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(138), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
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,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5018] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(170), 7,
sym_identifier,
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-11-30 16:05:09 +00:00
ACTIONS(168), 21,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5054] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(204), 7,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(202), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
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,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5090] = 6,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(92), 7,
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(90), 18,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +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
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5132] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(154), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 00:23:42 +00:00
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(152), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5168] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(106), 2,
anon_sym_PLUS,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(104), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(108), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(102), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
[5220] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(222), 7,
sym_identifier,
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-11-30 16:05:09 +00:00
ACTIONS(220), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
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,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5256] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(162), 7,
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-11-30 16:05:09 +00:00
ACTIONS(160), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-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,
[5292] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(214), 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-11-30 16:05:09 +00:00
ACTIONS(212), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-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,
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-11-30 16:05:09 +00:00
[5328] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(210), 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-11-30 16:05:09 +00:00
ACTIONS(208), 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-11-30 00:23:42 +00:00
anon_sym_COLON,
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-11-30 16:05:09 +00:00
[5364] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(218), 7,
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-11-30 16:05:09 +00:00
ACTIONS(216), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[5400] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(158), 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-11-30 16:05:09 +00:00
ACTIONS(156), 21,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
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-11-30 16:05:09 +00:00
[5436] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(226), 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-11-30 16:05:09 +00:00
ACTIONS(224), 21,
anon_sym_LBRACE,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
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-11-30 16:05:09 +00:00
[5472] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(232), 1,
anon_sym_COLON,
ACTIONS(234), 1,
anon_sym_DASH_GT,
ACTIONS(311), 1,
anon_sym_COMMA,
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
[5526] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(232), 1,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(234), 1,
anon_sym_DASH_GT,
ACTIONS(317), 1,
anon_sym_COMMA,
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(313), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(110), 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-11-30 16:05:09 +00:00
ACTIONS(315), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LPAREN,
[5580] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(166), 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-11-30 16:05:09 +00:00
ACTIONS(164), 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-11-30 16:05:09 +00:00
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5616] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(150), 7,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(148), 21,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5652] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
STATE(198), 1,
2023-11-30 01:59:58 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(120), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(118), 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-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5692] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(138), 20,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[5727] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(150), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(148), 20,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
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_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5762] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(210), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(208), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5797] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(170), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(168), 20,
2023-11-30 14:30: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_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5832] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(214), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
ACTIONS(212), 20,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5867] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(204), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
ACTIONS(202), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 14:30:25 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
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-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5902] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(162), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(160), 20,
2023-11-30 14:30: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_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5937] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(222), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(220), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[5972] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(154), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(152), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6007] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(158), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(156), 20,
2023-11-30 14:30: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_RPAREN,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6042] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(218), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(216), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6077] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(226), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(224), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6112] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(166), 7,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(164), 20,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-30 16:05:09 +00:00
anon_sym_RPAREN,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6147] = 7,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(323), 1,
2023-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
ACTIONS(325), 1,
2023-11-30 14:30:25 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
STATE(146), 1,
2023-11-30 14:30:25 +00:00
sym_else,
2023-11-30 16:05:09 +00:00
STATE(109), 2,
2023-11-30 14:30:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(319), 9,
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_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(321), 11,
2023-11-30 14:30:25 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
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-11-30 16:05:09 +00:00
[6188] = 7,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(323), 1,
2023-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
ACTIONS(325), 1,
2023-11-30 14:30:25 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
STATE(163), 1,
2023-11-30 14:30:25 +00:00
sym_else,
2023-11-30 16:05:09 +00:00
STATE(110), 2,
2023-11-30 14:30:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(327), 9,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 14:30: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_LPAREN,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(329), 11,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
[6229] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(335), 1,
anon_sym_elseif,
STATE(110), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(331), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 16:05:09 +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_LPAREN,
anon_sym_asyncfor,
ACTIONS(333), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[6265] = 8,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(142), 1,
anon_sym_EQ,
ACTIONS(144), 1,
anon_sym_LT,
STATE(53), 1,
sym_assignment_operator,
STATE(250), 1,
sym_type_definition,
ACTIONS(146), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(140), 3,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(138), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6307] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(272), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(277), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(280), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(289), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(292), 1,
anon_sym_LPAREN,
STATE(112), 1,
2023-11-30 14:30:25 +00:00
aux_sym_match_repeat1,
2023-11-30 16:05:09 +00:00
STATE(210), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(283), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(286), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(270), 3,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6358] = 6,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(142), 1,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
STATE(40), 1,
2023-11-30 14:30:25 +00:00
sym_assignment_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(146), 2,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 16:05:09 +00:00
ACTIONS(140), 4,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
anon_sym_LT,
ACTIONS(138), 15,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
[6395] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
ACTIONS(184), 1,
anon_sym_LBRACK,
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(112), 1,
aux_sym_match_repeat1,
STATE(210), 1,
sym_expression,
ACTIONS(180), 2,
sym_float,
sym_string,
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(266), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6446] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(338), 10,
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 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_elseif,
2023-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(340), 12,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 14:30:25 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
[6476] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(342), 10,
ts_builtin_sym_end,
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-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(344), 12,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[6506] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(346), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(348), 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,
[6536] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(350), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(352), 12,
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,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[6566] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(354), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(357), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(360), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(369), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(372), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(374), 1,
anon_sym_LPAREN,
STATE(91), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(119), 1,
2023-11-30 14:30:25 +00:00
aux_sym_list_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(363), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(366), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6615] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(377), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(380), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(383), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(392), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(395), 1,
anon_sym_LPAREN,
ACTIONS(398), 1,
anon_sym_RPAREN,
STATE(90), 1,
sym_expression,
STATE(120), 1,
aux_sym__expression_list,
ACTIONS(386), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(389), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6664] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(400), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
STATE(91), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(119), 1,
2023-11-30 14:30:25 +00:00
aux_sym_list_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6713] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(402), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(90), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(131), 1,
2023-11-30 14:30:25 +00:00
aux_sym__expression_list,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6762] = 13,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(404), 1,
anon_sym_RPAREN,
STATE(90), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
STATE(120), 1,
2023-11-30 16:05:09 +00:00
aux_sym__expression_list,
ACTIONS(252), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6811] = 13,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(406), 1,
anon_sym_RPAREN,
STATE(90), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(123), 1,
aux_sym__expression_list,
ACTIONS(252), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6860] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(408), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(90), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(120), 1,
2023-11-30 14:30:25 +00:00
aux_sym__expression_list,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6909] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(410), 1,
anon_sym_RBRACK,
STATE(91), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(119), 1,
aux_sym_list_repeat1,
ACTIONS(252), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[6958] = 10,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(236), 4,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
anon_sym_COMMA,
sym_identifier,
ACTIONS(110), 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,
[7001] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(412), 1,
anon_sym_RBRACK,
STATE(91), 1,
sym_expression,
STATE(119), 1,
aux_sym_list_repeat1,
ACTIONS(252), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7050] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(414), 1,
anon_sym_RPAREN,
STATE(90), 1,
sym_expression,
STATE(120), 1,
aux_sym__expression_list,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7099] = 13,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(416), 1,
anon_sym_RBRACK,
STATE(91), 1,
sym_expression,
STATE(121), 1,
aux_sym_list_repeat1,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7148] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(418), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(90), 1,
2023-11-30 14:30:25 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(120), 1,
2023-11-30 14:30:25 +00:00
aux_sym__expression_list,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:30:25 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:30:25 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[7197] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(420), 1,
anon_sym_SEMI,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(236), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[7242] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(422), 1,
anon_sym_RBRACK,
STATE(91), 1,
sym_expression,
STATE(128), 1,
aux_sym_list_repeat1,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7291] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(424), 1,
2023-11-30 01:59:58 +00:00
anon_sym_RPAREN,
2023-11-30 16:05:09 +00:00
STATE(90), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
STATE(120), 1,
2023-11-30 01:59:58 +00:00
aux_sym__expression_list,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[7340] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(242), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(110), 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,
[7383] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(426), 1,
anon_sym_RPAREN,
STATE(90), 1,
sym_expression,
STATE(134), 1,
aux_sym__expression_list,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7432] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(428), 1,
anon_sym_RPAREN,
STATE(90), 1,
sym_expression,
STATE(120), 1,
aux_sym__expression_list,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7481] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
ACTIONS(430), 1,
anon_sym_RBRACK,
STATE(91), 1,
sym_expression,
STATE(126), 1,
aux_sym_list_repeat1,
ACTIONS(252), 2,
sym_float,
sym_string,
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7530] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(432), 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(434), 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,
[7558] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(436), 1,
anon_sym_async,
ACTIONS(438), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(247), 1,
sym_block,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[7604] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(440), 1,
anon_sym_async,
ACTIONS(442), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(258), 1,
sym_block,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[7650] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(444), 1,
anon_sym_async,
ACTIONS(446), 1,
anon_sym_LBRACE,
STATE(154), 1,
sym_block,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[7696] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(448), 1,
anon_sym_async,
ACTIONS(450), 1,
anon_sym_LBRACE,
STATE(117), 1,
sym_block,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[7742] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(338), 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(340), 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,
[7770] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(452), 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(454), 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,
[7798] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 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(329), 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,
[7826] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(456), 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(458), 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,
[7854] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(460), 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(462), 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,
[7882] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(464), 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(466), 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,
[7910] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(468), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(470), 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,
[7938] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(436), 1,
anon_sym_async,
ACTIONS(438), 1,
anon_sym_LBRACE,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
STATE(251), 1,
sym_block,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[7984] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(236), 9,
2023-11-30 14:30:25 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-28 22:54:17 +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-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(238), 11,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
[8012] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(350), 9,
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_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(352), 11,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
[8040] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(472), 9,
ts_builtin_sym_end,
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-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
anon_sym_asyncfor,
ACTIONS(474), 11,
anon_sym_async,
sym_identifier,
2023-11-30 14:30:25 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
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,
[8068] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(444), 1,
anon_sym_async,
ACTIONS(446), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(162), 1,
sym_block,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[8114] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(476), 9,
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_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(478), 11,
2023-11-30 14:30: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-11-30 16:05:09 +00:00
[8142] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(480), 9,
ts_builtin_sym_end,
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-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(482), 11,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[8170] = 12,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(448), 1,
anon_sym_async,
ACTIONS(450), 1,
anon_sym_LBRACE,
STATE(116), 1,
sym_block,
STATE(198), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
[8216] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(440), 1,
anon_sym_async,
ACTIONS(442), 1,
anon_sym_LBRACE,
STATE(198), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(261), 1,
sym_block,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
[8262] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(484), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(486), 11,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[8290] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 9,
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,
anon_sym_asyncfor,
ACTIONS(490), 11,
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,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
[8318] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(492), 9,
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-11-30 14:30:25 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(494), 11,
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,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
2023-11-30 16:05:09 +00:00
[8346] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(496), 9,
ts_builtin_sym_end,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_asyncfor,
ACTIONS(498), 11,
anon_sym_async,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
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,
[8374] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(240), 1,
anon_sym_SEMI,
ACTIONS(236), 8,
2023-11-30 01:59:58 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
anon_sym_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(238), 11,
2023-11-30 01:59:58 +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-11-30 16:05:09 +00:00
[8404] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(500), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(502), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(14), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8447] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
STATE(54), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8490] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(211), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8533] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(178), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(142), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-30 00:23:42 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8576] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(504), 1,
sym_identifier,
STATE(215), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8619] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(158), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8662] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 01:59:58 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(213), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8705] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
ACTIONS(186), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(214), 1,
sym_expression,
ACTIONS(180), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8748] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(258), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
STATE(58), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8791] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(230), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(506), 1,
sym_identifier,
STATE(218), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8834] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
STATE(68), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8877] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(155), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8920] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 14:48:56 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(143), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[8963] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
ACTIONS(184), 1,
anon_sym_LBRACK,
ACTIONS(186), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(69), 1,
sym_expression,
ACTIONS(180), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9006] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
STATE(75), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9049] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(76), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9092] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(258), 1,
anon_sym_LPAREN,
STATE(65), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9135] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
ACTIONS(258), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
STATE(72), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9178] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(248), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
anon_sym_LPAREN,
STATE(73), 1,
2023-11-30 14:48:56 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
2023-11-30 14:48:56 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
2023-11-30 14:48:56 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9221] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
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(500), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(502), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(27), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9264] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
anon_sym_LBRACE,
ACTIONS(250), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(256), 1,
anon_sym_LBRACK,
2023-11-30 14:30:25 +00:00
ACTIONS(258), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
STATE(64), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(252), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9307] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(246), 1,
sym_identifier,
ACTIONS(248), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(250), 1,
sym_integer,
ACTIONS(256), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
STATE(66), 1,
sym_expression,
ACTIONS(252), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(254), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(83), 3,
sym_boolean,
sym_list,
sym_map,
STATE(77), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9350] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(500), 1,
sym_identifier,
ACTIONS(502), 1,
anon_sym_LBRACE,
STATE(57), 1,
sym_expression,
ACTIONS(13), 2,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
2023-11-30 14:48:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9393] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(141), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-28 22:54:17 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9436] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:48:56 +00:00
ACTIONS(178), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(71), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9479] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(207), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9522] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(208), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
2023-11-30 01:59:58 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9565] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(151), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9608] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
ACTIONS(184), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(135), 1,
sym_expression,
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9651] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(11), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(500), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(502), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(10), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9694] = 11,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(500), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(502), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(6), 1,
sym_expression,
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9737] = 11,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
ACTIONS(184), 1,
anon_sym_LBRACK,
ACTIONS(186), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(159), 1,
sym_expression,
ACTIONS(180), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9780] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(70), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9823] = 11,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
2023-11-30 14:30:25 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(80), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9866] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(82), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9909] = 11,
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,
ACTIONS(500), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(502), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(26), 1,
2023-11-30 01:59:58 +00:00
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
2023-11-30 01:59:58 +00:00
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 6,
2023-11-30 01:59:58 +00:00
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9952] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:48:56 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(212), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[9995] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(19), 1,
anon_sym_LPAREN,
ACTIONS(500), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(502), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(16), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(13), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(51), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[10038] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(140), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[10081] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(178), 1,
sym_integer,
2023-11-30 16:05:09 +00:00
ACTIONS(184), 1,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(230), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(94), 1,
sym_expression,
2023-11-30 16:05:09 +00:00
ACTIONS(180), 2,
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(182), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
2023-11-30 16:05:09 +00:00
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 16:05:09 +00:00
[10124] = 11,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(11), 1,
sym_integer,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LPAREN,
2023-11-30 16:05:09 +00:00
ACTIONS(500), 1,
sym_identifier,
ACTIONS(502), 1,
anon_sym_LBRACE,
STATE(20), 1,
sym_expression,
ACTIONS(13), 2,
2023-11-30 14:30:25 +00:00
sym_float,
sym_string,
2023-11-30 16:05:09 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(49), 3,
sym_boolean,
sym_list,
sym_map,
STATE(51), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10167] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_integer,
ACTIONS(184), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(186), 1,
anon_sym_LPAREN,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(508), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
STATE(216), 1,
sym_expression,
ACTIONS(180), 2,
sym_float,
sym_string,
ACTIONS(182), 2,
2023-11-30 14:30:25 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
STATE(102), 3,
sym_boolean,
sym_list,
sym_map,
STATE(95), 6,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10210] = 10,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
2023-11-30 14:30:25 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(510), 1,
anon_sym_RPAREN,
STATE(198), 1,
2023-11-30 14:30:25 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(112), 2,
2023-11-30 14:30:25 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
2023-11-30 14:30:25 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
[10250] = 7,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(512), 1,
anon_sym_RPAREN,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(92), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(90), 11,
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,
[10284] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(514), 1,
anon_sym_EQ_GT,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[10324] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(516), 1,
anon_sym_EQ_GT,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[10364] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(518), 1,
anon_sym_RPAREN,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[10404] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(305), 1,
anon_sym_COLON,
ACTIONS(520), 1,
anon_sym_RPAREN,
STATE(198), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(92), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(90), 11,
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,
[10438] = 10,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
2023-11-30 14:48:56 +00:00
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
2023-11-30 14:48:56 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(522), 1,
anon_sym_RPAREN,
STATE(198), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(112), 2,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
[10478] = 7,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
ACTIONS(524), 1,
anon_sym_RPAREN,
STATE(198), 1,
2023-11-30 14:48:56 +00:00
sym_math_operator,
2023-11-30 16:05:09 +00:00
STATE(199), 1,
2023-11-30 14:48:56 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
ACTIONS(92), 3,
anon_sym_DASH,
2023-11-30 14:48:56 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(90), 11,
2023-11-30 14:48:56 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
[10512] = 9,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
STATE(167), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(201), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
[10549] = 9,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(106), 1,
anon_sym_DASH,
2023-11-30 16:05:09 +00:00
ACTIONS(301), 1,
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(305), 1,
anon_sym_COLON,
2023-11-30 16:05:09 +00:00
STATE(190), 1,
2023-11-30 14:30:25 +00:00
sym_logic_operator,
2023-11-30 16:05:09 +00:00
STATE(191), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 16:05:09 +00:00
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 16:05:09 +00:00
ACTIONS(110), 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-11-30 16:05:09 +00:00
[10586] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(528), 6,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
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_asyncfor,
2023-11-30 16:05:09 +00:00
ACTIONS(526), 11,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
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-11-30 16:05:09 +00:00
[10611] = 9,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_DASH,
ACTIONS(301), 1,
anon_sym_DASH_GT,
ACTIONS(305), 1,
anon_sym_COLON,
STATE(171), 1,
sym_logic_operator,
STATE(172), 1,
sym_math_operator,
ACTIONS(112), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(108), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(110), 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,
[10648] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(532), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(538), 1,
2023-11-30 14:48:56 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(219), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-11-30 16:05:09 +00:00
STATE(227), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(530), 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-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
ACTIONS(535), 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-11-30 16:05:09 +00:00
[10679] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(547), 1,
2023-11-30 14:48:56 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
ACTIONS(549), 1,
anon_sym_DASH_GT,
STATE(219), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-11-30 16:05:09 +00:00
STATE(227), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(541), 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-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[10712] = 8,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
ACTIONS(547), 1,
2023-11-30 16:05:09 +00:00
anon_sym_fn,
ACTIONS(553), 1,
2023-11-30 14:48:56 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
STATE(220), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-11-30 16:05:09 +00:00
STATE(227), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(551), 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-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[10745] = 7,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(532), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(538), 1,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(222), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-11-30 16:05:09 +00:00
STATE(226), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(530), 3,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
anon_sym_DASH_GT,
ACTIONS(535), 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-11-30 16:05:09 +00:00
[10775] = 8,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(547), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
ACTIONS(555), 1,
anon_sym_DASH_GT,
STATE(222), 1,
2023-11-30 00:23:42 +00:00
aux_sym_type_repeat1,
2023-11-30 16:05:09 +00:00
STATE(226), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(541), 2,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
anon_sym_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[10807] = 8,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(547), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
ACTIONS(557), 1,
2023-11-30 14:48:56 +00:00
anon_sym_DASH_GT,
2023-11-30 16:05:09 +00:00
STATE(223), 1,
2023-11-30 01:59:58 +00:00
aux_sym_type_repeat1,
2023-11-30 16:05:09 +00:00
STATE(226), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(551), 2,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[10839] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(559), 13,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
2023-11-30 14:30:25 +00:00
anon_sym_float,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 16:05:09 +00:00
[10858] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(561), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
ACTIONS(563), 12,
2023-11-30 14:30:25 +00:00
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-11-30 16:05:09 +00:00
[10879] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(565), 1,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
ACTIONS(563), 12,
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-11-30 16:05:09 +00:00
[10900] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(551), 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-11-30 16:05:09 +00:00
[10919] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(568), 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-11-30 16:05:09 +00:00
[10938] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(530), 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-11-30 16:05:09 +00:00
[10957] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(340), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(338), 8,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
[10977] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(352), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(350), 8,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
[10997] = 3,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(478), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(476), 8,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
[11017] = 5,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(570), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(229), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[11039] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(547), 1,
2023-11-30 01:59:58 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(229), 1,
2023-11-30 01:59:58 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[11061] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(570), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(305), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[11083] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(572), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(372), 6,
anon_sym_LBRACE,
sym_float,
sym_string,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_RBRACK,
anon_sym_LPAREN,
[11101] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(570), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(225), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[11123] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(574), 4,
2023-11-30 14:48:56 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(398), 6,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
[11141] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(543), 1,
anon_sym_LBRACK,
ACTIONS(547), 1,
anon_sym_fn,
STATE(225), 1,
sym_type,
ACTIONS(545), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[11163] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(543), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
ACTIONS(570), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 16:05:09 +00:00
STATE(295), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 16:05:09 +00:00
ACTIONS(545), 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-11-30 16:05:09 +00:00
[11185] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(329), 1,
sym_identifier,
ACTIONS(576), 1,
anon_sym_elseif,
ACTIONS(578), 1,
anon_sym_else,
STATE(265), 1,
sym_else,
STATE(246), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(327), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[11210] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(580), 4,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(582), 5,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
[11227] = 3,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(584), 4,
2023-11-30 14:30:25 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 16:05:09 +00:00
ACTIONS(586), 5,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
[11244] = 7,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(321), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
ACTIONS(576), 1,
2023-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
ACTIONS(578), 1,
2023-11-30 14:30:25 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
STATE(262), 1,
2023-11-30 14:30:25 +00:00
sym_else,
2023-11-30 16:05:09 +00:00
STATE(242), 2,
2023-11-30 14:30:25 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(319), 3,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
[11269] = 5,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(588), 1,
2023-11-30 01:59:58 +00:00
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
ACTIONS(333), 2,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
anon_sym_else,
2023-11-30 16:05:09 +00:00
STATE(246), 2,
2023-11-30 01:59:58 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 16:05:09 +00:00
ACTIONS(331), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
[11289] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(344), 2,
sym_identifier,
anon_sym_else,
2023-11-30 16:05:09 +00:00
ACTIONS(342), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
[11303] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(591), 1,
2023-11-30 14:30:25 +00:00
anon_sym_PIPE,
2023-11-30 16:05:09 +00:00
STATE(31), 1,
sym_assignment_operator,
2023-11-30 16:05:09 +00:00
STATE(149), 1,
2023-11-30 14:30:25 +00:00
sym_function,
2023-11-30 16:05:09 +00:00
ACTIONS(146), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 16:05:09 +00:00
[11321] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(340), 2,
2023-11-30 14:30:25 +00:00
sym_identifier,
anon_sym_else,
2023-11-30 16:05:09 +00:00
ACTIONS(338), 4,
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-11-30 14:30:25 +00:00
anon_sym_elseif,
2023-11-30 16:05:09 +00:00
[11335] = 5,
2023-11-30 14:30:25 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(593), 1,
2023-11-30 14:30:25 +00:00
anon_sym_PIPE,
2023-11-30 16:05:09 +00:00
STATE(43), 1,
2023-11-30 14:30:25 +00:00
sym_assignment_operator,
2023-11-30 16:05:09 +00:00
STATE(267), 1,
2023-11-30 14:30:25 +00:00
sym_function,
2023-11-30 16:05:09 +00:00
ACTIONS(146), 3,
2023-11-30 14:30:25 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 16:05:09 +00:00
[11353] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(348), 2,
sym_identifier,
anon_sym_else,
ACTIONS(346), 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,
[11367] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(352), 2,
sym_identifier,
anon_sym_else,
ACTIONS(350), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
anon_sym_elseif,
[11381] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(480), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11391] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(432), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11401] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(468), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11411] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(456), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11421] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(595), 4,
2023-11-30 14:48:56 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_PIPE,
2023-11-30 16:05:09 +00:00
[11431] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(472), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11441] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(488), 4,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11451] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(484), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11461] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(492), 4,
anon_sym_RBRACE,
2023-11-28 22:54:17 +00:00
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
[11471] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(327), 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-11-30 16:05:09 +00:00
[11481] = 3,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(420), 1,
2023-11-30 14:30:25 +00:00
anon_sym_SEMI,
2023-11-30 16:05:09 +00:00
ACTIONS(236), 3,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACE,
2023-11-30 14:30:25 +00:00
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
[11493] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(452), 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-11-30 16:05:09 +00:00
[11503] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(496), 4,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
sym_identifier,
2023-11-30 16:05:09 +00:00
[11513] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(460), 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-11-30 16:05:09 +00:00
[11523] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(464), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11533] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(236), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
[11543] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(444), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(446), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(148), 1,
sym_block,
2023-11-30 16:05:09 +00:00
[11556] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(599), 1,
anon_sym_COMMA,
ACTIONS(597), 2,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
anon_sym_PIPE,
[11567] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(601), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(603), 1,
2023-11-30 14:30:25 +00:00
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(283), 1,
2023-11-30 00:23:42 +00:00
aux_sym_map_repeat1,
2023-11-30 16:05:09 +00:00
[11580] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(605), 1,
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(607), 1,
anon_sym_PIPE,
STATE(280), 1,
aux_sym_identifier_list_repeat1,
[11593] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(601), 1,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(609), 1,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
STATE(287), 1,
2023-11-30 01:59:58 +00:00
aux_sym_map_repeat1,
2023-11-30 16:05:09 +00:00
[11606] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(444), 1,
anon_sym_async,
ACTIONS(446), 1,
anon_sym_LBRACE,
STATE(156), 1,
sym_block,
[11619] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:48:56 +00:00
ACTIONS(605), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
ACTIONS(611), 1,
2023-11-30 14:48:56 +00:00
anon_sym_PIPE,
STATE(272), 1,
aux_sym_identifier_list_repeat1,
2023-11-30 16:05:09 +00:00
[11632] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(440), 1,
2023-11-30 14:30:25 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(442), 1,
2023-11-30 14:30:25 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(266), 1,
2023-11-30 14:30:25 +00:00
sym_block,
2023-11-30 16:05:09 +00:00
[11645] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(615), 1,
2023-11-30 14:48:56 +00:00
anon_sym_COMMA,
2023-11-30 16:05:09 +00:00
ACTIONS(613), 2,
anon_sym_RBRACE,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
[11656] = 4,
2023-11-30 14:48:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(37), 1,
anon_sym_RBRACE,
ACTIONS(601), 1,
2023-11-30 14:48:56 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
STATE(284), 1,
aux_sym_map_repeat1,
[11669] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(444), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(446), 1,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(150), 1,
2023-11-30 01:59:58 +00:00
sym_block,
2023-11-30 16:05:09 +00:00
[11682] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(617), 1,
sym_identifier,
ACTIONS(620), 1,
anon_sym_PIPE,
STATE(280), 1,
aux_sym_identifier_list_repeat1,
[11695] = 4,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(440), 1,
2023-11-30 01:59:58 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(442), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(260), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 16:05:09 +00:00
[11708] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(605), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(622), 1,
anon_sym_PIPE,
2023-11-30 16:05:09 +00:00
STATE(289), 1,
2023-11-30 14:48:56 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 16:05:09 +00:00
[11721] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(601), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(624), 1,
anon_sym_RBRACE,
STATE(287), 1,
aux_sym_map_repeat1,
[11734] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(601), 1,
sym_identifier,
ACTIONS(626), 1,
anon_sym_RBRACE,
STATE(287), 1,
aux_sym_map_repeat1,
[11747] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(440), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(442), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(233), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-11-30 16:05:09 +00:00
[11760] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(86), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 16:05:09 +00:00
ACTIONS(601), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
STATE(273), 1,
aux_sym_map_repeat1,
[11773] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(628), 1,
sym_identifier,
ACTIONS(631), 1,
anon_sym_RBRACE,
STATE(287), 1,
2023-11-30 14:30:25 +00:00
aux_sym_map_repeat1,
2023-11-30 16:05:09 +00:00
[11786] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(440), 1,
2023-11-30 14:48:56 +00:00
anon_sym_async,
2023-11-30 16:05:09 +00:00
ACTIONS(442), 1,
2023-11-30 14:48:56 +00:00
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
STATE(255), 1,
2023-11-30 14:48:56 +00:00
sym_block,
2023-11-30 16:05:09 +00:00
[11799] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(605), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
2023-11-30 16:05:09 +00:00
ACTIONS(633), 1,
anon_sym_PIPE,
STATE(280), 1,
aux_sym_identifier_list_repeat1,
[11812] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(444), 1,
anon_sym_async,
ACTIONS(446), 1,
anon_sym_LBRACE,
STATE(160), 1,
sym_block,
[11825] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(620), 2,
2023-11-30 01:59:58 +00:00
sym_identifier,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 16:05:09 +00:00
[11833] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 16:05:09 +00:00
ACTIONS(635), 2,
anon_sym_RBRACE,
sym_identifier,
[11841] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(637), 1,
2023-11-30 16:05:09 +00:00
ts_builtin_sym_end,
[11848] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(639), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
[11855] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(641), 1,
2023-11-30 14:48:56 +00:00
anon_sym_RBRACK,
2023-11-30 16:05:09 +00:00
[11862] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(643), 1,
2023-11-30 16:05:09 +00:00
anon_sym_EQ,
[11869] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(645), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LPAREN,
[11876] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(647), 1,
2023-11-30 14:48:56 +00:00
sym_string,
2023-11-30 16:05:09 +00:00
[11883] = 2,
2023-11-30 01:59:58 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(649), 1,
2023-11-30 16:05:09 +00:00
anon_sym_in,
[11890] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(651), 1,
anon_sym_LBRACE,
2023-11-30 16:05:09 +00:00
[11897] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(653), 1,
2023-11-30 16:05:09 +00:00
sym_string,
[11904] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(655), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
[11911] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(657), 1,
2023-11-30 16:05:09 +00:00
sym_identifier,
[11918] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(659), 1,
2023-11-30 16:05:09 +00:00
anon_sym_LBRACE,
[11925] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(661), 1,
2023-11-30 16:05:09 +00:00
anon_sym_GT,
[11932] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 14:30:25 +00:00
ACTIONS(663), 1,
2023-11-30 16:05:09 +00:00
anon_sym_in,
[11939] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(665), 1,
anon_sym_LPAREN,
[11946] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(667), 1,
anon_sym_LBRACE,
[11953] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(669), 1,
sym_identifier,
[11960] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
anon_sym_LPAREN,
[11967] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(673), 1,
anon_sym_LBRACE,
[11974] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(675), 1,
2023-11-30 14:30:25 +00:00
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-11-30 16:05:09 +00:00
[SMALL_STATE(3)] = 94,
[SMALL_STATE(4)] = 186,
[SMALL_STATE(5)] = 280,
[SMALL_STATE(6)] = 371,
[SMALL_STATE(7)] = 426,
[SMALL_STATE(8)] = 517,
[SMALL_STATE(9)] = 608,
[SMALL_STATE(10)] = 699,
[SMALL_STATE(11)] = 764,
[SMALL_STATE(12)] = 855,
[SMALL_STATE(13)] = 908,
[SMALL_STATE(14)] = 999,
[SMALL_STATE(15)] = 1052,
[SMALL_STATE(16)] = 1143,
[SMALL_STATE(17)] = 1198,
[SMALL_STATE(18)] = 1289,
[SMALL_STATE(19)] = 1380,
[SMALL_STATE(20)] = 1468,
[SMALL_STATE(21)] = 1520,
[SMALL_STATE(22)] = 1608,
[SMALL_STATE(23)] = 1696,
[SMALL_STATE(24)] = 1784,
[SMALL_STATE(25)] = 1872,
[SMALL_STATE(26)] = 1960,
[SMALL_STATE(27)] = 2014,
[SMALL_STATE(28)] = 2078,
[SMALL_STATE(29)] = 2166,
[SMALL_STATE(30)] = 2224,
[SMALL_STATE(31)] = 2312,
[SMALL_STATE(32)] = 2399,
[SMALL_STATE(33)] = 2446,
[SMALL_STATE(34)] = 2493,
[SMALL_STATE(35)] = 2540,
[SMALL_STATE(36)] = 2587,
[SMALL_STATE(37)] = 2634,
[SMALL_STATE(38)] = 2681,
[SMALL_STATE(39)] = 2768,
[SMALL_STATE(40)] = 2815,
[SMALL_STATE(41)] = 2902,
[SMALL_STATE(42)] = 2959,
[SMALL_STATE(43)] = 3012,
[SMALL_STATE(44)] = 3099,
[SMALL_STATE(45)] = 3146,
[SMALL_STATE(46)] = 3193,
[SMALL_STATE(47)] = 3240,
[SMALL_STATE(48)] = 3327,
[SMALL_STATE(49)] = 3414,
[SMALL_STATE(50)] = 3461,
[SMALL_STATE(51)] = 3548,
[SMALL_STATE(52)] = 3595,
[SMALL_STATE(53)] = 3642,
[SMALL_STATE(54)] = 3729,
[SMALL_STATE(55)] = 3808,
[SMALL_STATE(56)] = 3869,
[SMALL_STATE(57)] = 3932,
[SMALL_STATE(58)] = 3993,
[SMALL_STATE(59)] = 4072,
[SMALL_STATE(60)] = 4140,
[SMALL_STATE(61)] = 4208,
[SMALL_STATE(62)] = 4276,
[SMALL_STATE(63)] = 4337,
[SMALL_STATE(64)] = 4398,
[SMALL_STATE(65)] = 4442,
[SMALL_STATE(66)] = 4496,
[SMALL_STATE(67)] = 4540,
[SMALL_STATE(68)] = 4582,
[SMALL_STATE(69)] = 4624,
[SMALL_STATE(70)] = 4677,
[SMALL_STATE(71)] = 4720,
[SMALL_STATE(72)] = 4761,
[SMALL_STATE(73)] = 4814,
[SMALL_STATE(74)] = 4857,
[SMALL_STATE(75)] = 4898,
[SMALL_STATE(76)] = 4939,
[SMALL_STATE(77)] = 4982,
[SMALL_STATE(78)] = 5018,
[SMALL_STATE(79)] = 5054,
[SMALL_STATE(80)] = 5090,
[SMALL_STATE(81)] = 5132,
[SMALL_STATE(82)] = 5168,
[SMALL_STATE(83)] = 5220,
[SMALL_STATE(84)] = 5256,
[SMALL_STATE(85)] = 5292,
[SMALL_STATE(86)] = 5328,
[SMALL_STATE(87)] = 5364,
[SMALL_STATE(88)] = 5400,
[SMALL_STATE(89)] = 5436,
[SMALL_STATE(90)] = 5472,
[SMALL_STATE(91)] = 5526,
[SMALL_STATE(92)] = 5580,
[SMALL_STATE(93)] = 5616,
[SMALL_STATE(94)] = 5652,
[SMALL_STATE(95)] = 5692,
[SMALL_STATE(96)] = 5727,
[SMALL_STATE(97)] = 5762,
[SMALL_STATE(98)] = 5797,
[SMALL_STATE(99)] = 5832,
[SMALL_STATE(100)] = 5867,
[SMALL_STATE(101)] = 5902,
[SMALL_STATE(102)] = 5937,
[SMALL_STATE(103)] = 5972,
[SMALL_STATE(104)] = 6007,
[SMALL_STATE(105)] = 6042,
[SMALL_STATE(106)] = 6077,
[SMALL_STATE(107)] = 6112,
[SMALL_STATE(108)] = 6147,
[SMALL_STATE(109)] = 6188,
[SMALL_STATE(110)] = 6229,
[SMALL_STATE(111)] = 6265,
[SMALL_STATE(112)] = 6307,
[SMALL_STATE(113)] = 6358,
[SMALL_STATE(114)] = 6395,
[SMALL_STATE(115)] = 6446,
[SMALL_STATE(116)] = 6476,
[SMALL_STATE(117)] = 6506,
[SMALL_STATE(118)] = 6536,
[SMALL_STATE(119)] = 6566,
[SMALL_STATE(120)] = 6615,
[SMALL_STATE(121)] = 6664,
[SMALL_STATE(122)] = 6713,
[SMALL_STATE(123)] = 6762,
[SMALL_STATE(124)] = 6811,
[SMALL_STATE(125)] = 6860,
[SMALL_STATE(126)] = 6909,
[SMALL_STATE(127)] = 6958,
[SMALL_STATE(128)] = 7001,
[SMALL_STATE(129)] = 7050,
[SMALL_STATE(130)] = 7099,
[SMALL_STATE(131)] = 7148,
[SMALL_STATE(132)] = 7197,
[SMALL_STATE(133)] = 7242,
[SMALL_STATE(134)] = 7291,
[SMALL_STATE(135)] = 7340,
[SMALL_STATE(136)] = 7383,
[SMALL_STATE(137)] = 7432,
[SMALL_STATE(138)] = 7481,
[SMALL_STATE(139)] = 7530,
[SMALL_STATE(140)] = 7558,
[SMALL_STATE(141)] = 7604,
[SMALL_STATE(142)] = 7650,
[SMALL_STATE(143)] = 7696,
[SMALL_STATE(144)] = 7742,
[SMALL_STATE(145)] = 7770,
[SMALL_STATE(146)] = 7798,
[SMALL_STATE(147)] = 7826,
[SMALL_STATE(148)] = 7854,
[SMALL_STATE(149)] = 7882,
[SMALL_STATE(150)] = 7910,
[SMALL_STATE(151)] = 7938,
[SMALL_STATE(152)] = 7984,
[SMALL_STATE(153)] = 8012,
[SMALL_STATE(154)] = 8040,
[SMALL_STATE(155)] = 8068,
[SMALL_STATE(156)] = 8114,
[SMALL_STATE(157)] = 8142,
[SMALL_STATE(158)] = 8170,
[SMALL_STATE(159)] = 8216,
[SMALL_STATE(160)] = 8262,
[SMALL_STATE(161)] = 8290,
[SMALL_STATE(162)] = 8318,
[SMALL_STATE(163)] = 8346,
[SMALL_STATE(164)] = 8374,
[SMALL_STATE(165)] = 8404,
[SMALL_STATE(166)] = 8447,
[SMALL_STATE(167)] = 8490,
[SMALL_STATE(168)] = 8533,
[SMALL_STATE(169)] = 8576,
[SMALL_STATE(170)] = 8619,
[SMALL_STATE(171)] = 8662,
[SMALL_STATE(172)] = 8705,
[SMALL_STATE(173)] = 8748,
[SMALL_STATE(174)] = 8791,
[SMALL_STATE(175)] = 8834,
[SMALL_STATE(176)] = 8877,
[SMALL_STATE(177)] = 8920,
[SMALL_STATE(178)] = 8963,
[SMALL_STATE(179)] = 9006,
[SMALL_STATE(180)] = 9049,
[SMALL_STATE(181)] = 9092,
[SMALL_STATE(182)] = 9135,
[SMALL_STATE(183)] = 9178,
[SMALL_STATE(184)] = 9221,
[SMALL_STATE(185)] = 9264,
[SMALL_STATE(186)] = 9307,
[SMALL_STATE(187)] = 9350,
[SMALL_STATE(188)] = 9393,
[SMALL_STATE(189)] = 9436,
[SMALL_STATE(190)] = 9479,
[SMALL_STATE(191)] = 9522,
[SMALL_STATE(192)] = 9565,
[SMALL_STATE(193)] = 9608,
[SMALL_STATE(194)] = 9651,
[SMALL_STATE(195)] = 9694,
[SMALL_STATE(196)] = 9737,
[SMALL_STATE(197)] = 9780,
[SMALL_STATE(198)] = 9823,
[SMALL_STATE(199)] = 9866,
[SMALL_STATE(200)] = 9909,
[SMALL_STATE(201)] = 9952,
[SMALL_STATE(202)] = 9995,
[SMALL_STATE(203)] = 10038,
[SMALL_STATE(204)] = 10081,
[SMALL_STATE(205)] = 10124,
[SMALL_STATE(206)] = 10167,
[SMALL_STATE(207)] = 10210,
[SMALL_STATE(208)] = 10250,
[SMALL_STATE(209)] = 10284,
[SMALL_STATE(210)] = 10324,
[SMALL_STATE(211)] = 10364,
[SMALL_STATE(212)] = 10404,
[SMALL_STATE(213)] = 10438,
[SMALL_STATE(214)] = 10478,
[SMALL_STATE(215)] = 10512,
[SMALL_STATE(216)] = 10549,
[SMALL_STATE(217)] = 10586,
[SMALL_STATE(218)] = 10611,
[SMALL_STATE(219)] = 10648,
[SMALL_STATE(220)] = 10679,
[SMALL_STATE(221)] = 10712,
[SMALL_STATE(222)] = 10745,
[SMALL_STATE(223)] = 10775,
[SMALL_STATE(224)] = 10807,
[SMALL_STATE(225)] = 10839,
[SMALL_STATE(226)] = 10858,
[SMALL_STATE(227)] = 10879,
[SMALL_STATE(228)] = 10900,
[SMALL_STATE(229)] = 10919,
[SMALL_STATE(230)] = 10938,
[SMALL_STATE(231)] = 10957,
[SMALL_STATE(232)] = 10977,
[SMALL_STATE(233)] = 10997,
[SMALL_STATE(234)] = 11017,
[SMALL_STATE(235)] = 11039,
[SMALL_STATE(236)] = 11061,
[SMALL_STATE(237)] = 11083,
[SMALL_STATE(238)] = 11101,
[SMALL_STATE(239)] = 11123,
[SMALL_STATE(240)] = 11141,
[SMALL_STATE(241)] = 11163,
[SMALL_STATE(242)] = 11185,
[SMALL_STATE(243)] = 11210,
[SMALL_STATE(244)] = 11227,
[SMALL_STATE(245)] = 11244,
[SMALL_STATE(246)] = 11269,
[SMALL_STATE(247)] = 11289,
[SMALL_STATE(248)] = 11303,
[SMALL_STATE(249)] = 11321,
[SMALL_STATE(250)] = 11335,
[SMALL_STATE(251)] = 11353,
[SMALL_STATE(252)] = 11367,
[SMALL_STATE(253)] = 11381,
[SMALL_STATE(254)] = 11391,
[SMALL_STATE(255)] = 11401,
[SMALL_STATE(256)] = 11411,
[SMALL_STATE(257)] = 11421,
[SMALL_STATE(258)] = 11431,
[SMALL_STATE(259)] = 11441,
[SMALL_STATE(260)] = 11451,
[SMALL_STATE(261)] = 11461,
[SMALL_STATE(262)] = 11471,
[SMALL_STATE(263)] = 11481,
[SMALL_STATE(264)] = 11493,
[SMALL_STATE(265)] = 11503,
[SMALL_STATE(266)] = 11513,
[SMALL_STATE(267)] = 11523,
[SMALL_STATE(268)] = 11533,
[SMALL_STATE(269)] = 11543,
[SMALL_STATE(270)] = 11556,
[SMALL_STATE(271)] = 11567,
[SMALL_STATE(272)] = 11580,
[SMALL_STATE(273)] = 11593,
[SMALL_STATE(274)] = 11606,
[SMALL_STATE(275)] = 11619,
[SMALL_STATE(276)] = 11632,
[SMALL_STATE(277)] = 11645,
[SMALL_STATE(278)] = 11656,
[SMALL_STATE(279)] = 11669,
[SMALL_STATE(280)] = 11682,
[SMALL_STATE(281)] = 11695,
[SMALL_STATE(282)] = 11708,
[SMALL_STATE(283)] = 11721,
[SMALL_STATE(284)] = 11734,
[SMALL_STATE(285)] = 11747,
[SMALL_STATE(286)] = 11760,
[SMALL_STATE(287)] = 11773,
[SMALL_STATE(288)] = 11786,
[SMALL_STATE(289)] = 11799,
[SMALL_STATE(290)] = 11812,
[SMALL_STATE(291)] = 11825,
[SMALL_STATE(292)] = 11833,
[SMALL_STATE(293)] = 11841,
[SMALL_STATE(294)] = 11848,
[SMALL_STATE(295)] = 11855,
[SMALL_STATE(296)] = 11862,
[SMALL_STATE(297)] = 11869,
[SMALL_STATE(298)] = 11876,
[SMALL_STATE(299)] = 11883,
[SMALL_STATE(300)] = 11890,
[SMALL_STATE(301)] = 11897,
[SMALL_STATE(302)] = 11904,
[SMALL_STATE(303)] = 11911,
[SMALL_STATE(304)] = 11918,
[SMALL_STATE(305)] = 11925,
[SMALL_STATE(306)] = 11932,
[SMALL_STATE(307)] = 11939,
[SMALL_STATE(308)] = 11946,
[SMALL_STATE(309)] = 11953,
[SMALL_STATE(310)] = 11960,
[SMALL_STATE(311)] = 11967,
[SMALL_STATE(312)] = 11974,
};
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-11-30 16:05:09 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41),
[37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
2023-11-30 14:30:25 +00:00
[39] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
2023-11-30 16:05:09 +00:00
[41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(29),
[44] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(300),
[47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4),
[50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49),
[53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49),
[56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(34),
[59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(138),
[62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(169),
[65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(170),
[68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(173),
[71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(176),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(309),
[77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(309),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(187),
[83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(298),
[86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[92] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243),
[108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244),
[114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217),
[144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236),
[146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166),
[192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
[194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301),
[202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 5),
[218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 5),
[220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 5),
[226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 5),
[228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95),
[230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83),
[252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88),
[256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(95),
[275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(278),
[280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(102),
[283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(102),
[286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(104),
[289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(133),
[292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(174),
[295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(177),
[338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(77),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(271),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(83),
[363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(83),
[366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(88),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(130),
[372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(206),
[377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(77),
[380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(271),
[383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(83),
[386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(83),
[389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(88),
[392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(130),
[395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(206),
[398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3),
[466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3),
[468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3),
[486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3),
[488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51),
[502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60),
[508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(241),
[535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(228),
[538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(221),
[541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), SHIFT_REPEAT(230),
[568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276),
[580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(192),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(270),
[620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(296),
[631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[637] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
};
#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