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

15764 lines
352 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 01:59:58 +00:00
#define STATE_COUNT 371
#define LARGE_STATE_COUNT 2
2023-11-30 00:23:42 +00:00
#define SYMBOL_COUNT 98
#define ALIAS_COUNT 0
2023-11-30 00:23:42 +00:00
#define TOKEN_COUNT 57
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 4
2023-11-28 22:54:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 6
#define PRODUCTION_ID_COUNT 3
enum {
sym_identifier = 1,
sym__comment = 2,
anon_sym_async = 3,
anon_sym_LBRACE = 4,
anon_sym_RBRACE = 5,
anon_sym_SEMI = 6,
anon_sym_LPAREN = 7,
anon_sym_RPAREN = 8,
anon_sym_COMMA = 9,
sym_integer = 10,
sym_float = 11,
sym_string = 12,
anon_sym_true = 13,
anon_sym_false = 14,
anon_sym_LBRACK = 15,
anon_sym_RBRACK = 16,
anon_sym_EQ = 17,
anon_sym_COLON = 18,
anon_sym_DOT_DOT = 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,
anon_sym_table = 45,
anon_sym_return = 46,
anon_sym_use = 47,
anon_sym_any = 48,
anon_sym_bool = 49,
anon_sym_fn = 50,
anon_sym_DASH_GT = 51,
anon_sym_int = 52,
anon_sym_list = 53,
anon_sym_map = 54,
anon_sym_num = 55,
anon_sym_str = 56,
sym_root = 57,
sym_block = 58,
sym_statement = 59,
sym_expression = 60,
sym__expression_kind = 61,
aux_sym__expression_list = 62,
sym_value = 63,
sym_boolean = 64,
sym_list = 65,
sym_map = 66,
sym_index = 67,
sym_math = 68,
sym_math_operator = 69,
sym_logic = 70,
sym_logic_operator = 71,
sym_assignment = 72,
sym_index_assignment = 73,
sym_assignment_operator = 74,
sym_if_else = 75,
sym_if = 76,
sym_else_if = 77,
sym_else = 78,
sym_match = 79,
sym_while = 80,
sym_for = 81,
sym_identifier_list = 82,
sym_table = 83,
sym_return = 84,
sym_use = 85,
sym_type_definition = 86,
sym_type = 87,
sym_function = 88,
sym_function_call = 89,
sym_yield = 90,
aux_sym_root_repeat1 = 91,
aux_sym_list_repeat1 = 92,
aux_sym_map_repeat1 = 93,
aux_sym_if_else_repeat1 = 94,
aux_sym_match_repeat1 = 95,
aux_sym_identifier_list_repeat1 = 96,
aux_sym_type_repeat1 = 97,
};
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_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[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] = "..",
[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_table] = "table",
[anon_sym_return] = "return",
[anon_sym_use] = "use",
[anon_sym_any] = "any",
[anon_sym_bool] = "bool",
[anon_sym_fn] = "fn",
2023-11-30 00:23:42 +00:00
[anon_sym_DASH_GT] = "->",
[anon_sym_int] = "int",
[anon_sym_list] = "list",
[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",
[sym__expression_kind] = "_expression_kind",
[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_identifier_list] = "identifier_list",
[sym_table] = "table",
[sym_return] = "return",
[sym_use] = "use",
2023-11-30 00:23:42 +00:00
[sym_type_definition] = "type_definition",
[sym_type] = "type",
[sym_function] = "function",
[sym_function_call] = "function_call",
[sym_yield] = "yield",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
[aux_sym_match_repeat1] = "match_repeat1",
[aux_sym_identifier_list_repeat1] = "identifier_list_repeat1",
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = "type_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[sym__comment] = sym__comment,
[anon_sym_async] = anon_sym_async,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[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,
[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_table] = anon_sym_table,
[anon_sym_return] = anon_sym_return,
[anon_sym_use] = anon_sym_use,
[anon_sym_any] = anon_sym_any,
[anon_sym_bool] = anon_sym_bool,
[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_list] = anon_sym_list,
[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,
[sym__expression_kind] = sym__expression_kind,
[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_identifier_list] = sym_identifier_list,
[sym_table] = sym_table,
[sym_return] = sym_return,
[sym_use] = sym_use,
2023-11-30 00:23:42 +00:00
[sym_type_definition] = sym_type_definition,
[sym_type] = sym_type,
[sym_function] = sym_function,
[sym_function_call] = sym_function_call,
[sym_yield] = sym_yield,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
[aux_sym_match_repeat1] = aux_sym_match_repeat1,
[aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1,
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = aux_sym_type_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym__comment] = {
.visible = false,
.named = true,
},
[anon_sym_async] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.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,
},
[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_table] = {
.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,
},
[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_list] = {
.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,
},
[sym__expression_kind] = {
.visible = false,
.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_identifier_list] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_return] = {
.visible = true,
.named = true,
},
[sym_use] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_type_definition] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_type] = {
.visible = true,
.named = true,
},
2023-11-30 00:23:42 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_yield] = {
.visible = true,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
2023-11-30 00:23:42 +00:00
[aux_sym_type_repeat1] = {
.visible = false,
.named = false,
},
};
enum {
field_assignment_operator = 1,
field_identifier = 2,
field_statement = 3,
field_type = 4,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_assignment_operator] = "assignment_operator",
[field_identifier] = "identifier",
[field_statement] = "statement",
[field_type] = "type",
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 3},
[2] = {.index = 3, .length = 4},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_assignment_operator, 1},
{field_identifier, 0},
{field_statement, 2},
[3] =
{field_assignment_operator, 2},
{field_identifier, 0},
{field_statement, 3},
{field_type, 1},
};
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 01:59:58 +00:00
[3] = 2,
[4] = 4,
2023-11-28 22:54:17 +00:00
[5] = 5,
2023-11-30 00:23:42 +00:00
[6] = 6,
[7] = 5,
2023-11-30 01:59:58 +00:00
[8] = 5,
[9] = 6,
[10] = 5,
[11] = 6,
[12] = 5,
[13] = 5,
[14] = 6,
2023-11-30 00:23:42 +00:00
[15] = 5,
[16] = 6,
2023-11-30 01:59:58 +00:00
[17] = 6,
[18] = 18,
2023-11-30 00:23:42 +00:00
[19] = 6,
2023-11-28 22:54:17 +00:00
[20] = 20,
2023-11-30 00:23:42 +00:00
[21] = 20,
2023-11-30 01:59:58 +00:00
[22] = 20,
2023-11-30 00:23:42 +00:00
[23] = 20,
2023-11-30 01:59:58 +00:00
[24] = 24,
[25] = 24,
2023-11-30 00:23:42 +00:00
[26] = 20,
2023-11-30 01:59:58 +00:00
[27] = 24,
[28] = 24,
[29] = 20,
[30] = 24,
[31] = 20,
[32] = 24,
[33] = 24,
2023-11-28 22:54:17 +00:00
[34] = 34,
[35] = 35,
[36] = 36,
2023-11-30 00:23:42 +00:00
[37] = 37,
2023-11-28 22:54:17 +00:00
[38] = 38,
2023-11-30 01:59:58 +00:00
[39] = 34,
[40] = 40,
2023-11-30 00:23:42 +00:00
[41] = 41,
2023-11-30 01:59:58 +00:00
[42] = 42,
[43] = 43,
[44] = 44,
2023-11-30 01:59:58 +00:00
[45] = 42,
[46] = 46,
[47] = 46,
[48] = 42,
[49] = 49,
[50] = 40,
[51] = 37,
[52] = 40,
[53] = 38,
[54] = 54,
2023-11-30 00:23:42 +00:00
[55] = 54,
2023-11-30 01:59:58 +00:00
[56] = 35,
[57] = 41,
[58] = 43,
[59] = 44,
[60] = 60,
[61] = 61,
2023-11-30 00:23:42 +00:00
[62] = 62,
[63] = 63,
[64] = 64,
[65] = 65,
[66] = 66,
[67] = 67,
[68] = 68,
2023-11-30 00:23:42 +00:00
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 73,
2023-11-30 00:23:42 +00:00
[74] = 74,
[75] = 75,
2023-11-30 00:23:42 +00:00
[76] = 76,
[77] = 77,
[78] = 78,
2023-11-28 22:54:17 +00:00
[79] = 79,
2023-11-30 01:59:58 +00:00
[80] = 79,
[81] = 81,
2023-11-28 22:54:17 +00:00
[82] = 82,
2023-11-30 00:23:42 +00:00
[83] = 83,
2023-11-30 01:59:58 +00:00
[84] = 67,
[85] = 46,
[86] = 46,
[87] = 41,
[88] = 43,
[89] = 44,
[90] = 64,
[91] = 35,
[92] = 44,
[93] = 43,
[94] = 35,
[95] = 41,
[96] = 78,
[97] = 74,
[98] = 98,
[99] = 75,
[100] = 63,
[101] = 72,
[102] = 68,
[103] = 65,
[104] = 104,
[105] = 61,
[106] = 76,
[107] = 62,
[108] = 69,
[109] = 66,
[110] = 71,
[111] = 70,
2023-11-30 00:23:42 +00:00
[112] = 83,
[113] = 82,
[114] = 114,
2023-11-30 00:23:42 +00:00
[115] = 115,
2023-11-28 22:54:17 +00:00
[116] = 116,
2023-11-30 01:59:58 +00:00
[117] = 116,
[118] = 116,
[119] = 71,
[120] = 120,
[121] = 76,
[122] = 68,
[123] = 78,
[124] = 61,
[125] = 63,
[126] = 75,
[127] = 70,
[128] = 72,
[129] = 74,
[130] = 130,
[131] = 69,
[132] = 120,
[133] = 133,
2023-11-30 00:23:42 +00:00
[134] = 65,
2023-11-30 01:59:58 +00:00
[135] = 62,
[136] = 136,
[137] = 130,
[138] = 138,
[139] = 139,
[140] = 139,
[141] = 66,
[142] = 130,
[143] = 136,
[144] = 144,
[145] = 139,
[146] = 120,
[147] = 136,
[148] = 64,
[149] = 46,
[150] = 46,
[151] = 35,
[152] = 44,
[153] = 43,
[154] = 41,
[155] = 67,
2023-11-30 00:23:42 +00:00
[156] = 156,
2023-11-30 01:59:58 +00:00
[157] = 157,
[158] = 64,
2023-11-30 00:23:42 +00:00
[159] = 159,
[160] = 160,
2023-11-28 22:54:17 +00:00
[161] = 161,
2023-11-30 01:59:58 +00:00
[162] = 162,
[163] = 157,
[164] = 162,
[165] = 165,
[166] = 166,
[167] = 167,
[168] = 168,
[169] = 162,
[170] = 166,
[171] = 171,
[172] = 162,
[173] = 35,
[174] = 156,
[175] = 41,
[176] = 43,
[177] = 44,
[178] = 67,
[179] = 162,
[180] = 157,
[181] = 165,
[182] = 165,
[183] = 157,
[184] = 60,
[185] = 162,
[186] = 166,
[187] = 167,
2023-11-30 00:23:42 +00:00
[188] = 188,
2023-11-30 01:59:58 +00:00
[189] = 157,
[190] = 165,
2023-11-30 00:23:42 +00:00
[191] = 191,
2023-11-28 22:54:17 +00:00
[192] = 192,
2023-11-30 01:59:58 +00:00
[193] = 191,
[194] = 162,
[195] = 157,
[196] = 165,
[197] = 197,
[198] = 166,
[199] = 162,
[200] = 165,
[201] = 192,
[202] = 156,
[203] = 166,
[204] = 157,
[205] = 165,
[206] = 166,
[207] = 166,
[208] = 191,
[209] = 192,
[210] = 188,
[211] = 171,
[212] = 157,
[213] = 165,
[214] = 166,
[215] = 156,
[216] = 168,
2023-11-30 00:23:42 +00:00
[217] = 160,
2023-11-30 01:59:58 +00:00
[218] = 159,
[219] = 67,
[220] = 73,
[221] = 64,
[222] = 64,
2023-11-30 00:23:42 +00:00
[223] = 223,
2023-11-30 01:59:58 +00:00
[224] = 67,
2023-11-28 22:54:17 +00:00
[225] = 225,
2023-11-30 00:23:42 +00:00
[226] = 226,
2023-11-28 22:54:17 +00:00
[227] = 227,
2023-11-30 01:59:58 +00:00
[228] = 228,
2023-11-30 00:23:42 +00:00
[229] = 229,
[230] = 230,
[231] = 231,
[232] = 232,
2023-11-30 01:59:58 +00:00
[233] = 233,
[234] = 234,
[235] = 223,
2023-11-30 00:23:42 +00:00
[236] = 236,
2023-11-30 01:59:58 +00:00
[237] = 46,
[238] = 41,
[239] = 43,
[240] = 44,
[241] = 81,
[242] = 35,
[243] = 79,
[244] = 79,
[245] = 46,
[246] = 43,
[247] = 44,
[248] = 248,
[249] = 248,
[250] = 250,
2023-11-30 00:23:42 +00:00
[251] = 251,
2023-11-30 01:59:58 +00:00
[252] = 252,
[253] = 251,
[254] = 35,
[255] = 250,
[256] = 252,
[257] = 41,
2023-11-30 00:23:42 +00:00
[258] = 258,
2023-11-28 22:54:17 +00:00
[259] = 259,
2023-11-30 00:23:42 +00:00
[260] = 259,
2023-11-30 01:59:58 +00:00
[261] = 234,
[262] = 67,
[263] = 64,
2023-11-30 00:23:42 +00:00
[264] = 264,
[265] = 265,
[266] = 266,
2023-11-30 01:59:58 +00:00
[267] = 266,
2023-11-30 00:23:42 +00:00
[268] = 268,
[269] = 269,
2023-11-30 01:59:58 +00:00
[270] = 265,
[271] = 264,
2023-11-30 00:23:42 +00:00
[272] = 272,
[273] = 273,
[274] = 274,
[275] = 275,
2023-11-28 22:54:17 +00:00
[276] = 276,
2023-11-30 01:59:58 +00:00
[277] = 276,
[278] = 278,
2023-11-28 22:54:17 +00:00
[279] = 279,
[280] = 280,
2023-11-30 01:59:58 +00:00
[281] = 281,
2023-11-30 00:23:42 +00:00
[282] = 282,
2023-11-30 01:59:58 +00:00
[283] = 283,
[284] = 284,
[285] = 285,
[286] = 114,
[287] = 287,
[288] = 283,
[289] = 284,
[290] = 285,
[291] = 115,
[292] = 133,
[293] = 197,
[294] = 161,
[295] = 295,
[296] = 232,
[297] = 223,
[298] = 230,
[299] = 233,
[300] = 228,
[301] = 226,
[302] = 236,
[303] = 227,
[304] = 295,
[305] = 229,
[306] = 223,
[307] = 225,
[308] = 231,
2023-11-30 00:23:42 +00:00
[309] = 309,
2023-11-30 01:59:58 +00:00
[310] = 310,
[311] = 311,
[312] = 312,
[313] = 313,
[314] = 314,
[315] = 315,
[316] = 316,
2023-11-30 00:23:42 +00:00
[317] = 317,
2023-11-30 01:59:58 +00:00
[318] = 318,
[319] = 312,
[320] = 310,
[321] = 321,
[322] = 311,
[323] = 315,
2023-11-28 22:54:17 +00:00
[324] = 324,
2023-11-30 01:59:58 +00:00
[325] = 311,
[326] = 326,
2023-11-30 01:59:58 +00:00
[327] = 310,
[328] = 321,
[329] = 309,
[330] = 314,
[331] = 331,
[332] = 315,
[333] = 310,
[334] = 334,
[335] = 321,
[336] = 309,
[337] = 318,
[338] = 312,
[339] = 312,
[340] = 311,
[341] = 315,
[342] = 342,
[343] = 342,
2023-11-30 00:23:42 +00:00
[344] = 344,
2023-11-30 01:59:58 +00:00
[345] = 342,
[346] = 342,
[347] = 342,
[348] = 342,
[349] = 342,
[350] = 350,
[351] = 342,
[352] = 352,
[353] = 353,
[354] = 354,
[355] = 355,
[356] = 355,
[357] = 357,
2023-11-30 01:59:58 +00:00
[358] = 357,
[359] = 359,
[360] = 353,
[361] = 352,
[362] = 362,
[363] = 355,
[364] = 357,
[365] = 365,
[366] = 355,
[367] = 355,
[368] = 355,
[369] = 355,
[370] = 354,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-11-30 00:23:42 +00:00
if (eof) ADVANCE(30);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-11-30 00:23:42 +00:00
if (lookahead == '(') ADVANCE(36);
if (lookahead == ')') ADVANCE(37);
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(61);
if (lookahead == ',') ADVANCE(38);
if (lookahead == '-') ADVANCE(64);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == ':') ADVANCE(58);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(57);
if (lookahead == '>') ADVANCE(74);
if (lookahead == '[') ADVANCE(53);
if (lookahead == ']') ADVANCE(54);
if (lookahead == '`') ADVANCE(15);
2023-11-30 00:23:42 +00:00
if (lookahead == 'a') ADVANCE(46);
if (lookahead == 'e') ADVANCE(44);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(84);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 00:23:42 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-11-30 00:23:42 +00:00
if (lookahead == '(') ADVANCE(36);
if (lookahead == ')') ADVANCE(37);
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(60);
if (lookahead == ',') ADVANCE(38);
if (lookahead == '-') ADVANCE(65);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == ':') ADVANCE(58);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(13);
2023-11-30 00:23:42 +00:00
if (lookahead == '>') ADVANCE(74);
if (lookahead == '[') ADVANCE(53);
if (lookahead == ']') ADVANCE(54);
if (lookahead == '`') ADVANCE(15);
2023-11-30 00:23:42 +00:00
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(84);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 00:23:42 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
2023-11-30 00:23:42 +00:00
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(61);
if (lookahead == ',') ADVANCE(38);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (lookahead == ':') ADVANCE(58);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(57);
if (lookahead == '>') ADVANCE(74);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(22);
2023-11-30 00:23:42 +00:00
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 3:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
2023-11-30 00:23:42 +00:00
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(61);
if (lookahead == ',') ADVANCE(38);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (lookahead == ':') ADVANCE(58);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(56);
if (lookahead == '>') ADVANCE(74);
if (lookahead == '|') ADVANCE(22);
2023-11-30 00:23:42 +00:00
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 4:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
2023-11-30 00:23:42 +00:00
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(60);
if (lookahead == ',') ADVANCE(38);
if (lookahead == '-') ADVANCE(63);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (lookahead == ':') ADVANCE(58);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(14);
2023-11-30 00:23:42 +00:00
if (lookahead == '>') ADVANCE(74);
if (lookahead == 'e') ADVANCE(44);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(22);
2023-11-30 00:23:42 +00:00
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 5:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
2023-11-30 00:23:42 +00:00
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(60);
if (lookahead == '-') ADVANCE(63);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (lookahead == ':') ADVANCE(58);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(14);
2023-11-30 00:23:42 +00:00
if (lookahead == '>') ADVANCE(74);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 6:
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
2023-11-30 00:23:42 +00:00
if (lookahead == '(') ADVANCE(36);
if (lookahead == ')') ADVANCE(37);
if (lookahead == ',') ADVANCE(38);
if (lookahead == '-') ADVANCE(25);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '[') ADVANCE(53);
if (lookahead == ']') ADVANCE(54);
if (lookahead == '`') ADVANCE(15);
2023-11-30 00:23:42 +00:00
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(83);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(6)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 00:23:42 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 7:
2023-11-30 00:23:42 +00:00
if (lookahead == '"') ADVANCE(52);
if (lookahead != 0) ADVANCE(7);
END_STATE();
case 8:
2023-11-30 00:23:42 +00:00
if (lookahead == '&') ADVANCE(71);
END_STATE();
case 9:
2023-11-30 00:23:42 +00:00
if (lookahead == '\'') ADVANCE(52);
if (lookahead != 0) ADVANCE(9);
END_STATE();
case 10:
2023-11-30 00:23:42 +00:00
if (lookahead == '.') ADVANCE(59);
END_STATE();
case 11:
2023-11-30 00:23:42 +00:00
if (lookahead == '=') ADVANCE(70);
END_STATE();
case 12:
2023-11-30 00:23:42 +00:00
if (lookahead == '=') ADVANCE(78);
END_STATE();
case 13:
2023-11-30 00:23:42 +00:00
if (lookahead == '=') ADVANCE(69);
END_STATE();
case 14:
2023-11-30 00:23:42 +00:00
if (lookahead == '=') ADVANCE(69);
if (lookahead == '>') ADVANCE(81);
END_STATE();
case 15:
2023-11-30 00:23:42 +00:00
if (lookahead == '`') ADVANCE(52);
if (lookahead != 0) ADVANCE(15);
END_STATE();
case 16:
if (lookahead == 'f') ADVANCE(19);
END_STATE();
case 17:
2023-11-30 00:23:42 +00:00
if (lookahead == 'f') ADVANCE(80);
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 00:23:42 +00:00
if (lookahead == 'r') ADVANCE(82);
END_STATE();
case 21:
2023-11-30 00:23:42 +00:00
if (lookahead == '|') ADVANCE(32);
if (lookahead == '\n' ||
2023-11-30 00:23:42 +00:00
lookahead == '#') ADVANCE(31);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 22:
2023-11-30 00:23:42 +00:00
if (lookahead == '|') ADVANCE(72);
END_STATE();
case 23:
2023-11-30 00:23:42 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
END_STATE();
case 24:
2023-11-30 00:23:42 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == '=') ADVANCE(79);
END_STATE();
case 25:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
2023-11-30 00:23:42 +00:00
if (lookahead == '>') ADVANCE(85);
END_STATE();
case 26:
2023-11-30 00:23:42 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51);
END_STATE();
case 27:
if (eof) ADVANCE(30);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
2023-11-30 00:23:42 +00:00
if (lookahead == '%') ADVANCE(68);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
2023-11-30 00:23:42 +00:00
if (lookahead == '(') ADVANCE(36);
if (lookahead == '*') ADVANCE(66);
if (lookahead == '+') ADVANCE(61);
if (lookahead == '-') ADVANCE(64);
if (lookahead == '.') ADVANCE(10);
2023-11-30 00:23:42 +00:00
if (lookahead == '/') ADVANCE(67);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == ':') ADVANCE(58);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '<') ADVANCE(75);
if (lookahead == '=') ADVANCE(56);
if (lookahead == '>') ADVANCE(74);
if (lookahead == '[') ADVANCE(53);
if (lookahead == '`') ADVANCE(15);
2023-11-30 00:23:42 +00:00
if (lookahead == 'a') ADVANCE(46);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(84);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-30 00:23:42 +00:00
lookahead == ' ') SKIP(27)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 00:23:42 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
2023-11-30 00:23:42 +00:00
case 28:
if (eof) ADVANCE(30);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
2023-11-30 00:23:42 +00:00
if (lookahead == '(') ADVANCE(36);
if (lookahead == '+') ADVANCE(12);
if (lookahead == '-') ADVANCE(24);
2023-11-30 00:23:42 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '=') ADVANCE(55);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '[') ADVANCE(53);
if (lookahead == '`') ADVANCE(15);
2023-11-30 00:23:42 +00:00
if (lookahead == 'a') ADVANCE(46);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(83);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-30 00:23:42 +00:00
lookahead == ' ') SKIP(28)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 00:23:42 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
2023-11-30 00:23:42 +00:00
case 29:
if (eof) ADVANCE(30);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
2023-11-30 00:23:42 +00:00
if (lookahead == '(') ADVANCE(36);
if (lookahead == '-') ADVANCE(23);
2023-11-30 00:23:42 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == ';') ADVANCE(35);
if (lookahead == '[') ADVANCE(53);
if (lookahead == '`') ADVANCE(15);
2023-11-30 00:23:42 +00:00
if (lookahead == 'a') ADVANCE(46);
if (lookahead == 'e') ADVANCE(44);
if (lookahead == '{') ADVANCE(33);
if (lookahead == '|') ADVANCE(83);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-30 00:23:42 +00:00
lookahead == ' ') SKIP(29)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-30 00:23:42 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
2023-11-30 00:23:42 +00:00
case 30:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-11-30 00:23:42 +00:00
case 31:
ACCEPT_TOKEN(sym__comment);
END_STATE();
2023-11-30 00:23:42 +00:00
case 32:
ACCEPT_TOKEN(sym__comment);
2023-11-30 00:23:42 +00:00
if (lookahead == '|') ADVANCE(32);
if (lookahead == '\n' ||
2023-11-30 00:23:42 +00:00
lookahead == '#') ADVANCE(31);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 33:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 34:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 35:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 36:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 37:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 38:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 39:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 40:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == ' ') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 41:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 42:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 'c') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 43:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 44:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 'l') ADVANCE(47);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 45:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 'n') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 46:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 's') ADVANCE(48);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 47:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 's') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 48:
ACCEPT_TOKEN(sym_identifier);
2023-11-30 00:23:42 +00:00
if (lookahead == 'y') ADVANCE(45);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-30 00:23:42 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 49:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 50:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(26);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
END_STATE();
case 51:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51);
END_STATE();
case 52:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
case 53:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 54:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_EQ);
2023-11-30 00:23:42 +00:00
if (lookahead == '=') ADVANCE(69);
END_STATE();
case 57:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(69);
if (lookahead == '>') ADVANCE(81);
END_STATE();
case 58:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 59:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 61:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
2023-11-28 22:54:17 +00:00
if (lookahead == '=') ADVANCE(78);
END_STATE();
case 62:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-30 00:23:42 +00:00
if (lookahead == '=') ADVANCE(79);
if (lookahead == '>') ADVANCE(85);
END_STATE();
case 63:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-30 00:23:42 +00:00
if (lookahead == '>') ADVANCE(85);
END_STATE();
case 64:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-30 00:23:42 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == '=') ADVANCE(79);
if (lookahead == '>') ADVANCE(85);
END_STATE();
case 65:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
if (lookahead == '>') ADVANCE(85);
END_STATE();
case 66:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 67:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 68:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 69:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 70:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 71:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 72:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 74:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_GT);
2023-11-28 22:54:17 +00:00
if (lookahead == '=') ADVANCE(76);
END_STATE();
case 75:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(77);
END_STATE();
2023-11-28 22:54:17 +00:00
case 76:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-11-28 22:54:17 +00:00
case 77:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-11-28 22:54:17 +00:00
case 78:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-11-28 22:54:17 +00:00
case 79:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-11-28 22:54:17 +00:00
case 80:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-11-28 22:54:17 +00:00
case 81:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
2023-11-28 22:54:17 +00:00
case 82:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
2023-11-28 22:54:17 +00:00
case 83:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
2023-11-28 22:54:17 +00:00
case 84:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '|') ADVANCE(72);
END_STATE();
case 85:
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);
if (lookahead == 'l') ADVANCE(6);
if (lookahead == 'm') ADVANCE(7);
2023-11-30 00:23:42 +00:00
if (lookahead == 'n') ADVANCE(8);
if (lookahead == 'r') ADVANCE(9);
if (lookahead == 's') ADVANCE(10);
if (lookahead == 't') ADVANCE(11);
if (lookahead == 'u') ADVANCE(12);
if (lookahead == 'w') ADVANCE(13);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-11-30 00:23:42 +00:00
if (lookahead == 'n') ADVANCE(14);
if (lookahead == 's') ADVANCE(15);
END_STATE();
case 2:
2023-11-30 00:23:42 +00:00
if (lookahead == 'o') ADVANCE(16);
END_STATE();
case 3:
2023-11-30 00:23:42 +00:00
if (lookahead == 'l') ADVANCE(17);
END_STATE();
case 4:
2023-11-30 00:23:42 +00:00
if (lookahead == 'a') ADVANCE(18);
if (lookahead == 'n') ADVANCE(19);
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 5:
2023-11-28 22:54:17 +00:00
if (lookahead == 'f') ADVANCE(21);
if (lookahead == 'n') ADVANCE(22);
END_STATE();
case 6:
2023-11-28 22:54:17 +00:00
if (lookahead == 'i') ADVANCE(23);
END_STATE();
case 7:
2023-11-28 22:54:17 +00:00
if (lookahead == 'a') ADVANCE(24);
END_STATE();
case 8:
2023-11-30 00:23:42 +00:00
if (lookahead == 'u') ADVANCE(25);
END_STATE();
case 9:
2023-11-28 22:54:17 +00:00
if (lookahead == 'e') ADVANCE(26);
END_STATE();
case 10:
2023-11-30 00:23:42 +00:00
if (lookahead == 't') ADVANCE(27);
END_STATE();
case 11:
2023-11-30 00:23:42 +00:00
if (lookahead == 'a') ADVANCE(28);
if (lookahead == 'r') ADVANCE(29);
END_STATE();
case 12:
2023-11-30 00:23:42 +00:00
if (lookahead == 's') ADVANCE(30);
END_STATE();
case 13:
2023-11-30 00:23:42 +00:00
if (lookahead == 'h') ADVANCE(31);
END_STATE();
case 14:
2023-11-30 00:23:42 +00:00
if (lookahead == 'y') ADVANCE(32);
END_STATE();
case 15:
2023-11-30 00:23:42 +00:00
if (lookahead == 'y') ADVANCE(33);
END_STATE();
case 16:
2023-11-30 00:23:42 +00:00
if (lookahead == 'o') ADVANCE(34);
END_STATE();
case 17:
2023-11-30 00:23:42 +00:00
if (lookahead == 's') ADVANCE(35);
END_STATE();
case 18:
2023-11-30 00:23:42 +00:00
if (lookahead == 'l') ADVANCE(36);
END_STATE();
case 19:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_fn);
END_STATE();
case 20:
2023-11-30 00:23:42 +00:00
if (lookahead == 'r') ADVANCE(37);
END_STATE();
case 21:
2023-11-28 22:54:17 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 22:
2023-11-28 22:54:17 +00:00
ACCEPT_TOKEN(anon_sym_in);
2023-11-30 00:23:42 +00:00
if (lookahead == 't') ADVANCE(38);
END_STATE();
case 23:
2023-11-30 00:23:42 +00:00
if (lookahead == 's') ADVANCE(39);
END_STATE();
case 24:
2023-11-30 00:23:42 +00:00
if (lookahead == 'p') ADVANCE(40);
if (lookahead == 't') ADVANCE(41);
END_STATE();
case 25:
2023-11-30 00:23:42 +00:00
if (lookahead == 'm') ADVANCE(42);
END_STATE();
case 26:
2023-11-30 00:23:42 +00:00
if (lookahead == 't') ADVANCE(43);
END_STATE();
case 27:
2023-11-30 00:23:42 +00:00
if (lookahead == 'r') ADVANCE(44);
END_STATE();
case 28:
2023-11-30 00:23:42 +00:00
if (lookahead == 'b') ADVANCE(45);
END_STATE();
case 29:
2023-11-30 00:23:42 +00:00
if (lookahead == 'u') ADVANCE(46);
END_STATE();
case 30:
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(47);
END_STATE();
case 31:
2023-11-30 00:23:42 +00:00
if (lookahead == 'i') ADVANCE(48);
END_STATE();
case 32:
2023-11-28 22:54:17 +00:00
ACCEPT_TOKEN(anon_sym_any);
END_STATE();
case 33:
2023-11-30 00:23:42 +00:00
if (lookahead == 'n') ADVANCE(49);
END_STATE();
case 34:
2023-11-30 00:23:42 +00:00
if (lookahead == 'l') ADVANCE(50);
END_STATE();
case 35:
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(51);
END_STATE();
case 36:
2023-11-30 00:23:42 +00:00
if (lookahead == 's') ADVANCE(52);
END_STATE();
case 37:
2023-11-28 22:54:17 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 38:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_int);
END_STATE();
case 39:
2023-11-30 00:23:42 +00:00
if (lookahead == 't') ADVANCE(53);
END_STATE();
case 40:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_map);
END_STATE();
case 41:
2023-11-30 00:23:42 +00:00
if (lookahead == 'c') ADVANCE(54);
END_STATE();
case 42:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_num);
END_STATE();
case 43:
2023-11-30 00:23:42 +00:00
if (lookahead == 'u') ADVANCE(55);
END_STATE();
case 44:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_str);
END_STATE();
case 45:
2023-11-30 00:23:42 +00:00
if (lookahead == 'l') ADVANCE(56);
END_STATE();
case 46:
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(57);
END_STATE();
case 47:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_use);
END_STATE();
case 48:
2023-11-30 00:23:42 +00:00
if (lookahead == 'l') ADVANCE(58);
END_STATE();
case 49:
2023-11-30 00:23:42 +00:00
if (lookahead == 'c') ADVANCE(59);
END_STATE();
case 50:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_bool);
END_STATE();
case 51:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 52:
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(60);
END_STATE();
case 53:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_list);
END_STATE();
case 54:
2023-11-30 00:23:42 +00:00
if (lookahead == 'h') ADVANCE(61);
END_STATE();
case 55:
2023-11-30 00:23:42 +00:00
if (lookahead == 'r') ADVANCE(62);
END_STATE();
case 56:
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(63);
END_STATE();
case 57:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 58:
2023-11-30 00:23:42 +00:00
if (lookahead == 'e') ADVANCE(64);
END_STATE();
case 59:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 60:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 61:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_match);
END_STATE();
case 62:
2023-11-30 00:23:42 +00:00
if (lookahead == 'n') ADVANCE(65);
END_STATE();
case 63:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_table);
END_STATE();
case 64:
2023-11-30 00:23:42 +00:00
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 65:
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 00:23:42 +00:00
[1] = {.lex_state = 28},
[2] = {.lex_state = 28},
[3] = {.lex_state = 28},
[4] = {.lex_state = 28},
[5] = {.lex_state = 28},
[6] = {.lex_state = 28},
[7] = {.lex_state = 28},
[8] = {.lex_state = 28},
[9] = {.lex_state = 28},
[10] = {.lex_state = 28},
[11] = {.lex_state = 28},
[12] = {.lex_state = 28},
[13] = {.lex_state = 28},
[14] = {.lex_state = 28},
[15] = {.lex_state = 28},
[16] = {.lex_state = 28},
[17] = {.lex_state = 28},
[18] = {.lex_state = 28},
[19] = {.lex_state = 28},
[20] = {.lex_state = 28},
[21] = {.lex_state = 28},
[22] = {.lex_state = 28},
[23] = {.lex_state = 28},
[24] = {.lex_state = 28},
[25] = {.lex_state = 28},
[26] = {.lex_state = 28},
[27] = {.lex_state = 28},
[28] = {.lex_state = 28},
[29] = {.lex_state = 28},
[30] = {.lex_state = 28},
[31] = {.lex_state = 28},
[32] = {.lex_state = 28},
[33] = {.lex_state = 28},
[34] = {.lex_state = 28},
[35] = {.lex_state = 27},
2023-11-30 00:23:42 +00:00
[36] = {.lex_state = 28},
2023-11-30 01:59:58 +00:00
[37] = {.lex_state = 28},
2023-11-30 00:23:42 +00:00
[38] = {.lex_state = 28},
[39] = {.lex_state = 28},
2023-11-30 01:59:58 +00:00
[40] = {.lex_state = 1},
[41] = {.lex_state = 27},
[42] = {.lex_state = 1},
[43] = {.lex_state = 27},
[44] = {.lex_state = 27},
[45] = {.lex_state = 1},
[46] = {.lex_state = 27},
[47] = {.lex_state = 27},
[48] = {.lex_state = 1},
[49] = {.lex_state = 28},
[50] = {.lex_state = 1},
[51] = {.lex_state = 28},
[52] = {.lex_state = 1},
[53] = {.lex_state = 28},
2023-11-30 00:23:42 +00:00
[54] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[55] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[56] = {.lex_state = 27},
[57] = {.lex_state = 27},
[58] = {.lex_state = 27},
[59] = {.lex_state = 27},
[60] = {.lex_state = 27},
[61] = {.lex_state = 27},
[62] = {.lex_state = 27},
[63] = {.lex_state = 27},
[64] = {.lex_state = 27},
[65] = {.lex_state = 27},
[66] = {.lex_state = 27},
[67] = {.lex_state = 27},
[68] = {.lex_state = 27},
[69] = {.lex_state = 27},
[70] = {.lex_state = 27},
[71] = {.lex_state = 27},
[72] = {.lex_state = 27},
[73] = {.lex_state = 27},
[74] = {.lex_state = 27},
[75] = {.lex_state = 27},
[76] = {.lex_state = 27},
[77] = {.lex_state = 27},
[78] = {.lex_state = 27},
[79] = {.lex_state = 27},
[80] = {.lex_state = 27},
[81] = {.lex_state = 27},
[82] = {.lex_state = 28},
[83] = {.lex_state = 28},
[84] = {.lex_state = 1},
[85] = {.lex_state = 1},
[86] = {.lex_state = 1},
[87] = {.lex_state = 1},
[88] = {.lex_state = 1},
[89] = {.lex_state = 1},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
[92] = {.lex_state = 1},
[93] = {.lex_state = 1},
[94] = {.lex_state = 1},
[95] = {.lex_state = 1},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
[104] = {.lex_state = 1},
[105] = {.lex_state = 1},
[106] = {.lex_state = 1},
[107] = {.lex_state = 1},
[108] = {.lex_state = 1},
[109] = {.lex_state = 1},
[110] = {.lex_state = 1},
[111] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[112] = {.lex_state = 6},
[113] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[114] = {.lex_state = 29},
2023-11-30 00:23:42 +00:00
[115] = {.lex_state = 29},
2023-11-30 01:59:58 +00:00
[116] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[117] = {.lex_state = 1},
[118] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[119] = {.lex_state = 2},
[120] = {.lex_state = 6},
[121] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[122] = {.lex_state = 2},
[123] = {.lex_state = 2},
[124] = {.lex_state = 2},
2023-11-30 01:59:58 +00:00
[125] = {.lex_state = 2},
[126] = {.lex_state = 2},
[127] = {.lex_state = 2},
[128] = {.lex_state = 2},
[129] = {.lex_state = 2},
2023-11-28 22:54:17 +00:00
[130] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[131] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[132] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[133] = {.lex_state = 29},
2023-11-28 22:54:17 +00:00
[134] = {.lex_state = 2},
2023-11-30 01:59:58 +00:00
[135] = {.lex_state = 2},
[136] = {.lex_state = 6},
[137] = {.lex_state = 6},
[138] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[139] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[140] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[141] = {.lex_state = 2},
2023-11-30 01:59:58 +00:00
[142] = {.lex_state = 6},
[143] = {.lex_state = 6},
[144] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[145] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[146] = {.lex_state = 6},
[147] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[148] = {.lex_state = 4},
[149] = {.lex_state = 3},
2023-11-30 01:59:58 +00:00
[150] = {.lex_state = 3},
2023-11-30 00:23:42 +00:00
[151] = {.lex_state = 3},
[152] = {.lex_state = 3},
[153] = {.lex_state = 3},
[154] = {.lex_state = 3},
2023-11-30 01:59:58 +00:00
[155] = {.lex_state = 4},
2023-11-30 00:23:42 +00:00
[156] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[157] = {.lex_state = 6},
[158] = {.lex_state = 29},
2023-11-28 22:54:17 +00:00
[159] = {.lex_state = 6},
[160] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[161] = {.lex_state = 29},
2023-11-30 00:23:42 +00:00
[162] = {.lex_state = 6},
[163] = {.lex_state = 6},
[164] = {.lex_state = 6},
[165] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[166] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[167] = {.lex_state = 6},
[168] = {.lex_state = 6},
[169] = {.lex_state = 6},
[170] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[171] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[172] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[173] = {.lex_state = 3},
[174] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[175] = {.lex_state = 3},
2023-11-30 00:23:42 +00:00
[176] = {.lex_state = 3},
[177] = {.lex_state = 3},
[178] = {.lex_state = 29},
[179] = {.lex_state = 6},
[180] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[181] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[182] = {.lex_state = 6},
[183] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[184] = {.lex_state = 3},
[185] = {.lex_state = 6},
[186] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[187] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[188] = {.lex_state = 6},
[189] = {.lex_state = 6},
[190] = {.lex_state = 6},
[191] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[192] = {.lex_state = 6},
[193] = {.lex_state = 6},
[194] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[195] = {.lex_state = 6},
[196] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[197] = {.lex_state = 29},
[198] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[199] = {.lex_state = 6},
[200] = {.lex_state = 6},
[201] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[202] = {.lex_state = 6},
[203] = {.lex_state = 6},
[204] = {.lex_state = 6},
[205] = {.lex_state = 6},
[206] = {.lex_state = 6},
[207] = {.lex_state = 6},
[208] = {.lex_state = 6},
[209] = {.lex_state = 6},
[210] = {.lex_state = 6},
[211] = {.lex_state = 6},
[212] = {.lex_state = 6},
[213] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[214] = {.lex_state = 6},
[215] = {.lex_state = 6},
[216] = {.lex_state = 6},
[217] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[218] = {.lex_state = 6},
[219] = {.lex_state = 3},
[220] = {.lex_state = 3},
[221] = {.lex_state = 3},
[222] = {.lex_state = 28},
[223] = {.lex_state = 28},
[224] = {.lex_state = 28},
[225] = {.lex_state = 28},
[226] = {.lex_state = 28},
[227] = {.lex_state = 28},
[228] = {.lex_state = 28},
[229] = {.lex_state = 28},
[230] = {.lex_state = 28},
[231] = {.lex_state = 28},
[232] = {.lex_state = 28},
[233] = {.lex_state = 28},
[234] = {.lex_state = 28},
[235] = {.lex_state = 28},
[236] = {.lex_state = 28},
[237] = {.lex_state = 5},
[238] = {.lex_state = 5},
2023-11-30 01:59:58 +00:00
[239] = {.lex_state = 5},
[240] = {.lex_state = 5},
[241] = {.lex_state = 2},
[242] = {.lex_state = 5},
[243] = {.lex_state = 2},
[244] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[245] = {.lex_state = 5},
2023-11-30 01:59:58 +00:00
[246] = {.lex_state = 5},
[247] = {.lex_state = 5},
[248] = {.lex_state = 2},
[249] = {.lex_state = 2},
[250] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[251] = {.lex_state = 2},
[252] = {.lex_state = 2},
2023-11-30 01:59:58 +00:00
[253] = {.lex_state = 2},
[254] = {.lex_state = 5},
2023-11-30 00:23:42 +00:00
[255] = {.lex_state = 2},
[256] = {.lex_state = 2},
2023-11-30 01:59:58 +00:00
[257] = {.lex_state = 5},
2023-11-30 00:23:42 +00:00
[258] = {.lex_state = 28},
[259] = {.lex_state = 4},
[260] = {.lex_state = 4},
[261] = {.lex_state = 6},
[262] = {.lex_state = 6},
[263] = {.lex_state = 6},
[264] = {.lex_state = 6},
[265] = {.lex_state = 6},
[266] = {.lex_state = 6},
[267] = {.lex_state = 6},
[268] = {.lex_state = 6},
[269] = {.lex_state = 6},
[270] = {.lex_state = 6},
[271] = {.lex_state = 6},
[272] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[273] = {.lex_state = 6},
[274] = {.lex_state = 6},
[275] = {.lex_state = 6},
[276] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[277] = {.lex_state = 6},
[278] = {.lex_state = 6},
[279] = {.lex_state = 6},
[280] = {.lex_state = 6},
[281] = {.lex_state = 6},
[282] = {.lex_state = 6},
[283] = {.lex_state = 1},
[284] = {.lex_state = 1},
[285] = {.lex_state = 1},
[286] = {.lex_state = 4},
2023-11-30 00:23:42 +00:00
[287] = {.lex_state = 1},
[288] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[289] = {.lex_state = 1},
[290] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[291] = {.lex_state = 4},
[292] = {.lex_state = 4},
[293] = {.lex_state = 4},
[294] = {.lex_state = 4},
[295] = {.lex_state = 28},
2023-11-28 22:54:17 +00:00
[296] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[297] = {.lex_state = 1},
[298] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[299] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[300] = {.lex_state = 1},
[301] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[302] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[303] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[304] = {.lex_state = 28},
2023-11-28 22:54:17 +00:00
[305] = {.lex_state = 1},
[306] = {.lex_state = 1},
[307] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[308] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[309] = {.lex_state = 1},
[310] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[311] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[312] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[313] = {.lex_state = 28},
[314] = {.lex_state = 1},
[315] = {.lex_state = 6},
[316] = {.lex_state = 1},
[317] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[318] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[319] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[320] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[321] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[322] = {.lex_state = 6},
[323] = {.lex_state = 6},
[324] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[325] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[326] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[327] = {.lex_state = 1},
[328] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[329] = {.lex_state = 1},
[330] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[331] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[332] = {.lex_state = 6},
2023-11-30 01:59:58 +00:00
[333] = {.lex_state = 1},
[334] = {.lex_state = 6},
[335] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[336] = {.lex_state = 1},
2023-11-30 01:59:58 +00:00
[337] = {.lex_state = 1},
[338] = {.lex_state = 1},
[339] = {.lex_state = 1},
[340] = {.lex_state = 6},
[341] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[342] = {.lex_state = 28},
2023-11-30 01:59:58 +00:00
[343] = {.lex_state = 28},
[344] = {.lex_state = 1},
[345] = {.lex_state = 28},
[346] = {.lex_state = 28},
[347] = {.lex_state = 28},
[348] = {.lex_state = 28},
[349] = {.lex_state = 28},
[350] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[351] = {.lex_state = 28},
[352] = {.lex_state = 1},
[353] = {.lex_state = 0},
2023-11-30 01:59:58 +00:00
[354] = {.lex_state = 1},
[355] = {.lex_state = 0},
2023-11-30 00:23:42 +00:00
[356] = {.lex_state = 0},
2023-11-28 22:54:17 +00:00
[357] = {.lex_state = 0},
2023-11-30 01:59:58 +00:00
[358] = {.lex_state = 0},
[359] = {.lex_state = 28},
[360] = {.lex_state = 0},
2023-11-30 01:59:58 +00:00
[361] = {.lex_state = 1},
[362] = {.lex_state = 0},
[363] = {.lex_state = 0},
[364] = {.lex_state = 0},
[365] = {.lex_state = 28},
[366] = {.lex_state = 0},
[367] = {.lex_state = 0},
[368] = {.lex_state = 0},
[369] = {.lex_state = 0},
[370] = {.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_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = 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),
[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_PIPE_PIPE] = 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_table] = ACTIONS(1),
[anon_sym_return] = ACTIONS(1),
[anon_sym_use] = ACTIONS(1),
[anon_sym_any] = ACTIONS(1),
[anon_sym_bool] = 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_list] = 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 01:59:58 +00:00
[sym_root] = STATE(362),
[sym_block] = STATE(223),
[sym_statement] = STATE(18),
[sym_expression] = STATE(79),
[sym__expression_kind] = STATE(61),
[sym_value] = STATE(61),
[sym_boolean] = STATE(75),
[sym_list] = STATE(75),
[sym_map] = STATE(75),
[sym_index] = STATE(73),
[sym_math] = STATE(61),
[sym_logic] = STATE(61),
[sym_assignment] = STATE(223),
[sym_index_assignment] = STATE(223),
[sym_if_else] = STATE(223),
[sym_if] = STATE(114),
[sym_match] = STATE(223),
[sym_while] = STATE(223),
[sym_for] = STATE(223),
[sym_table] = STATE(75),
[sym_return] = STATE(223),
[sym_use] = STATE(223),
[sym_function] = STATE(75),
[sym_function_call] = STATE(61),
[sym_yield] = STATE(61),
[aux_sym_root_repeat1] = STATE(18),
[sym_identifier] = ACTIONS(5),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(7),
[anon_sym_LBRACE] = ACTIONS(9),
[anon_sym_LPAREN] = ACTIONS(11),
[sym_integer] = ACTIONS(13),
[sym_float] = ACTIONS(15),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = 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 00:23:42 +00:00
[anon_sym_PIPE] = ACTIONS(31),
[anon_sym_table] = ACTIONS(33),
[anon_sym_return] = ACTIONS(35),
[anon_sym_use] = ACTIONS(37),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-11-30 00:23:42 +00:00
[0] = 27,
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,
anon_sym_LPAREN,
2023-11-28 22:54:17 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-28 22:54:17 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(39), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(41), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 01:59:58 +00:00
STATE(329), 1,
2023-11-28 22:54:17 +00:00
aux_sym_map_repeat1,
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-28 22:54:17 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(5), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
2023-11-28 22:54:17 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 01:59:58 +00:00
[102] = 27,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(7), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(21), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(23), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(25), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(27), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(29), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(35), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(37), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(39), 1,
sym_identifier,
ACTIONS(43), 1,
anon_sym_RBRACE,
STATE(73), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 01:59:58 +00:00
STATE(309), 1,
aux_sym_map_repeat1,
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(8), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
2023-11-28 22:54:17 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 01:59:58 +00:00
[204] = 26,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(47), 1,
sym_identifier,
ACTIONS(50), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(53), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(56), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(59), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(68), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(71), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(74), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(77), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(80), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(83), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(86), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(89), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(92), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(95), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(45), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(62), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(65), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
2023-11-28 22:54:17 +00:00
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[304] = 26,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(98), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[403] = 26,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-11-28 22:54:17 +00:00
ACTIONS(7), 1,
anon_sym_async,
2023-11-28 22:54:17 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-28 22:54:17 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-28 22:54:17 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-28 22:54:17 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(100), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
2023-11-28 22:54:17 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-28 22:54:17 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[502] = 26,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(102), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[601] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(104), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[700] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(106), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[799] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(108), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[898] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(110), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[997] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(112), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1096] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(114), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1195] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(116), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1294] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(118), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1393] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(120), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1492] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(122), 1,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1591] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(124), 1,
2023-11-30 01:59:58 +00:00
ts_builtin_sym_end,
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1690] = 26,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
ACTIONS(126), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(4), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1789] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1885] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[1981] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2077] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2173] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(16), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2269] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(6), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2365] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2461] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(14), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2557] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2653] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(8), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2749] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(19), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2845] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[2941] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[3037] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(11), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(223), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[3133] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(128), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(130), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(132), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(144), 1,
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(146), 1,
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(148), 1,
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(150), 1,
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(152), 1,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(158), 1,
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(160), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(220), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(244), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(286), 1,
sym_if,
2023-11-30 01:59:58 +00:00
STATE(299), 1,
2023-11-28 22:54:17 +00:00
sym_statement,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(297), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[3228] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(212), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(213), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(164), 18,
anon_sym_async,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(162), 23,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[3283] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(128), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(130), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(132), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(144), 1,
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(146), 1,
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(148), 1,
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(150), 1,
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(152), 1,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(158), 1,
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(160), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(220), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(243), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(286), 1,
sym_if,
2023-11-30 01:59:58 +00:00
STATE(316), 1,
2023-11-28 22:54:17 +00:00
sym_statement,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(306), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 01:59:58 +00:00
[3378] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +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_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(35), 1,
anon_sym_return,
ACTIONS(37), 1,
anon_sym_use,
STATE(73), 1,
sym_index,
STATE(80), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
STATE(231), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(235), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[3473] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
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_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
2023-11-30 01:59:58 +00:00
STATE(228), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(235), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 01:59:58 +00:00
[3568] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(7), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(21), 1,
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(23), 1,
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(29), 1,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(35), 1,
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(37), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(73), 1,
sym_index,
2023-11-30 01:59:58 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(114), 1,
sym_if,
2023-11-30 01:59:58 +00:00
STATE(233), 1,
sym_statement,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(235), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 01:59:58 +00:00
[3663] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(172), 1,
anon_sym_RPAREN,
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(192), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
STATE(104), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(146), 1,
aux_sym__expression_list,
STATE(182), 1,
sym_math_operator,
STATE(183), 1,
sym_logic_operator,
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
ACTIONS(188), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
STATE(105), 7,
sym__expression_kind,
sym_value,
2023-11-30 01:59:58 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[3754] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(202), 1,
anon_sym_COLON,
ACTIONS(204), 1,
anon_sym_DASH_GT,
STATE(212), 1,
sym_logic_operator,
STATE(213), 1,
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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(198), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(200), 14,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[3821] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(192), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(206), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(147), 1,
2023-11-30 00:23:42 +00:00
aux_sym__expression_list,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[3912] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(202), 1,
anon_sym_COLON,
STATE(212), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(213), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[3969] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(202), 1,
anon_sym_COLON,
ACTIONS(204), 1,
anon_sym_DASH_GT,
STATE(212), 1,
sym_logic_operator,
STATE(213), 1,
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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(212), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(214), 14,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[4036] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(182), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(192), 1,
anon_sym_PIPE,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(196), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(216), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(143), 1,
2023-11-30 00:23:42 +00:00
aux_sym__expression_list,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(188), 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 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[4127] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(222), 1,
anon_sym_DOT_DOT,
STATE(212), 1,
sym_logic_operator,
STATE(213), 1,
sym_math_operator,
ACTIONS(220), 18,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
sym_identifier,
sym_integer,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
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,
2023-11-30 01:59:58 +00:00
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(218), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
[4184] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(212), 1,
sym_logic_operator,
STATE(213), 1,
sym_math_operator,
ACTIONS(220), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(218), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4239] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(192), 1,
anon_sym_PIPE,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(224), 1,
anon_sym_RPAREN,
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(136), 1,
aux_sym__expression_list,
STATE(182), 1,
sym_math_operator,
STATE(183), 1,
sym_logic_operator,
ACTIONS(176), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
ACTIONS(188), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
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 01:59:58 +00:00
[4330] = 25,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(128), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(130), 1,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(132), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(144), 1,
2023-11-30 00:23:42 +00:00
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(146), 1,
2023-11-30 00:23:42 +00:00
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(148), 1,
2023-11-30 00:23:42 +00:00
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(150), 1,
2023-11-30 00:23:42 +00:00
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(152), 1,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(158), 1,
2023-11-30 00:23:42 +00:00
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(160), 1,
2023-11-30 00:23:42 +00:00
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(220), 1,
2023-11-30 00:23:42 +00:00
sym_index,
2023-11-30 01:59:58 +00:00
STATE(243), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(286), 1,
2023-11-30 00:23:42 +00:00
sym_if,
2023-11-30 01:59:58 +00:00
STATE(316), 1,
2023-11-30 00:23:42 +00:00
sym_statement,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 6,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(306), 9,
2023-11-30 00:23:42 +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 01:59:58 +00:00
[4425] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(182), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(192), 1,
anon_sym_PIPE,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(226), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(132), 1,
2023-11-30 00:23:42 +00:00
aux_sym__expression_list,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(188), 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 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[4516] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(128), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(130), 1,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(132), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(144), 1,
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(146), 1,
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(148), 1,
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(150), 1,
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(152), 1,
2023-11-30 00:23:42 +00:00
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(158), 1,
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(160), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(220), 1,
2023-11-30 00:23:42 +00:00
sym_index,
2023-11-30 01:59:58 +00:00
STATE(244), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(286), 1,
2023-11-30 00:23:42 +00:00
sym_if,
2023-11-30 01:59:58 +00:00
STATE(308), 1,
2023-11-30 00:23:42 +00:00
sym_statement,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 6,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(297), 9,
2023-11-30 00:23:42 +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 01:59:58 +00:00
[4611] = 23,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(192), 1,
anon_sym_PIPE,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(228), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(120), 1,
2023-11-30 00:23:42 +00:00
aux_sym__expression_list,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(188), 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 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[4702] = 25,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(128), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(130), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(132), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
ACTIONS(144), 1,
anon_sym_if,
2023-11-30 01:59:58 +00:00
ACTIONS(146), 1,
anon_sym_match,
2023-11-30 01:59:58 +00:00
ACTIONS(148), 1,
anon_sym_while,
2023-11-30 01:59:58 +00:00
ACTIONS(150), 1,
anon_sym_for,
2023-11-30 01:59:58 +00:00
ACTIONS(152), 1,
anon_sym_asyncfor,
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(158), 1,
anon_sym_return,
2023-11-30 01:59:58 +00:00
ACTIONS(160), 1,
anon_sym_use,
2023-11-30 01:59:58 +00:00
STATE(220), 1,
sym_index,
STATE(244), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(286), 1,
sym_if,
STATE(300), 1,
sym_statement,
ACTIONS(138), 2,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 6,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
STATE(297), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
2023-11-30 00:23:42 +00:00
[4797] = 22,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-28 22:54:17 +00:00
ACTIONS(182), 1,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-28 22:54:17 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-28 22:54:17 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(82), 1,
aux_sym_match_repeat1,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(260), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
STATE(124), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[4885] = 22,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(113), 1,
aux_sym_match_repeat1,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(259), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(188), 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 01:59:58 +00:00
STATE(124), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[4973] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(189), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(190), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(164), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-11-30 00:23:42 +00:00
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(162), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 00:23:42 +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 01:59:58 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5027] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(204), 1,
anon_sym_DASH_GT,
ACTIONS(238), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(190), 1,
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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(198), 11,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(200), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[5093] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(189), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(190), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 21,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_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_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5149] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(204), 1,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(189), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(190), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 00:23:42 +00:00
ACTIONS(212), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
ACTIONS(214), 14,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[5215] = 8,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(244), 1,
anon_sym_EQ,
ACTIONS(246), 1,
anon_sym_LT,
STATE(37), 1,
sym_assignment_operator,
STATE(295), 1,
sym_type_definition,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(240), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
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_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5275] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(252), 18,
2023-11-30 00:23:42 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
anon_sym_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS,
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 00:23:42 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(250), 23,
ts_builtin_sym_end,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5324] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(256), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(254), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5373] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(260), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(258), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5422] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5471] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(268), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(266), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5520] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(272), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(270), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5569] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(274), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5618] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(280), 18,
2023-11-30 00:23:42 +00:00
anon_sym_async,
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_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(278), 23,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5667] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(284), 18,
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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(282), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5716] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(288), 18,
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(286), 23,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5765] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(292), 18,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(290), 23,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5814] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(296), 18,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(294), 23,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5863] = 6,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(244), 1,
anon_sym_EQ,
STATE(38), 1,
sym_assignment_operator,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 17,
2023-11-30 00:23:42 +00:00
anon_sym_async,
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_PLUS,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(240), 20,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5918] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(300), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-11-30 00:23:42 +00:00
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(298), 23,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[5967] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(304), 18,
2023-11-30 00:23:42 +00:00
anon_sym_async,
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,
2023-11-30 01:59:58 +00:00
anon_sym_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(302), 23,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[6016] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(308), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(306), 23,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[6065] = 8,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(246), 1,
anon_sym_LT,
ACTIONS(310), 1,
anon_sym_EQ,
STATE(37), 1,
sym_assignment_operator,
STATE(295), 1,
sym_type_definition,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 16,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
ACTIONS(240), 19,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
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_asyncfor,
anon_sym_DASH_GT,
[6124] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(314), 18,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
anon_sym_return,
anon_sym_use,
ACTIONS(312), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[6173] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 01:59:58 +00:00
ACTIONS(204), 1,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(320), 1,
anon_sym_SEMI,
STATE(189), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(190), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(316), 8,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
ACTIONS(318), 13,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
2023-11-28 22:54:17 +00:00
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[6238] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 01:59:58 +00:00
ACTIONS(204), 1,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(189), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(190), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(316), 9,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(318), 13,
2023-11-28 22:54:17 +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_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 00:23:42 +00:00
[6301] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 01:59:58 +00:00
ACTIONS(204), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(189), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(190), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(190), 2,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(322), 9,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
ACTIONS(324), 13,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_PIPE,
anon_sym_table,
2023-11-28 22:54:17 +00:00
anon_sym_return,
anon_sym_use,
2023-11-30 00:23:42 +00:00
[6364] = 16,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(83), 1,
2023-11-28 22:54:17 +00:00
aux_sym_match_repeat1,
2023-11-30 01:59:58 +00:00
STATE(260), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(326), 4,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
ACTIONS(328), 7,
2023-11-28 22:54:17 +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 01:59:58 +00:00
STATE(124), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6434] = 16,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(334), 1,
sym_identifier,
ACTIONS(339), 1,
anon_sym_LBRACE,
ACTIONS(342), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(345), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(354), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(357), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(360), 1,
anon_sym_table,
STATE(83), 1,
2023-11-28 22:54:17 +00:00
aux_sym_match_repeat1,
2023-11-30 01:59:58 +00:00
STATE(260), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(348), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(351), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(332), 4,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
ACTIONS(337), 7,
2023-11-28 22:54:17 +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 01:59:58 +00:00
STATE(124), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[6504] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 9,
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,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(274), 23,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_RPAREN,
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,
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 01:59:58 +00:00
[6544] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(204), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(205), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(220), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(218), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
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 01:59:58 +00:00
[6588] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(363), 1,
anon_sym_DOT_DOT,
2023-11-30 00:23:42 +00:00
STATE(204), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(205), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(220), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(218), 20,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[6634] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(365), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(204), 1,
sym_logic_operator,
STATE(205), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(200), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(198), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_DOT_DOT,
2023-11-30 01:59:58 +00:00
[6690] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(365), 1,
anon_sym_COLON,
STATE(204), 1,
sym_logic_operator,
STATE(205), 1,
sym_math_operator,
ACTIONS(210), 9,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 20,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[6736] = 11,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(365), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(204), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(205), 1,
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(214), 6,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(212), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
anon_sym_DOT_DOT,
2023-11-30 01:59:58 +00:00
[6792] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 23,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
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 01:59:58 +00:00
[6832] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(204), 1,
sym_logic_operator,
STATE(205), 1,
sym_math_operator,
ACTIONS(164), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(162), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
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,
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 01:59:58 +00:00
[6876] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(196), 1,
anon_sym_DASH_GT,
STATE(182), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(214), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(212), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[6931] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(208), 19,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_DASH_GT,
[6976] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(182), 1,
sym_math_operator,
STATE(183), 1,
sym_logic_operator,
ACTIONS(164), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(162), 20,
anon_sym_LBRACE,
anon_sym_LPAREN,
2023-11-28 22:54:17 +00:00
anon_sym_RPAREN,
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_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,
[7019] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(182), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
STATE(182), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
STATE(183), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(200), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(198), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
[7074] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(314), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(312), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
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 01:59:58 +00:00
[7112] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(300), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(298), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7150] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 01:59:58 +00:00
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(371), 1,
anon_sym_COMMA,
STATE(182), 1,
sym_math_operator,
STATE(183), 1,
sym_logic_operator,
ACTIONS(190), 2,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(184), 4,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(367), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(369), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[7206] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(304), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(302), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7244] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(260), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(258), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7282] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(296), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(294), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7320] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(280), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(278), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7358] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(268), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(266), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7396] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_COLON,
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(377), 1,
anon_sym_COMMA,
STATE(182), 1,
sym_math_operator,
STATE(183), 1,
sym_logic_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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(373), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(375), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
[7452] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(252), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(250), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7490] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(308), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(306), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7528] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(256), 9,
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,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(254), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7566] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(284), 9,
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,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(282), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7604] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(272), 9,
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,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(270), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7642] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(292), 9,
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,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(290), 21,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7680] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(288), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(286), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7718] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(334), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(339), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(342), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
ACTIONS(345), 1,
sym_integer,
ACTIONS(354), 1,
anon_sym_LBRACK,
ACTIONS(357), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(360), 1,
anon_sym_table,
STATE(112), 1,
aux_sym_match_repeat1,
2023-11-30 01:59:58 +00:00
STATE(259), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(348), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(351), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(332), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[7778] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(236), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(112), 1,
2023-11-28 22:54:17 +00:00
aux_sym_match_repeat1,
2023-11-30 01:59:58 +00:00
STATE(259), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
ACTIONS(326), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[7838] = 7,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(383), 1,
2023-11-30 00:23:42 +00:00
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
ACTIONS(385), 1,
2023-11-30 00:23:42 +00:00
anon_sym_else,
2023-11-30 01:59:58 +00:00
STATE(236), 1,
2023-11-30 00:23:42 +00:00
sym_else,
2023-11-30 01:59:58 +00:00
STATE(115), 2,
2023-11-30 00:23:42 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 01:59:58 +00:00
ACTIONS(379), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(381), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[7881] = 7,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(383), 1,
2023-11-30 00:23:42 +00:00
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
ACTIONS(385), 1,
2023-11-30 00:23:42 +00:00
anon_sym_else,
2023-11-30 01:59:58 +00:00
STATE(225), 1,
2023-11-30 00:23:42 +00:00
sym_else,
2023-11-30 01:59:58 +00:00
STATE(133), 2,
2023-11-30 00:23:42 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 01:59:58 +00:00
ACTIONS(387), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(389), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[7924] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(391), 1,
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(252), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(250), 17,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7961] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(393), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(252), 9,
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-28 22:54:17 +00:00
anon_sym_PIPE,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(250), 17,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[7998] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(395), 1,
anon_sym_RPAREN,
ACTIONS(252), 9,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
2023-11-30 01:59:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
anon_sym_table,
ACTIONS(250), 17,
anon_sym_LBRACE,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8035] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(292), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(290), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[8069] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(397), 1,
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(138), 1,
aux_sym__expression_list,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8127] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(308), 7,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(306), 19,
anon_sym_LBRACE,
2023-11-28 22:54:17 +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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_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_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[8161] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(280), 7,
2023-11-30 00:23:42 +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 01:59:58 +00:00
ACTIONS(278), 19,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[8195] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(314), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(312), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[8229] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(252), 7,
anon_sym_async,
sym_identifier,
2023-11-30 01:59:58 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(250), 19,
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,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8263] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(260), 7,
anon_sym_async,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(258), 19,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8297] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(304), 7,
anon_sym_async,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 19,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8331] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(286), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8365] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(294), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8399] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(300), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(298), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8433] = 15,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(401), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
STATE(98), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(144), 1,
2023-11-28 22:54:17 +00:00
aux_sym_list_repeat1,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8491] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(282), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8525] = 15,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(403), 1,
anon_sym_RPAREN,
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(138), 1,
aux_sym__expression_list,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8583] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(409), 1,
anon_sym_elseif,
STATE(133), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(405), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(407), 13,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[8621] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(268), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(266), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8655] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(256), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(254), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8689] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(412), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(138), 1,
2023-11-30 00:23:42 +00:00
aux_sym__expression_list,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8747] = 15,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(414), 1,
anon_sym_RBRACK,
STATE(98), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(144), 1,
aux_sym_list_repeat1,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8805] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(416), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(419), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(422), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(425), 1,
anon_sym_RPAREN,
ACTIONS(427), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(436), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(439), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(442), 1,
anon_sym_table,
STATE(104), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(138), 1,
aux_sym__expression_list,
2023-11-30 01:59:58 +00:00
ACTIONS(430), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(433), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8863] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(445), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
STATE(98), 1,
2023-11-30 00:23:42 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(142), 1,
2023-11-30 00:23:42 +00:00
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-30 00:23:42 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-30 00:23:42 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8921] = 15,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
ACTIONS(447), 1,
anon_sym_RBRACK,
STATE(98), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(137), 1,
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[8979] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(272), 7,
2023-11-28 22:54:17 +00:00
anon_sym_async,
sym_identifier,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(270), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[9013] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(449), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACK,
2023-11-30 01:59:58 +00:00
STATE(98), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(144), 1,
aux_sym_list_repeat1,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[9071] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
ACTIONS(451), 1,
anon_sym_RPAREN,
STATE(104), 1,
sym_expression,
STATE(138), 1,
aux_sym__expression_list,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9129] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(456), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(459), 1,
anon_sym_LPAREN,
ACTIONS(462), 1,
sym_integer,
ACTIONS(471), 1,
anon_sym_LBRACK,
ACTIONS(474), 1,
anon_sym_RBRACK,
ACTIONS(476), 1,
anon_sym_PIPE,
ACTIONS(479), 1,
anon_sym_table,
STATE(98), 1,
sym_expression,
STATE(144), 1,
aux_sym_list_repeat1,
ACTIONS(465), 2,
sym_float,
sym_string,
ACTIONS(468), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9187] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(170), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(482), 1,
anon_sym_RBRACK,
STATE(98), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
2023-11-30 00:23:42 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9245] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
ACTIONS(484), 1,
anon_sym_RPAREN,
STATE(104), 1,
sym_expression,
STATE(138), 1,
aux_sym__expression_list,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9303] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(486), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RPAREN,
2023-11-30 01:59:58 +00:00
STATE(104), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
STATE(138), 1,
2023-11-28 22:54:17 +00:00
aux_sym__expression_list,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[9361] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 6,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_else,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 19,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[9394] = 5,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(163), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(165), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(220), 5,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(218), 18,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[9431] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(488), 1,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
2023-11-30 01:59:58 +00:00
STATE(163), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(165), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(220), 5,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(218), 17,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[9470] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(163), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(165), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(164), 5,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(162), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[9507] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(214), 1,
anon_sym_EQ,
2023-11-30 00:23:42 +00:00
ACTIONS(490), 1,
anon_sym_COLON,
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
STATE(163), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(165), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(212), 7,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
[9556] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(490), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(163), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(165), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 5,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[9595] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(200), 1,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
ACTIONS(490), 1,
anon_sym_COLON,
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
STATE(163), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(165), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(198), 7,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
[9644] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 6,
anon_sym_async,
sym_identifier,
2023-11-30 01:59:58 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_else,
ACTIONS(274), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-30 01:59:58 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9677] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
STATE(94), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[9729] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(257), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[9781] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 13,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[9813] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(134), 1,
anon_sym_LPAREN,
ACTIONS(136), 1,
sym_integer,
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(255), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[9865] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(54), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[9917] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(494), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(496), 13,
anon_sym_async,
sym_identifier,
2023-11-30 01:59:58 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[9949] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(13), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(498), 1,
sym_identifier,
ACTIONS(500), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(502), 1,
anon_sym_table,
STATE(47), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(15), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(17), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10001] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(232), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(504), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(154), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10053] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(506), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(85), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10105] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(232), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(504), 1,
anon_sym_table,
STATE(153), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10157] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(504), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(152), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10209] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
anon_sym_table,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
STATE(241), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10261] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
anon_sym_table,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(249), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10313] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
ACTIONS(508), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(245), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
2023-11-30 01:59:58 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10365] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(92), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10417] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(251), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10469] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(504), 1,
anon_sym_table,
STATE(149), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10521] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(180), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(164), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(162), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[10557] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(173), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10609] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(200), 1,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(510), 1,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(180), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(181), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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 01:59:58 +00:00
ACTIONS(198), 6,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
[10657] = 6,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(510), 1,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(180), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(181), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 5,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 16,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[10695] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(214), 1,
anon_sym_EQ,
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(510), 1,
anon_sym_COLON,
STATE(180), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(186), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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(212), 6,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[10743] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(274), 11,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 13,
2023-11-30 00:23:42 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[10775] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(506), 1,
anon_sym_table,
STATE(86), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10827] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(134), 1,
anon_sym_LPAREN,
ACTIONS(136), 1,
sym_integer,
ACTIONS(142), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_PIPE,
ACTIONS(156), 1,
anon_sym_table,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
STATE(175), 1,
sym_expression,
ACTIONS(138), 2,
sym_float,
sym_string,
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10879] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(134), 1,
anon_sym_LPAREN,
ACTIONS(136), 1,
sym_integer,
ACTIONS(142), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_PIPE,
ACTIONS(156), 1,
anon_sym_table,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
STATE(176), 1,
sym_expression,
ACTIONS(138), 2,
sym_float,
sym_string,
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10931] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(93), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[10983] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
STATE(95), 1,
sym_expression,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11035] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(244), 1,
anon_sym_EQ,
ACTIONS(246), 1,
anon_sym_LT,
STATE(51), 1,
sym_assignment_operator,
STATE(304), 1,
sym_type_definition,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 3,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(240), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
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 01:59:58 +00:00
anon_sym_DASH_GT,
[11077] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(504), 1,
anon_sym_table,
STATE(150), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11129] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(154), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(156), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(177), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11181] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
ACTIONS(498), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(81), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11233] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
anon_sym_table,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(252), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11285] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
ACTIONS(498), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
anon_sym_LBRACE,
STATE(57), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11337] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(498), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(58), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11389] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(52), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11441] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(512), 1,
sym_identifier,
STATE(48), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(118), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11493] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(50), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11545] = 13,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
ACTIONS(498), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(502), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(46), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11597] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(330), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(508), 1,
anon_sym_table,
STATE(238), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11649] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(232), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
ACTIONS(508), 1,
anon_sym_table,
STATE(239), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 01:59:58 +00:00
[11701] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(514), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(516), 13,
anon_sym_async,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[11733] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-28 22:54:17 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-28 22:54:17 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
anon_sym_table,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(247), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[11785] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(330), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(508), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(237), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[11837] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(246), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[11889] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(518), 1,
sym_identifier,
STATE(42), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(116), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[11941] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(498), 1,
sym_identifier,
ACTIONS(500), 1,
anon_sym_LBRACE,
STATE(56), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[11993] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-30 00:23:42 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-28 22:54:17 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(508), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(240), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12045] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(506), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(87), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12097] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(506), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(88), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12149] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(33), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(498), 1,
sym_identifier,
ACTIONS(500), 1,
anon_sym_LBRACE,
STATE(59), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12201] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(170), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(174), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(180), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(506), 1,
anon_sym_table,
STATE(89), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12253] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(40), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12305] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(520), 1,
sym_identifier,
STATE(45), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(117), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12357] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(236), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(256), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12409] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(253), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12461] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
ACTIONS(498), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(502), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(41), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12513] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
ACTIONS(498), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(502), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(43), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12565] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
ACTIONS(498), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(500), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(502), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
STATE(44), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(75), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12617] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(254), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12669] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(232), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(236), 1,
2023-11-30 00:23:42 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(248), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12721] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(166), 1,
sym_identifier,
ACTIONS(168), 1,
anon_sym_LBRACE,
ACTIONS(170), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(174), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(180), 1,
anon_sym_LBRACK,
2023-11-30 01:59:58 +00:00
ACTIONS(194), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
STATE(55), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(176), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(99), 5,
2023-11-28 22:54:17 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(105), 7,
2023-11-28 22:54:17 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12773] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(134), 1,
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
ACTIONS(136), 1,
sym_integer,
2023-11-30 01:59:58 +00:00
ACTIONS(142), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(230), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(236), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(250), 1,
sym_expression,
2023-11-30 01:59:58 +00:00
ACTIONS(138), 2,
sym_float,
sym_string,
2023-11-30 01:59:58 +00:00
ACTIONS(140), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 01:59:58 +00:00
STATE(126), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 01:59:58 +00:00
STATE(124), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[12825] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 5,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(274), 18,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[12856] = 6,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(244), 1,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
2023-11-30 01:59:58 +00:00
STATE(53), 1,
sym_assignment_operator,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 4,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(240), 15,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[12893] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 5,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 18,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
anon_sym_DOT_DOT,
2023-11-30 00:23:42 +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 01:59:58 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[12924] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[12954] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(320), 1,
anon_sym_SEMI,
ACTIONS(316), 9,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(318), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[12986] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(274), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13016] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(522), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(524), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13046] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(526), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(528), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13076] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(530), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(532), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13106] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(534), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(536), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13136] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(538), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(540), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13166] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(542), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(544), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13196] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(546), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(548), 12,
2023-11-30 00:23:42 +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_table,
anon_sym_return,
anon_sym_use,
[13226] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(550), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(552), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 00:23:42 +00:00
[13256] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(554), 10,
2023-11-30 00:23:42 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_asyncfor,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(556), 12,
2023-11-30 00:23:42 +00:00
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[13286] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(558), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(560), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 00:23:42 +00:00
[13316] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(316), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(318), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 00:23:42 +00:00
[13346] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(387), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
ACTIONS(389), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
2023-11-30 01:59:58 +00:00
[13376] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(562), 1,
anon_sym_DOT_DOT,
2023-11-30 01:59:58 +00:00
STATE(195), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(196), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(220), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(218), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[13411] = 10,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(564), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
STATE(195), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(196), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(198), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13454] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(564), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(195), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(196), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[13489] = 10,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(564), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(195), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(196), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(212), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13532] = 10,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(510), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(180), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(181), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(322), 4,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13575] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(195), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(196), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(164), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(162), 16,
anon_sym_async,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[13608] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(510), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(566), 1,
2023-11-30 01:59:58 +00:00
anon_sym_SEMI,
STATE(180), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(316), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(188), 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,
[13653] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(510), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(180), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(181), 1,
2023-11-30 00:23:42 +00:00
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(316), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(188), 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,
[13696] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(195), 1,
sym_logic_operator,
STATE(196), 1,
sym_math_operator,
ACTIONS(220), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(218), 16,
2023-11-30 00:23:42 +00:00
anon_sym_async,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_DOT_DOT,
2023-11-30 01:59:58 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 01:59:58 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[13729] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
2023-11-30 01:59:58 +00:00
ACTIONS(210), 3,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(208), 14,
2023-11-30 00:23:42 +00:00
anon_sym_async,
anon_sym_LBRACE,
2023-11-28 22:54:17 +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_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[13763] = 10,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(212), 3,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_EQ_GT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13805] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(570), 1,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(572), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
STATE(305), 1,
2023-11-30 00:23:42 +00:00
sym_block,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13851] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(574), 1,
anon_sym_async,
ACTIONS(576), 1,
anon_sym_LBRACE,
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
STATE(229), 1,
sym_block,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13897] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(568), 1,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(578), 1,
anon_sym_async,
ACTIONS(580), 1,
anon_sym_LBRACE,
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
STATE(294), 1,
sym_block,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 01:59:58 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13943] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(582), 1,
anon_sym_async,
ACTIONS(584), 1,
anon_sym_LBRACE,
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(197), 1,
sym_block,
STATE(200), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[13989] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(574), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(576), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
STATE(232), 1,
sym_block,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[14035] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(568), 1,
2023-11-30 01:59:58 +00:00
anon_sym_COLON,
ACTIONS(578), 1,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(580), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
STATE(293), 1,
2023-11-30 00:23:42 +00:00
sym_block,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[14081] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
ACTIONS(164), 3,
2023-11-30 00:23:42 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(162), 15,
2023-11-28 22:54:17 +00:00
anon_sym_async,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
[14113] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(582), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(584), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(161), 1,
sym_block,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[14159] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
ACTIONS(570), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(572), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
STATE(296), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 01:59:58 +00:00
[14205] = 10,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 01:59:58 +00:00
ACTIONS(198), 3,
anon_sym_async,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
anon_sym_EQ_GT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 00:23:42 +00:00
[14247] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(588), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(586), 12,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[14274] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(590), 1,
anon_sym_EQ_GT,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 00:23:42 +00:00
[14314] = 10,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(568), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(592), 1,
anon_sym_EQ_GT,
2023-11-30 01:59:58 +00:00
STATE(157), 1,
sym_logic_operator,
2023-11-30 01:59:58 +00:00
STATE(200), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-28 22:54:17 +00:00
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-30 00:23:42 +00:00
ACTIONS(188), 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 00:23:42 +00:00
[14354] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(560), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(558), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[14376] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(276), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(274), 9,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[14398] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(264), 5,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(262), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14420] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(599), 1,
anon_sym_fn,
ACTIONS(602), 1,
anon_sym_list,
STATE(264), 1,
aux_sym_type_repeat1,
STATE(277), 1,
sym_type,
ACTIONS(594), 3,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_DASH_GT,
ACTIONS(596), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14449] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 1,
anon_sym_fn,
ACTIONS(611), 1,
anon_sym_DASH_GT,
ACTIONS(613), 1,
anon_sym_list,
STATE(264), 1,
aux_sym_type_repeat1,
STATE(277), 1,
sym_type,
ACTIONS(605), 2,
anon_sym_COMMA,
anon_sym_GT,
ACTIONS(607), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14480] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 1,
anon_sym_fn,
ACTIONS(613), 1,
anon_sym_list,
ACTIONS(617), 1,
anon_sym_DASH_GT,
STATE(265), 1,
aux_sym_type_repeat1,
STATE(277), 1,
sym_type,
ACTIONS(615), 2,
anon_sym_COMMA,
anon_sym_GT,
ACTIONS(607), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14511] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(609), 1,
anon_sym_fn,
ACTIONS(613), 1,
anon_sym_list,
ACTIONS(615), 1,
anon_sym_GT,
ACTIONS(619), 1,
anon_sym_DASH_GT,
STATE(270), 1,
aux_sym_type_repeat1,
STATE(276), 1,
sym_type,
ACTIONS(607), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14541] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(621), 5,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(425), 7,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14561] = 3,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(623), 5,
2023-11-30 00:23:42 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(474), 7,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14581] = 8,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(605), 1,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(609), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(613), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
ACTIONS(625), 1,
anon_sym_DASH_GT,
STATE(271), 1,
2023-11-30 00:23:42 +00:00
aux_sym_type_repeat1,
2023-11-30 01:59:58 +00:00
STATE(276), 1,
sym_type,
ACTIONS(607), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14611] = 7,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(599), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(602), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
STATE(271), 1,
aux_sym_type_repeat1,
STATE(276), 1,
sym_type,
ACTIONS(594), 2,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
anon_sym_DASH_GT,
2023-11-30 01:59:58 +00:00
ACTIONS(596), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14639] = 2,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(627), 11,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
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,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14656] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(615), 11,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
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,
2023-11-30 01:59:58 +00:00
anon_sym_list,
2023-11-30 00:23:42 +00:00
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14673] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(629), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(631), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14692] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(633), 11,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_list,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14709] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(635), 1,
anon_sym_COMMA,
ACTIONS(637), 10,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_list,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14728] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(639), 1,
anon_sym_COMMA,
ACTIONS(637), 10,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_list,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14747] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(642), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(644), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14766] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(646), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(648), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14785] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(605), 11,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_list,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14802] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(650), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 01:59:58 +00:00
ACTIONS(652), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[14821] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(594), 11,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_list,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14838] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(654), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(656), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
STATE(280), 1,
sym_type,
ACTIONS(607), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14859] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(654), 1,
anon_sym_fn,
ACTIONS(656), 1,
anon_sym_list,
STATE(275), 1,
sym_type,
ACTIONS(607), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14880] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(654), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(656), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
STATE(272), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 01:59:58 +00:00
ACTIONS(607), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14901] = 7,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(381), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(658), 1,
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
ACTIONS(660), 1,
anon_sym_else,
2023-11-30 01:59:58 +00:00
STATE(302), 1,
sym_else,
2023-11-30 01:59:58 +00:00
STATE(291), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 01:59:58 +00:00
ACTIONS(379), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
[14926] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(654), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(656), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
STATE(365), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 01:59:58 +00:00
ACTIONS(607), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14947] = 5,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(609), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(613), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
STATE(280), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 01:59:58 +00:00
ACTIONS(607), 6,
2023-11-30 00:23:42 +00:00
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
2023-11-30 01:59:58 +00:00
[14968] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(609), 1,
anon_sym_fn,
ACTIONS(613), 1,
anon_sym_list,
STATE(275), 1,
sym_type,
ACTIONS(607), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14989] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(609), 1,
2023-11-30 00:23:42 +00:00
anon_sym_fn,
2023-11-30 01:59:58 +00:00
ACTIONS(613), 1,
2023-11-30 00:23:42 +00:00
anon_sym_list,
2023-11-30 01:59:58 +00:00
STATE(272), 1,
2023-11-30 00:23:42 +00:00
sym_type,
2023-11-30 01:59:58 +00:00
ACTIONS(607), 6,
2023-11-28 22:54:17 +00:00
anon_sym_any,
anon_sym_bool,
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 01:59:58 +00:00
[15010] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(389), 1,
sym_identifier,
ACTIONS(658), 1,
anon_sym_elseif,
ACTIONS(660), 1,
anon_sym_else,
STATE(307), 1,
sym_else,
STATE(292), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(387), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[15035] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(662), 1,
2023-11-28 22:54:17 +00:00
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
ACTIONS(407), 2,
2023-11-28 22:54:17 +00:00
sym_identifier,
anon_sym_else,
2023-11-30 01:59:58 +00:00
STATE(292), 2,
2023-11-28 22:54:17 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 01:59:58 +00:00
ACTIONS(405), 3,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
[15055] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(516), 2,
sym_identifier,
anon_sym_else,
2023-11-30 01:59:58 +00:00
ACTIONS(514), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
[15069] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(496), 2,
sym_identifier,
anon_sym_else,
2023-11-30 01:59:58 +00:00
ACTIONS(494), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-30 01:59:58 +00:00
[15083] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(39), 1,
sym_assignment_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(248), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
[15095] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(550), 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,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15105] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(316), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15115] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(542), 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,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15125] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(554), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15135] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(534), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15145] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(526), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15155] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(387), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15165] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(530), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15175] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
STATE(34), 1,
sym_assignment_operator,
ACTIONS(248), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15187] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(538), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15197] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(566), 1,
anon_sym_SEMI,
ACTIONS(316), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
[15209] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(522), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15219] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(546), 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 01:59:58 +00:00
[15229] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(665), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(667), 1,
anon_sym_RBRACE,
STATE(331), 1,
aux_sym_map_repeat1,
[15242] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(669), 1,
anon_sym_async,
ACTIONS(671), 1,
anon_sym_LBRACE,
STATE(134), 1,
sym_block,
[15255] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(675), 1,
anon_sym_PIPE,
STATE(334), 1,
aux_sym_identifier_list_repeat1,
[15268] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(570), 1,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(572), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(101), 1,
2023-11-30 00:23:42 +00:00
sym_block,
2023-11-30 01:59:58 +00:00
[15281] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(677), 3,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 01:59:58 +00:00
[15290] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(574), 1,
anon_sym_async,
ACTIONS(576), 1,
anon_sym_LBRACE,
STATE(234), 1,
sym_block,
[15303] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(673), 1,
sym_identifier,
ACTIONS(679), 1,
anon_sym_PIPE,
STATE(311), 1,
aux_sym_identifier_list_repeat1,
[15316] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(683), 1,
2023-11-30 00:23:42 +00:00
anon_sym_COMMA,
2023-11-30 01:59:58 +00:00
ACTIONS(681), 2,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACE,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15327] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(687), 1,
anon_sym_COMMA,
ACTIONS(685), 2,
sym_identifier,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[15338] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(570), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(572), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(301), 1,
sym_block,
2023-11-30 01:59:58 +00:00
[15351] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(689), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(691), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(72), 1,
sym_block,
[15364] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(570), 1,
anon_sym_async,
ACTIONS(572), 1,
anon_sym_LBRACE,
STATE(103), 1,
sym_block,
2023-11-30 01:59:58 +00:00
[15377] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(41), 1,
anon_sym_RBRACE,
2023-11-30 01:59:58 +00:00
ACTIONS(665), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
STATE(329), 1,
2023-11-30 00:23:42 +00:00
aux_sym_map_repeat1,
2023-11-30 01:59:58 +00:00
[15390] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(693), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(334), 1,
2023-11-28 22:54:17 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15403] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(673), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(695), 1,
anon_sym_PIPE,
STATE(325), 1,
aux_sym_identifier_list_repeat1,
[15416] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(697), 1,
anon_sym_PIPE,
STATE(326), 1,
aux_sym_identifier_list_repeat1,
[15429] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(699), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(334), 1,
2023-11-30 00:23:42 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15442] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(701), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(334), 1,
2023-11-30 00:23:42 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15455] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(578), 1,
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(580), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(134), 1,
sym_block,
2023-11-30 01:59:58 +00:00
[15468] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(665), 1,
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(703), 1,
anon_sym_RBRACE,
STATE(336), 1,
aux_sym_map_repeat1,
[15481] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(665), 1,
sym_identifier,
ACTIONS(705), 1,
anon_sym_RBRACE,
STATE(331), 1,
aux_sym_map_repeat1,
[15494] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(707), 1,
2023-11-30 00:23:42 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(709), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(261), 1,
2023-11-30 00:23:42 +00:00
sym_block,
2023-11-30 01:59:58 +00:00
[15507] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(711), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(714), 1,
anon_sym_RBRACE,
STATE(331), 1,
aux_sym_map_repeat1,
[15520] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(716), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(322), 1,
2023-11-30 00:23:42 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15533] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(689), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(691), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(65), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 01:59:58 +00:00
[15546] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(718), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(721), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(334), 1,
2023-11-30 00:23:42 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15559] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(43), 1,
anon_sym_RBRACE,
ACTIONS(665), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
STATE(309), 1,
aux_sym_map_repeat1,
[15572] = 4,
2023-11-30 00:23:42 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(665), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(723), 1,
anon_sym_RBRACE,
STATE(331), 1,
aux_sym_map_repeat1,
[15585] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(574), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(576), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(226), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 01:59:58 +00:00
[15598] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(578), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 01:59:58 +00:00
ACTIONS(580), 1,
anon_sym_LBRACE,
STATE(128), 1,
sym_block,
[15611] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(669), 1,
anon_sym_async,
ACTIONS(671), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
STATE(128), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 01:59:58 +00:00
[15624] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(725), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(334), 1,
2023-11-30 00:23:42 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15637] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(673), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
2023-11-30 01:59:58 +00:00
ACTIONS(727), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(340), 1,
2023-11-30 00:23:42 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 01:59:58 +00:00
[15650] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(186), 1,
sym_identifier_list,
2023-11-30 01:59:58 +00:00
[15660] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(198), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 01:59:58 +00:00
[15670] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(731), 2,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
sym_identifier,
2023-11-30 01:59:58 +00:00
[15678] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(166), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 01:59:58 +00:00
[15688] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(207), 1,
sym_identifier_list,
[15698] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(203), 1,
2023-11-30 00:23:42 +00:00
sym_identifier_list,
2023-11-30 01:59:58 +00:00
[15708] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
2023-11-30 00:23:42 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(170), 1,
2023-11-30 00:23:42 +00:00
sym_identifier_list,
2023-11-30 01:59:58 +00:00
[15718] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
STATE(206), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 01:59:58 +00:00
[15728] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(721), 2,
sym_identifier,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 01:59:58 +00:00
[15736] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(729), 1,
anon_sym_PIPE,
STATE(214), 1,
sym_identifier_list,
[15746] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(733), 1,
sym_identifier,
[15753] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(735), 1,
sym_string,
[15760] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(737), 1,
anon_sym_in,
[15767] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(739), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
[15774] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(741), 1,
2023-11-30 00:23:42 +00:00
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
[15781] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(743), 1,
anon_sym_LPAREN,
[15788] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(745), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 01:59:58 +00:00
[15795] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(747), 1,
2023-11-30 00:23:42 +00:00
anon_sym_EQ,
2023-11-30 01:59:58 +00:00
[15802] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(749), 1,
sym_string,
[15809] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(751), 1,
sym_identifier,
[15816] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(753), 1,
ts_builtin_sym_end,
[15823] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(755), 1,
anon_sym_LBRACE,
2023-11-30 01:59:58 +00:00
[15830] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(757), 1,
anon_sym_LPAREN,
[15837] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(759), 1,
anon_sym_GT,
[15844] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(761), 1,
anon_sym_LBRACE,
[15851] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(763), 1,
anon_sym_LBRACE,
[15858] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(765), 1,
anon_sym_LBRACE,
[15865] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(767), 1,
anon_sym_LBRACE,
[15872] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 01:59:58 +00:00
ACTIONS(769), 1,
anon_sym_in,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(3)] = 102,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(4)] = 204,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(5)] = 304,
[SMALL_STATE(6)] = 403,
[SMALL_STATE(7)] = 502,
[SMALL_STATE(8)] = 601,
[SMALL_STATE(9)] = 700,
[SMALL_STATE(10)] = 799,
[SMALL_STATE(11)] = 898,
[SMALL_STATE(12)] = 997,
[SMALL_STATE(13)] = 1096,
[SMALL_STATE(14)] = 1195,
[SMALL_STATE(15)] = 1294,
[SMALL_STATE(16)] = 1393,
[SMALL_STATE(17)] = 1492,
[SMALL_STATE(18)] = 1591,
[SMALL_STATE(19)] = 1690,
[SMALL_STATE(20)] = 1789,
[SMALL_STATE(21)] = 1885,
[SMALL_STATE(22)] = 1981,
[SMALL_STATE(23)] = 2077,
[SMALL_STATE(24)] = 2173,
[SMALL_STATE(25)] = 2269,
[SMALL_STATE(26)] = 2365,
[SMALL_STATE(27)] = 2461,
[SMALL_STATE(28)] = 2557,
[SMALL_STATE(29)] = 2653,
[SMALL_STATE(30)] = 2749,
[SMALL_STATE(31)] = 2845,
[SMALL_STATE(32)] = 2941,
[SMALL_STATE(33)] = 3037,
[SMALL_STATE(34)] = 3133,
[SMALL_STATE(35)] = 3228,
[SMALL_STATE(36)] = 3283,
[SMALL_STATE(37)] = 3378,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(38)] = 3473,
[SMALL_STATE(39)] = 3568,
[SMALL_STATE(40)] = 3663,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(41)] = 3754,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(42)] = 3821,
[SMALL_STATE(43)] = 3912,
[SMALL_STATE(44)] = 3969,
[SMALL_STATE(45)] = 4036,
[SMALL_STATE(46)] = 4127,
[SMALL_STATE(47)] = 4184,
[SMALL_STATE(48)] = 4239,
[SMALL_STATE(49)] = 4330,
[SMALL_STATE(50)] = 4425,
[SMALL_STATE(51)] = 4516,
[SMALL_STATE(52)] = 4611,
[SMALL_STATE(53)] = 4702,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(54)] = 4797,
[SMALL_STATE(55)] = 4885,
[SMALL_STATE(56)] = 4973,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(57)] = 5027,
[SMALL_STATE(58)] = 5093,
[SMALL_STATE(59)] = 5149,
[SMALL_STATE(60)] = 5215,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(61)] = 5275,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(62)] = 5324,
[SMALL_STATE(63)] = 5373,
[SMALL_STATE(64)] = 5422,
[SMALL_STATE(65)] = 5471,
[SMALL_STATE(66)] = 5520,
[SMALL_STATE(67)] = 5569,
[SMALL_STATE(68)] = 5618,
[SMALL_STATE(69)] = 5667,
[SMALL_STATE(70)] = 5716,
[SMALL_STATE(71)] = 5765,
[SMALL_STATE(72)] = 5814,
[SMALL_STATE(73)] = 5863,
[SMALL_STATE(74)] = 5918,
[SMALL_STATE(75)] = 5967,
[SMALL_STATE(76)] = 6016,
[SMALL_STATE(77)] = 6065,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(78)] = 6124,
[SMALL_STATE(79)] = 6173,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(80)] = 6238,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(81)] = 6301,
[SMALL_STATE(82)] = 6364,
[SMALL_STATE(83)] = 6434,
[SMALL_STATE(84)] = 6504,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(85)] = 6544,
[SMALL_STATE(86)] = 6588,
[SMALL_STATE(87)] = 6634,
[SMALL_STATE(88)] = 6690,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(89)] = 6736,
[SMALL_STATE(90)] = 6792,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(91)] = 6832,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(92)] = 6876,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(93)] = 6931,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(94)] = 6976,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(95)] = 7019,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(96)] = 7074,
[SMALL_STATE(97)] = 7112,
[SMALL_STATE(98)] = 7150,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(99)] = 7206,
[SMALL_STATE(100)] = 7244,
[SMALL_STATE(101)] = 7282,
[SMALL_STATE(102)] = 7320,
[SMALL_STATE(103)] = 7358,
[SMALL_STATE(104)] = 7396,
[SMALL_STATE(105)] = 7452,
[SMALL_STATE(106)] = 7490,
[SMALL_STATE(107)] = 7528,
[SMALL_STATE(108)] = 7566,
[SMALL_STATE(109)] = 7604,
[SMALL_STATE(110)] = 7642,
[SMALL_STATE(111)] = 7680,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(112)] = 7718,
[SMALL_STATE(113)] = 7778,
[SMALL_STATE(114)] = 7838,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(115)] = 7881,
[SMALL_STATE(116)] = 7924,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(117)] = 7961,
[SMALL_STATE(118)] = 7998,
[SMALL_STATE(119)] = 8035,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(120)] = 8069,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(121)] = 8127,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(122)] = 8161,
[SMALL_STATE(123)] = 8195,
[SMALL_STATE(124)] = 8229,
[SMALL_STATE(125)] = 8263,
[SMALL_STATE(126)] = 8297,
[SMALL_STATE(127)] = 8331,
[SMALL_STATE(128)] = 8365,
[SMALL_STATE(129)] = 8399,
[SMALL_STATE(130)] = 8433,
[SMALL_STATE(131)] = 8491,
[SMALL_STATE(132)] = 8525,
[SMALL_STATE(133)] = 8583,
[SMALL_STATE(134)] = 8621,
[SMALL_STATE(135)] = 8655,
[SMALL_STATE(136)] = 8689,
[SMALL_STATE(137)] = 8747,
[SMALL_STATE(138)] = 8805,
[SMALL_STATE(139)] = 8863,
[SMALL_STATE(140)] = 8921,
[SMALL_STATE(141)] = 8979,
[SMALL_STATE(142)] = 9013,
[SMALL_STATE(143)] = 9071,
[SMALL_STATE(144)] = 9129,
[SMALL_STATE(145)] = 9187,
[SMALL_STATE(146)] = 9245,
[SMALL_STATE(147)] = 9303,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(148)] = 9361,
[SMALL_STATE(149)] = 9394,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(150)] = 9431,
[SMALL_STATE(151)] = 9470,
[SMALL_STATE(152)] = 9507,
[SMALL_STATE(153)] = 9556,
[SMALL_STATE(154)] = 9595,
[SMALL_STATE(155)] = 9644,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(156)] = 9677,
[SMALL_STATE(157)] = 9729,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(158)] = 9781,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(159)] = 9813,
[SMALL_STATE(160)] = 9865,
[SMALL_STATE(161)] = 9917,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(162)] = 9949,
[SMALL_STATE(163)] = 10001,
[SMALL_STATE(164)] = 10053,
[SMALL_STATE(165)] = 10105,
[SMALL_STATE(166)] = 10157,
[SMALL_STATE(167)] = 10209,
[SMALL_STATE(168)] = 10261,
[SMALL_STATE(169)] = 10313,
[SMALL_STATE(170)] = 10365,
[SMALL_STATE(171)] = 10417,
[SMALL_STATE(172)] = 10469,
[SMALL_STATE(173)] = 10521,
[SMALL_STATE(174)] = 10557,
[SMALL_STATE(175)] = 10609,
[SMALL_STATE(176)] = 10657,
[SMALL_STATE(177)] = 10695,
[SMALL_STATE(178)] = 10743,
[SMALL_STATE(179)] = 10775,
[SMALL_STATE(180)] = 10827,
[SMALL_STATE(181)] = 10879,
[SMALL_STATE(182)] = 10931,
[SMALL_STATE(183)] = 10983,
[SMALL_STATE(184)] = 11035,
[SMALL_STATE(185)] = 11077,
[SMALL_STATE(186)] = 11129,
[SMALL_STATE(187)] = 11181,
[SMALL_STATE(188)] = 11233,
[SMALL_STATE(189)] = 11285,
[SMALL_STATE(190)] = 11337,
[SMALL_STATE(191)] = 11389,
[SMALL_STATE(192)] = 11441,
[SMALL_STATE(193)] = 11493,
[SMALL_STATE(194)] = 11545,
[SMALL_STATE(195)] = 11597,
[SMALL_STATE(196)] = 11649,
[SMALL_STATE(197)] = 11701,
[SMALL_STATE(198)] = 11733,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(199)] = 11785,
[SMALL_STATE(200)] = 11837,
[SMALL_STATE(201)] = 11889,
[SMALL_STATE(202)] = 11941,
[SMALL_STATE(203)] = 11993,
[SMALL_STATE(204)] = 12045,
[SMALL_STATE(205)] = 12097,
[SMALL_STATE(206)] = 12149,
[SMALL_STATE(207)] = 12201,
[SMALL_STATE(208)] = 12253,
[SMALL_STATE(209)] = 12305,
[SMALL_STATE(210)] = 12357,
[SMALL_STATE(211)] = 12409,
[SMALL_STATE(212)] = 12461,
[SMALL_STATE(213)] = 12513,
[SMALL_STATE(214)] = 12565,
[SMALL_STATE(215)] = 12617,
[SMALL_STATE(216)] = 12669,
[SMALL_STATE(217)] = 12721,
[SMALL_STATE(218)] = 12773,
[SMALL_STATE(219)] = 12825,
[SMALL_STATE(220)] = 12856,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(221)] = 12893,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(222)] = 12924,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(223)] = 12954,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(224)] = 12986,
[SMALL_STATE(225)] = 13016,
[SMALL_STATE(226)] = 13046,
[SMALL_STATE(227)] = 13076,
[SMALL_STATE(228)] = 13106,
[SMALL_STATE(229)] = 13136,
[SMALL_STATE(230)] = 13166,
[SMALL_STATE(231)] = 13196,
[SMALL_STATE(232)] = 13226,
[SMALL_STATE(233)] = 13256,
[SMALL_STATE(234)] = 13286,
[SMALL_STATE(235)] = 13316,
[SMALL_STATE(236)] = 13346,
[SMALL_STATE(237)] = 13376,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(238)] = 13411,
[SMALL_STATE(239)] = 13454,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(240)] = 13489,
[SMALL_STATE(241)] = 13532,
[SMALL_STATE(242)] = 13575,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(243)] = 13608,
[SMALL_STATE(244)] = 13653,
[SMALL_STATE(245)] = 13696,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(246)] = 13729,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(247)] = 13763,
[SMALL_STATE(248)] = 13805,
[SMALL_STATE(249)] = 13851,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(250)] = 13897,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(251)] = 13943,
[SMALL_STATE(252)] = 13989,
[SMALL_STATE(253)] = 14035,
[SMALL_STATE(254)] = 14081,
[SMALL_STATE(255)] = 14113,
[SMALL_STATE(256)] = 14159,
[SMALL_STATE(257)] = 14205,
2023-11-30 00:23:42 +00:00
[SMALL_STATE(258)] = 14247,
[SMALL_STATE(259)] = 14274,
[SMALL_STATE(260)] = 14314,
[SMALL_STATE(261)] = 14354,
[SMALL_STATE(262)] = 14376,
[SMALL_STATE(263)] = 14398,
[SMALL_STATE(264)] = 14420,
2023-11-30 01:59:58 +00:00
[SMALL_STATE(265)] = 14449,
[SMALL_STATE(266)] = 14480,
[SMALL_STATE(267)] = 14511,
[SMALL_STATE(268)] = 14541,
[SMALL_STATE(269)] = 14561,
[SMALL_STATE(270)] = 14581,
[SMALL_STATE(271)] = 14611,
[SMALL_STATE(272)] = 14639,
[SMALL_STATE(273)] = 14656,
[SMALL_STATE(274)] = 14673,
[SMALL_STATE(275)] = 14692,
[SMALL_STATE(276)] = 14709,
[SMALL_STATE(277)] = 14728,
[SMALL_STATE(278)] = 14747,
[SMALL_STATE(279)] = 14766,
[SMALL_STATE(280)] = 14785,
[SMALL_STATE(281)] = 14802,
[SMALL_STATE(282)] = 14821,
[SMALL_STATE(283)] = 14838,
[SMALL_STATE(284)] = 14859,
[SMALL_STATE(285)] = 14880,
[SMALL_STATE(286)] = 14901,
[SMALL_STATE(287)] = 14926,
[SMALL_STATE(288)] = 14947,
[SMALL_STATE(289)] = 14968,
[SMALL_STATE(290)] = 14989,
[SMALL_STATE(291)] = 15010,
[SMALL_STATE(292)] = 15035,
[SMALL_STATE(293)] = 15055,
[SMALL_STATE(294)] = 15069,
[SMALL_STATE(295)] = 15083,
[SMALL_STATE(296)] = 15095,
[SMALL_STATE(297)] = 15105,
[SMALL_STATE(298)] = 15115,
[SMALL_STATE(299)] = 15125,
[SMALL_STATE(300)] = 15135,
[SMALL_STATE(301)] = 15145,
[SMALL_STATE(302)] = 15155,
[SMALL_STATE(303)] = 15165,
[SMALL_STATE(304)] = 15175,
[SMALL_STATE(305)] = 15187,
[SMALL_STATE(306)] = 15197,
[SMALL_STATE(307)] = 15209,
[SMALL_STATE(308)] = 15219,
[SMALL_STATE(309)] = 15229,
[SMALL_STATE(310)] = 15242,
[SMALL_STATE(311)] = 15255,
[SMALL_STATE(312)] = 15268,
[SMALL_STATE(313)] = 15281,
[SMALL_STATE(314)] = 15290,
[SMALL_STATE(315)] = 15303,
[SMALL_STATE(316)] = 15316,
[SMALL_STATE(317)] = 15327,
[SMALL_STATE(318)] = 15338,
[SMALL_STATE(319)] = 15351,
[SMALL_STATE(320)] = 15364,
[SMALL_STATE(321)] = 15377,
[SMALL_STATE(322)] = 15390,
[SMALL_STATE(323)] = 15403,
[SMALL_STATE(324)] = 15416,
[SMALL_STATE(325)] = 15429,
[SMALL_STATE(326)] = 15442,
[SMALL_STATE(327)] = 15455,
[SMALL_STATE(328)] = 15468,
[SMALL_STATE(329)] = 15481,
[SMALL_STATE(330)] = 15494,
[SMALL_STATE(331)] = 15507,
[SMALL_STATE(332)] = 15520,
[SMALL_STATE(333)] = 15533,
[SMALL_STATE(334)] = 15546,
[SMALL_STATE(335)] = 15559,
[SMALL_STATE(336)] = 15572,
[SMALL_STATE(337)] = 15585,
[SMALL_STATE(338)] = 15598,
[SMALL_STATE(339)] = 15611,
[SMALL_STATE(340)] = 15624,
[SMALL_STATE(341)] = 15637,
[SMALL_STATE(342)] = 15650,
[SMALL_STATE(343)] = 15660,
[SMALL_STATE(344)] = 15670,
[SMALL_STATE(345)] = 15678,
[SMALL_STATE(346)] = 15688,
[SMALL_STATE(347)] = 15698,
[SMALL_STATE(348)] = 15708,
[SMALL_STATE(349)] = 15718,
[SMALL_STATE(350)] = 15728,
[SMALL_STATE(351)] = 15736,
[SMALL_STATE(352)] = 15746,
[SMALL_STATE(353)] = 15753,
[SMALL_STATE(354)] = 15760,
[SMALL_STATE(355)] = 15767,
[SMALL_STATE(356)] = 15774,
[SMALL_STATE(357)] = 15781,
[SMALL_STATE(358)] = 15788,
[SMALL_STATE(359)] = 15795,
[SMALL_STATE(360)] = 15802,
[SMALL_STATE(361)] = 15809,
[SMALL_STATE(362)] = 15816,
[SMALL_STATE(363)] = 15823,
[SMALL_STATE(364)] = 15830,
[SMALL_STATE(365)] = 15837,
[SMALL_STATE(366)] = 15844,
[SMALL_STATE(367)] = 15851,
[SMALL_STATE(368)] = 15858,
[SMALL_STATE(369)] = 15865,
[SMALL_STATE(370)] = 15872,
};
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 01:59:58 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363),
2023-11-28 22:54:17 +00:00
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
2023-11-30 01:59:58 +00:00
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(60),
[50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(363),
[53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(201),
[59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(75),
[62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(75),
[65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(63),
[68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(145),
[71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(159),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(160),
[77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(352),
[83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(352),
[86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(332),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(349),
[92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(187),
[95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(360),
[98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184),
[130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369),
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126),
[138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218),
[146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217),
[148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
[150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
[156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342),
[158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167),
[160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353),
[162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
[188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
[192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315),
[194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
[198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
[206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3),
[214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3),
[216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
[234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
[236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343),
[238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
2023-11-30 00:23:42 +00:00
[240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
2023-11-30 01:59:58 +00:00
[246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287),
2023-11-30 00:23:42 +00:00
[248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
2023-11-30 01:59:58 +00:00
[250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3),
[296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3),
[298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36),
[312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
2023-11-30 00:23:42 +00:00
[326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
2023-11-30 01:59:58 +00:00
[330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
2023-11-30 00:23:42 +00:00
[332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
2023-11-30 01:59:58 +00:00
[334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(124),
2023-11-30 00:23:42 +00:00
[337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
2023-11-30 01:59:58 +00:00
[339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(335),
[342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(192),
[345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(126),
[348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(126),
[351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(125),
[354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(140),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(323),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(343),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
2023-11-30 00:23:42 +00:00
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
2023-11-30 01:59:58 +00:00
[371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
2023-11-30 00:23:42 +00:00
[373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
2023-11-30 01:59:58 +00:00
[377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337),
[387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(171),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(105),
[419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(328),
[422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(209),
[425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(99),
[430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(99),
[433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(100),
[436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(139),
[439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(315),
[442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(348),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(105),
[456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(328),
[459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(209),
[462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(99),
[465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(99),
[468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(100),
[471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(139),
[474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(315),
[479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(348),
[482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351),
[504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345),
[506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346),
[508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118),
[514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116),
[520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1),
[548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1),
[550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
2023-11-30 00:23:42 +00:00
[554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 2),
[556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 2),
2023-11-30 01:59:58 +00:00
[558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
2023-11-30 00:23:42 +00:00
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
2023-11-30 01:59:58 +00:00
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(273),
[599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(266),
[602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(288),
[605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3),
[631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3),
[633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), SHIFT_REPEAT(282),
[642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2),
[652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
[662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(211),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
[709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(359),
[714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(317),
[721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
[735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[753] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
};
#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,
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.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