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

15560 lines
348 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 00:23:42 +00:00
#define STATE_COUNT 362
#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,
[3] = 3,
2023-11-28 22:54:17 +00:00
[4] = 2,
[5] = 5,
2023-11-30 00:23:42 +00:00
[6] = 6,
[7] = 5,
[8] = 6,
[9] = 5,
[10] = 6,
[11] = 5,
[12] = 6,
[13] = 6,
2023-11-28 22:54:17 +00:00
[14] = 5,
2023-11-30 00:23:42 +00:00
[15] = 5,
[16] = 6,
[17] = 17,
2023-11-28 22:54:17 +00:00
[18] = 5,
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,
[22] = 22,
[23] = 20,
2023-11-28 22:54:17 +00:00
[24] = 20,
2023-11-30 00:23:42 +00:00
[25] = 22,
[26] = 20,
[27] = 22,
[28] = 20,
[29] = 22,
2023-11-28 22:54:17 +00:00
[30] = 20,
2023-11-30 00:23:42 +00:00
[31] = 22,
[32] = 22,
[33] = 22,
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 00:23:42 +00:00
[39] = 38,
[40] = 34,
[41] = 41,
[42] = 35,
[43] = 37,
[44] = 44,
2023-11-28 22:54:17 +00:00
[45] = 44,
2023-11-30 00:23:42 +00:00
[46] = 41,
2023-11-28 22:54:17 +00:00
[47] = 47,
2023-11-30 00:23:42 +00:00
[48] = 48,
[49] = 41,
[50] = 50,
[51] = 51,
[52] = 52,
[53] = 37,
[54] = 54,
2023-11-30 00:23:42 +00:00
[55] = 54,
[56] = 52,
2023-11-28 22:54:17 +00:00
[57] = 57,
2023-11-30 00:23:42 +00:00
[58] = 51,
[59] = 50,
[60] = 48,
[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 00:23:42 +00:00
[80] = 80,
[81] = 80,
2023-11-28 22:54:17 +00:00
[82] = 82,
2023-11-30 00:23:42 +00:00
[83] = 83,
[84] = 51,
[85] = 35,
[86] = 35,
[87] = 50,
[88] = 71,
[89] = 52,
[90] = 48,
[91] = 68,
[92] = 51,
[93] = 50,
[94] = 52,
[95] = 48,
[96] = 66,
[97] = 72,
[98] = 78,
[99] = 65,
[100] = 62,
[101] = 73,
[102] = 74,
[103] = 69,
[104] = 64,
[105] = 70,
[106] = 77,
2023-11-28 22:54:17 +00:00
[107] = 67,
[108] = 108,
2023-11-30 00:23:42 +00:00
[109] = 63,
[110] = 76,
[111] = 111,
[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 00:23:42 +00:00
[117] = 114,
[118] = 114,
2023-11-28 22:54:17 +00:00
[119] = 119,
2023-11-30 00:23:42 +00:00
[120] = 69,
[121] = 121,
[122] = 63,
[123] = 72,
[124] = 62,
[125] = 125,
[126] = 126,
[127] = 127,
[128] = 119,
[129] = 121,
[130] = 126,
[131] = 126,
[132] = 127,
[133] = 119,
[134] = 65,
[135] = 135,
[136] = 76,
[137] = 73,
[138] = 67,
[139] = 121,
[140] = 78,
[141] = 70,
2023-11-28 22:54:17 +00:00
[142] = 66,
2023-11-30 00:23:42 +00:00
[143] = 143,
[144] = 74,
[145] = 127,
[146] = 77,
[147] = 64,
[148] = 68,
[149] = 35,
[150] = 71,
[151] = 48,
[152] = 35,
[153] = 52,
[154] = 51,
[155] = 50,
[156] = 156,
[157] = 68,
2023-11-28 22:54:17 +00:00
[158] = 158,
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 00:23:42 +00:00
[162] = 158,
[163] = 159,
[164] = 161,
[165] = 161,
[166] = 160,
[167] = 161,
[168] = 160,
[169] = 169,
[170] = 161,
[171] = 48,
[172] = 161,
[173] = 159,
[174] = 158,
[175] = 169,
[176] = 50,
[177] = 51,
[178] = 71,
2023-11-28 22:54:17 +00:00
[179] = 179,
[180] = 180,
2023-11-30 00:23:42 +00:00
[181] = 52,
[182] = 158,
[183] = 159,
[184] = 161,
[185] = 160,
2023-11-28 22:54:17 +00:00
[186] = 179,
2023-11-30 00:23:42 +00:00
[187] = 187,
[188] = 188,
[189] = 189,
[190] = 188,
[191] = 191,
2023-11-28 22:54:17 +00:00
[192] = 192,
2023-11-30 00:23:42 +00:00
[193] = 193,
[194] = 180,
[195] = 195,
[196] = 179,
[197] = 195,
[198] = 57,
[199] = 158,
[200] = 191,
[201] = 169,
[202] = 159,
[203] = 160,
[204] = 158,
[205] = 159,
[206] = 160,
[207] = 180,
[208] = 189,
[209] = 169,
[210] = 160,
[211] = 161,
[212] = 159,
[213] = 158,
[214] = 156,
[215] = 158,
[216] = 159,
[217] = 160,
[218] = 193,
[219] = 71,
[220] = 68,
[221] = 75,
[222] = 222,
[223] = 223,
[224] = 224,
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 00:23:42 +00:00
[228] = 71,
[229] = 229,
[230] = 230,
[231] = 231,
[232] = 232,
[233] = 68,
[234] = 222,
[235] = 235,
[236] = 236,
[237] = 48,
[238] = 35,
[239] = 80,
[240] = 79,
[241] = 52,
[242] = 80,
[243] = 35,
[244] = 50,
[245] = 51,
[246] = 246,
[247] = 247,
[248] = 52,
[249] = 51,
[250] = 50,
[251] = 251,
[252] = 251,
[253] = 48,
[254] = 254,
[255] = 247,
[256] = 246,
[257] = 254,
[258] = 258,
2023-11-28 22:54:17 +00:00
[259] = 259,
2023-11-30 00:23:42 +00:00
[260] = 259,
[261] = 71,
[262] = 68,
[263] = 226,
[264] = 264,
[265] = 265,
[266] = 266,
[267] = 267,
2023-11-30 00:23:42 +00:00
[268] = 268,
[269] = 269,
[270] = 270,
[271] = 271,
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,
[277] = 277,
2023-11-30 00:23:42 +00:00
[278] = 116,
2023-11-28 22:54:17 +00:00
[279] = 279,
[280] = 280,
2023-11-30 00:23:42 +00:00
[281] = 115,
[282] = 282,
[283] = 143,
[284] = 192,
[285] = 187,
[286] = 286,
[287] = 222,
[288] = 223,
[289] = 222,
[290] = 225,
[291] = 227,
[292] = 230,
[293] = 224,
[294] = 232,
[295] = 229,
[296] = 236,
[297] = 231,
[298] = 235,
[299] = 286,
[300] = 300,
[301] = 301,
[302] = 302,
[303] = 303,
[304] = 304,
[305] = 305,
[306] = 306,
[307] = 307,
[308] = 308,
[309] = 309,
[310] = 300,
[311] = 300,
[312] = 307,
[313] = 307,
[314] = 308,
[315] = 301,
[316] = 304,
[317] = 317,
[318] = 306,
[319] = 308,
[320] = 301,
[321] = 305,
[322] = 317,
[323] = 323,
2023-11-28 22:54:17 +00:00
[324] = 324,
2023-11-30 00:23:42 +00:00
[325] = 317,
[326] = 326,
2023-11-30 00:23:42 +00:00
[327] = 304,
2023-11-28 22:54:17 +00:00
[328] = 328,
2023-11-30 00:23:42 +00:00
[329] = 301,
[330] = 317,
[331] = 304,
[332] = 308,
[333] = 333,
[334] = 333,
[335] = 333,
2023-11-28 22:54:17 +00:00
[336] = 336,
2023-11-30 00:23:42 +00:00
[337] = 333,
[338] = 338,
[339] = 333,
[340] = 333,
[341] = 333,
[342] = 333,
[343] = 343,
[344] = 344,
[345] = 345,
[346] = 346,
2023-11-28 22:54:17 +00:00
[347] = 346,
[348] = 346,
2023-11-30 00:23:42 +00:00
[349] = 346,
[350] = 344,
[351] = 351,
[352] = 343,
[353] = 346,
2023-11-28 22:54:17 +00:00
[354] = 346,
2023-11-30 00:23:42 +00:00
[355] = 345,
[356] = 346,
[357] = 357,
2023-11-30 00:23:42 +00:00
[358] = 358,
[359] = 344,
[360] = 357,
[361] = 361,
};
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},
[37] = {.lex_state = 1},
[38] = {.lex_state = 28},
[39] = {.lex_state = 28},
[40] = {.lex_state = 28},
[41] = {.lex_state = 1},
[42] = {.lex_state = 27},
[43] = {.lex_state = 1},
[44] = {.lex_state = 28},
[45] = {.lex_state = 28},
[46] = {.lex_state = 1},
[47] = {.lex_state = 28},
[48] = {.lex_state = 27},
[49] = {.lex_state = 1},
[50] = {.lex_state = 27},
[51] = {.lex_state = 27},
[52] = {.lex_state = 27},
[53] = {.lex_state = 1},
[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-28 22:54:17 +00:00
[114] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[115] = {.lex_state = 29},
[116] = {.lex_state = 29},
[117] = {.lex_state = 1},
[118] = {.lex_state = 1},
[119] = {.lex_state = 6},
[120] = {.lex_state = 2},
[121] = {.lex_state = 6},
[122] = {.lex_state = 2},
[123] = {.lex_state = 2},
[124] = {.lex_state = 2},
[125] = {.lex_state = 6},
[126] = {.lex_state = 6},
[127] = {.lex_state = 6},
[128] = {.lex_state = 6},
[129] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[130] = {.lex_state = 6},
[131] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[132] = {.lex_state = 6},
[133] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[134] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[135] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[136] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[137] = {.lex_state = 2},
[138] = {.lex_state = 2},
[139] = {.lex_state = 6},
[140] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[141] = {.lex_state = 2},
2023-11-28 22:54:17 +00:00
[142] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[143] = {.lex_state = 29},
2023-11-28 22:54:17 +00:00
[144] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[145] = {.lex_state = 6},
[146] = {.lex_state = 2},
[147] = {.lex_state = 2},
2023-11-30 00:23:42 +00:00
[148] = {.lex_state = 4},
[149] = {.lex_state = 3},
[150] = {.lex_state = 4},
[151] = {.lex_state = 3},
[152] = {.lex_state = 3},
[153] = {.lex_state = 3},
[154] = {.lex_state = 3},
[155] = {.lex_state = 3},
[156] = {.lex_state = 6},
[157] = {.lex_state = 29},
2023-11-28 22:54:17 +00:00
[158] = {.lex_state = 6},
[159] = {.lex_state = 6},
[160] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[161] = {.lex_state = 6},
[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},
[171] = {.lex_state = 3},
[172] = {.lex_state = 6},
[173] = {.lex_state = 6},
[174] = {.lex_state = 6},
[175] = {.lex_state = 6},
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 00:23:42 +00:00
[181] = {.lex_state = 3},
[182] = {.lex_state = 6},
[183] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[184] = {.lex_state = 6},
[185] = {.lex_state = 6},
[186] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[187] = {.lex_state = 29},
[188] = {.lex_state = 6},
[189] = {.lex_state = 6},
[190] = {.lex_state = 6},
[191] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[192] = {.lex_state = 29},
[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 00:23:42 +00:00
[197] = {.lex_state = 6},
[198] = {.lex_state = 3},
[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},
[239] = {.lex_state = 2},
[240] = {.lex_state = 2},
[241] = {.lex_state = 5},
[242] = {.lex_state = 2},
[243] = {.lex_state = 5},
[244] = {.lex_state = 5},
[245] = {.lex_state = 5},
[246] = {.lex_state = 2},
[247] = {.lex_state = 2},
2023-11-28 22:54:17 +00:00
[248] = {.lex_state = 5},
[249] = {.lex_state = 5},
2023-11-28 22:54:17 +00:00
[250] = {.lex_state = 5},
2023-11-30 00:23:42 +00:00
[251] = {.lex_state = 2},
[252] = {.lex_state = 2},
[253] = {.lex_state = 5},
[254] = {.lex_state = 2},
[255] = {.lex_state = 2},
[256] = {.lex_state = 2},
[257] = {.lex_state = 2},
[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 00:23:42 +00:00
[277] = {.lex_state = 1},
[278] = {.lex_state = 4},
[279] = {.lex_state = 1},
[280] = {.lex_state = 1},
[281] = {.lex_state = 4},
[282] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[283] = {.lex_state = 4},
2023-11-30 00:23:42 +00:00
[284] = {.lex_state = 4},
[285] = {.lex_state = 4},
[286] = {.lex_state = 28},
[287] = {.lex_state = 1},
[288] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[289] = {.lex_state = 1},
[290] = {.lex_state = 1},
[291] = {.lex_state = 1},
[292] = {.lex_state = 1},
[293] = {.lex_state = 1},
[294] = {.lex_state = 1},
[295] = {.lex_state = 1},
[296] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[297] = {.lex_state = 1},
[298] = {.lex_state = 1},
[299] = {.lex_state = 28},
[300] = {.lex_state = 1},
[301] = {.lex_state = 1},
[302] = {.lex_state = 28},
2023-11-28 22:54:17 +00:00
[303] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[304] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[305] = {.lex_state = 1},
[306] = {.lex_state = 1},
[307] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[308] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[309] = {.lex_state = 1},
[310] = {.lex_state = 1},
[311] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[312] = {.lex_state = 1},
[313] = {.lex_state = 1},
[314] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[315] = {.lex_state = 1},
[316] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[317] = {.lex_state = 1},
[318] = {.lex_state = 1},
[319] = {.lex_state = 6},
2023-11-30 00:23:42 +00:00
[320] = {.lex_state = 1},
2023-11-28 22:54:17 +00:00
[321] = {.lex_state = 1},
[322] = {.lex_state = 1},
[323] = {.lex_state = 6},
[324] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[325] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[326] = {.lex_state = 6},
[327] = {.lex_state = 6},
[328] = {.lex_state = 6},
2023-11-28 22:54:17 +00:00
[329] = {.lex_state = 1},
[330] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[331] = {.lex_state = 6},
[332] = {.lex_state = 6},
[333] = {.lex_state = 28},
[334] = {.lex_state = 28},
[335] = {.lex_state = 28},
[336] = {.lex_state = 1},
[337] = {.lex_state = 28},
[338] = {.lex_state = 6},
[339] = {.lex_state = 28},
[340] = {.lex_state = 28},
[341] = {.lex_state = 28},
[342] = {.lex_state = 28},
2023-11-28 22:54:17 +00:00
[343] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[344] = {.lex_state = 0},
2023-11-28 22:54:17 +00:00
[345] = {.lex_state = 1},
2023-11-30 00:23:42 +00:00
[346] = {.lex_state = 0},
[347] = {.lex_state = 0},
[348] = {.lex_state = 0},
[349] = {.lex_state = 0},
[350] = {.lex_state = 0},
[351] = {.lex_state = 28},
[352] = {.lex_state = 1},
[353] = {.lex_state = 0},
[354] = {.lex_state = 0},
[355] = {.lex_state = 1},
[356] = {.lex_state = 0},
2023-11-28 22:54:17 +00:00
[357] = {.lex_state = 0},
2023-11-30 00:23:42 +00:00
[358] = {.lex_state = 28},
[359] = {.lex_state = 0},
[360] = {.lex_state = 0},
2023-11-28 22:54:17 +00:00
[361] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_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 00:23:42 +00:00
[sym_root] = STATE(361),
[sym_block] = STATE(222),
[sym_statement] = STATE(17),
[sym_expression] = STATE(80),
[sym__expression_kind] = STATE(74),
[sym_value] = STATE(74),
[sym_boolean] = STATE(77),
[sym_list] = STATE(77),
[sym_map] = STATE(77),
[sym_index] = STATE(75),
[sym_math] = STATE(74),
[sym_logic] = STATE(74),
[sym_assignment] = STATE(222),
[sym_index_assignment] = STATE(222),
[sym_if_else] = STATE(222),
[sym_if] = STATE(115),
[sym_match] = STATE(222),
[sym_while] = STATE(222),
[sym_for] = STATE(222),
[sym_table] = STATE(77),
[sym_return] = STATE(222),
[sym_use] = STATE(222),
[sym_function] = STATE(77),
[sym_function_call] = STATE(74),
[sym_yield] = STATE(74),
[aux_sym_root_repeat1] = STATE(17),
[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 00:23:42 +00:00
STATE(75), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 00:23:42 +00:00
STATE(310), 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 00:23:42 +00:00
STATE(13), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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
[102] = 26,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(45), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(48), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(51), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(54), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(57), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(66), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(69), 1,
2023-11-28 22:54:17 +00:00
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(72), 1,
2023-11-28 22:54:17 +00:00
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(75), 1,
2023-11-28 22:54:17 +00:00
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(78), 1,
2023-11-28 22:54:17 +00:00
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(81), 1,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
ACTIONS(84), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(87), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(90), 1,
2023-11-28 22:54:17 +00:00
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(93), 1,
2023-11-28 22:54:17 +00:00
anon_sym_use,
2023-11-30 00:23:42 +00:00
STATE(75), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(43), 2,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(60), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(63), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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
[202] = 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,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(96), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
STATE(75), 1,
2023-11-28 22:54:17 +00:00
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
2023-11-28 22:54:17 +00:00
sym_if,
2023-11-30 00:23:42 +00:00
STATE(300), 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 00:23:42 +00:00
STATE(10), 2,
2023-11-28 22:54:17 +00:00
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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,
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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,
ts_builtin_sym_end,
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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,
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(11), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(18), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(9), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(19), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(14), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(6), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(7), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(8), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
STATE(16), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(80), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 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(12), 2,
sym_statement,
aux_sym_root_repeat1,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(222), 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 00:23:42 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(7), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(9), 1,
anon_sym_LBRACE,
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,
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(21), 1,
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(23), 1,
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(29), 1,
anon_sym_asyncfor,
2023-11-30 00:23:42 +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
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(81), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
2023-11-30 00:23:42 +00:00
STATE(225), 1,
2023-11-28 22:54:17 +00:00
sym_statement,
2023-11-30 00:23:42 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(234), 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 00:23:42 +00:00
STATE(215), 1,
sym_logic_operator,
STATE(216), 1,
sym_math_operator,
ACTIONS(130), 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 00:23:42 +00:00
ACTIONS(128), 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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
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 00:23:42 +00:00
ACTIONS(132), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(134), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(136), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(148), 1,
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(150), 1,
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(152), 1,
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(154), 1,
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(156), 1,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(162), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(164), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
STATE(221), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(239), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(281), 1,
sym_if,
2023-11-30 00:23:42 +00:00
STATE(303), 1,
2023-11-28 22:54:17 +00:00
sym_statement,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(287), 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
[3378] = 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(172), 1,
anon_sym_RPAREN,
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,
STATE(111), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(145), 1,
aux_sym__expression_list,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
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,
STATE(106), 5,
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,
STATE(102), 7,
sym__expression_kind,
sym_value,
2023-11-30 00:23:42 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
[3469] = 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 00:23:42 +00:00
STATE(75), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(81), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(115), 1,
sym_if,
2023-11-30 00:23:42 +00:00
STATE(223), 1,
sym_statement,
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(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(234), 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
[3564] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(132), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(134), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(136), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(148), 1,
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(150), 1,
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(152), 1,
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(154), 1,
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(156), 1,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(162), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(164), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
STATE(221), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(242), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(281), 1,
sym_if,
2023-11-30 00:23:42 +00:00
STATE(288), 1,
sym_statement,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(289), 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
[3659] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(132), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(134), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(136), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(148), 1,
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(150), 1,
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(152), 1,
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(154), 1,
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(156), 1,
anon_sym_asyncfor,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(162), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(164), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
STATE(221), 1,
sym_index,
2023-11-30 00:23:42 +00:00
STATE(242), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(281), 1,
sym_if,
2023-11-30 00:23:42 +00:00
STATE(290), 1,
sym_statement,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
2023-11-30 00:23:42 +00:00
STATE(289), 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
[3754] = 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,
ACTIONS(198), 1,
anon_sym_RPAREN,
STATE(111), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(126), 1,
aux_sym__expression_list,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
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,
STATE(106), 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 00:23:42 +00:00
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3845] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(200), 1,
anon_sym_DOT_DOT,
STATE(215), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(216), 1,
sym_math_operator,
ACTIONS(130), 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 00:23:42 +00:00
ACTIONS(128), 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 00:23:42 +00:00
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[3902] = 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 00:23:42 +00:00
ACTIONS(202), 1,
anon_sym_RPAREN,
STATE(111), 1,
sym_expression,
STATE(127), 1,
aux_sym__expression_list,
STATE(173), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(174), 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 00:23:42 +00:00
STATE(106), 5,
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 00:23:42 +00:00
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3993] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(132), 1,
sym_identifier,
ACTIONS(134), 1,
anon_sym_async,
ACTIONS(136), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
ACTIONS(148), 1,
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(150), 1,
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(152), 1,
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(154), 1,
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(156), 1,
anon_sym_asyncfor,
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(162), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(164), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
STATE(221), 1,
sym_index,
STATE(242), 1,
sym_expression,
STATE(281), 1,
sym_if,
STATE(298), 1,
sym_statement,
ACTIONS(142), 2,
sym_float,
sym_string,
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(144), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(289), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4088] = 25,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
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,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +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,
2023-11-30 00:23:42 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
ACTIONS(33), 1,
anon_sym_table,
ACTIONS(35), 1,
anon_sym_return,
ACTIONS(37), 1,
anon_sym_use,
STATE(75), 1,
sym_index,
STATE(81), 1,
sym_expression,
STATE(115), 1,
sym_if,
STATE(235), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(234), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4183] = 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,
ACTIONS(204), 1,
anon_sym_RPAREN,
STATE(111), 1,
sym_expression,
STATE(131), 1,
aux_sym__expression_list,
STATE(173), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(174), 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 00:23:42 +00:00
STATE(106), 5,
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 00:23:42 +00:00
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4274] = 25,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(132), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(134), 1,
anon_sym_async,
ACTIONS(136), 1,
anon_sym_LBRACE,
ACTIONS(138), 1,
anon_sym_LPAREN,
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
ACTIONS(148), 1,
anon_sym_if,
2023-11-30 00:23:42 +00:00
ACTIONS(150), 1,
anon_sym_match,
2023-11-30 00:23:42 +00:00
ACTIONS(152), 1,
anon_sym_while,
2023-11-30 00:23:42 +00:00
ACTIONS(154), 1,
anon_sym_for,
2023-11-30 00:23:42 +00:00
ACTIONS(156), 1,
anon_sym_asyncfor,
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(162), 1,
anon_sym_return,
2023-11-30 00:23:42 +00:00
ACTIONS(164), 1,
anon_sym_use,
2023-11-30 00:23:42 +00:00
STATE(221), 1,
sym_index,
STATE(239), 1,
sym_expression,
STATE(281), 1,
sym_if,
STATE(303), 1,
sym_statement,
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(144), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(287), 9,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
[4369] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(215), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(216), 1,
sym_math_operator,
ACTIONS(208), 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 00:23:42 +00:00
ACTIONS(206), 23,
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-28 22:54:17 +00:00
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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[4424] = 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,
ACTIONS(210), 1,
anon_sym_RPAREN,
STATE(111), 1,
sym_expression,
STATE(130), 1,
aux_sym__expression_list,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
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,
STATE(106), 5,
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,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4515] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 1,
anon_sym_COLON,
ACTIONS(218), 1,
anon_sym_DASH_GT,
STATE(215), 1,
sym_logic_operator,
STATE(216), 1,
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-28 22:54:17 +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), 12,
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 00:23:42 +00:00
anon_sym_DOT_DOT,
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 00:23:42 +00:00
[4582] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(216), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(215), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(216), 1,
sym_math_operator,
ACTIONS(222), 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 00:23:42 +00:00
ACTIONS(220), 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 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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[4639] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(216), 1,
anon_sym_COLON,
ACTIONS(218), 1,
anon_sym_DASH_GT,
STATE(215), 1,
sym_logic_operator,
STATE(216), 1,
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(224), 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,
2023-11-30 00:23:42 +00:00
ACTIONS(226), 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 00:23:42 +00:00
[4706] = 23,
ACTIONS(3), 1,
sym__comment,
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(182), 1,
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,
ACTIONS(228), 1,
anon_sym_RPAREN,
STATE(111), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
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 00:23:42 +00:00
STATE(106), 5,
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 00:23:42 +00:00
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4797] = 22,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 1,
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,
STATE(173), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(174), 1,
sym_logic_operator,
STATE(259), 1,
sym_expression,
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 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 00:23:42 +00:00
STATE(146), 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 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
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,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
sym_logic_operator,
STATE(260), 1,
sym_expression,
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 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 00:23:42 +00:00
STATE(146), 5,
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 00:23:42 +00:00
STATE(144), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4973] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(218), 1,
anon_sym_DASH_GT,
ACTIONS(238), 1,
anon_sym_COLON,
STATE(162), 1,
sym_logic_operator,
STATE(163), 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(224), 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,
ACTIONS(226), 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,
[5039] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(244), 1,
anon_sym_EQ,
ACTIONS(246), 1,
anon_sym_LT,
STATE(38), 1,
sym_assignment_operator,
STATE(286), 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 00:23:42 +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 00:23:42 +00:00
[5099] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
STATE(162), 1,
sym_logic_operator,
STATE(163), 1,
sym_math_operator,
ACTIONS(222), 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 00:23:42 +00:00
ACTIONS(220), 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 00:23:42 +00:00
[5155] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(218), 1,
anon_sym_DASH_GT,
ACTIONS(238), 1,
anon_sym_COLON,
STATE(162), 1,
sym_logic_operator,
STATE(163), 1,
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,
[5221] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(162), 1,
sym_logic_operator,
STATE(163), 1,
sym_math_operator,
ACTIONS(208), 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 00:23:42 +00:00
ACTIONS(206), 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,
anon_sym_asyncfor,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[5275] = 8,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(246), 1,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(250), 1,
anon_sym_EQ,
STATE(38), 1,
sym_assignment_operator,
STATE(286), 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,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
anon_sym_GT,
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(240), 19,
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,
[5334] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(254), 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 00:23:42 +00:00
ACTIONS(252), 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 00:23:42 +00:00
[5383] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(258), 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 00:23:42 +00:00
ACTIONS(256), 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 00:23:42 +00:00
[5432] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(262), 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 00:23:42 +00:00
ACTIONS(260), 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 00:23:42 +00:00
[5481] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(266), 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 00:23:42 +00:00
ACTIONS(264), 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 00:23:42 +00:00
[5530] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(270), 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 00:23:42 +00:00
ACTIONS(268), 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 00:23:42 +00:00
[5579] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(274), 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 00:23:42 +00:00
ACTIONS(272), 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 00:23:42 +00:00
[5628] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(278), 18,
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,
ACTIONS(276), 23,
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,
[5677] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(282), 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 00:23:42 +00:00
ACTIONS(280), 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 00:23:42 +00:00
[5726] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(286), 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 00:23:42 +00:00
ACTIONS(284), 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 00:23:42 +00:00
[5775] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(290), 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 00:23:42 +00:00
ACTIONS(288), 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 00:23:42 +00:00
[5824] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(294), 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 00:23:42 +00:00
ACTIONS(292), 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 00:23:42 +00:00
[5873] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(298), 18,
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,
ACTIONS(296), 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,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_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_asyncfor,
anon_sym_DASH_GT,
[5922] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(302), 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 00:23:42 +00:00
ACTIONS(300), 23,
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 00:23:42 +00:00
[5971] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(244), 1,
anon_sym_EQ,
STATE(34), 1,
sym_assignment_operator,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 17,
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,
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,
ACTIONS(240), 20,
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_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_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,
[6026] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(306), 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 00:23:42 +00:00
ACTIONS(304), 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 00:23:42 +00:00
[6075] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(310), 18,
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_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 00:23:42 +00:00
ACTIONS(308), 23,
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_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,
[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,
[6173] = 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(218), 1,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(162), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(163), 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 00:23:42 +00:00
ACTIONS(316), 9,
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,
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 00:23:42 +00:00
[6236] = 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(218), 1,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(238), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(324), 1,
2023-11-28 22:54:17 +00:00
anon_sym_SEMI,
2023-11-30 00:23:42 +00:00
STATE(162), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(163), 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 00:23:42 +00:00
ACTIONS(320), 8,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
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(322), 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 00:23:42 +00:00
ACTIONS(218), 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 00:23:42 +00:00
STATE(162), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(163), 1,
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 00:23:42 +00:00
ACTIONS(320), 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 00:23:42 +00:00
ACTIONS(322), 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 00:23:42 +00:00
ACTIONS(138), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 00:23:42 +00:00
STATE(259), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 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 00:23:42 +00:00
STATE(146), 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 00:23:42 +00:00
STATE(144), 7,
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 00:23:42 +00:00
STATE(259), 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 00:23:42 +00:00
STATE(146), 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 00:23:42 +00:00
STATE(144), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6504] = 6,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(363), 1,
anon_sym_COLON,
STATE(204), 1,
sym_logic_operator,
STATE(205), 1,
sym_math_operator,
ACTIONS(222), 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 00:23:42 +00:00
ACTIONS(220), 20,
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
[6550] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(365), 1,
anon_sym_DOT_DOT,
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,
ACTIONS(130), 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 00:23:42 +00:00
ACTIONS(128), 20,
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_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
[6596] = 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,
ACTIONS(130), 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 00:23:42 +00:00
ACTIONS(128), 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-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_DASH_GT,
2023-11-30 00:23:42 +00:00
[6640] = 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 00:23:42 +00:00
ACTIONS(363), 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 00:23:42 +00:00
ACTIONS(214), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 00:23:42 +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 00:23:42 +00:00
[6696] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(290), 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 00:23:42 +00:00
ACTIONS(288), 23,
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,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-28 22:54:17 +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 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 00:23:42 +00:00
ACTIONS(363), 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 00:23:42 +00:00
ACTIONS(226), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(224), 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 00:23:42 +00:00
[6792] = 5,
ACTIONS(3), 1,
sym__comment,
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(208), 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 00:23:42 +00:00
ACTIONS(206), 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 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 00:23:42 +00:00
[6836] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(278), 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 00:23:42 +00:00
ACTIONS(276), 23,
anon_sym_LBRACE,
2023-11-28 22:54:17 +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-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 00:23:42 +00:00
[6876] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(173), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(174), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(222), 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 00:23:42 +00:00
ACTIONS(220), 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,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[6921] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(182), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(196), 1,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
STATE(173), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(174), 1,
sym_logic_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 00:23:42 +00:00
ACTIONS(214), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(212), 8,
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 00:23:42 +00:00
[6976] = 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,
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
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 00:23:42 +00:00
ACTIONS(226), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(224), 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 00:23:42 +00:00
[7031] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(173), 1,
sym_math_operator,
STATE(174), 1,
sym_logic_operator,
ACTIONS(208), 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 00:23:42 +00:00
ACTIONS(206), 20,
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_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
[7074] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(270), 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 00:23:42 +00:00
ACTIONS(268), 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 00:23:42 +00:00
[7112] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(294), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(292), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-28 22:54:17 +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 00:23:42 +00:00
[7150] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +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 00:23:42 +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,
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
[7188] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(266), 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 00:23:42 +00:00
ACTIONS(264), 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 00:23:42 +00:00
[7226] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(254), 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 00:23:42 +00:00
ACTIONS(252), 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 00:23:42 +00:00
[7264] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(298), 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 00:23:42 +00:00
ACTIONS(296), 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 00:23:42 +00:00
[7302] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(302), 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 00:23:42 +00:00
ACTIONS(300), 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 00:23:42 +00:00
[7340] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(282), 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 00:23:42 +00:00
ACTIONS(280), 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 00:23:42 +00:00
[7378] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(262), 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 00:23:42 +00:00
ACTIONS(260), 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 00:23:42 +00:00
[7416] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(286), 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 00:23:42 +00:00
ACTIONS(284), 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 00:23:42 +00:00
[7454] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 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,
ACTIONS(308), 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 00:23:42 +00:00
[7492] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(274), 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 00:23:42 +00:00
ACTIONS(272), 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 00:23:42 +00:00
[7530] = 12,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(186), 1,
anon_sym_DASH,
ACTIONS(196), 1,
2023-11-28 22:54:17 +00:00
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
ACTIONS(371), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
STATE(173), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(174), 1,
sym_logic_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,
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 00:23:42 +00:00
ACTIONS(367), 6,
2023-11-28 22:54:17 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(369), 6,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACK,
[7586] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(258), 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 00:23:42 +00:00
ACTIONS(256), 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 00:23:42 +00:00
[7624] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(306), 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 00:23:42 +00:00
ACTIONS(304), 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,
[7662] = 12,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
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(173), 1,
sym_math_operator,
STATE(174), 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,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
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,
[7718] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
ACTIONS(334), 1,
2023-11-30 00:23:42 +00:00
sym_identifier,
ACTIONS(339), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(342), 1,
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 00:23:42 +00:00
STATE(260), 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 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
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 00:23:42 +00:00
STATE(260), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 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 00:23:42 +00:00
STATE(146), 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
STATE(144), 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
[7838] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(379), 1,
anon_sym_RPAREN,
ACTIONS(302), 9,
sym_identifier,
2023-11-30 00:23:42 +00:00
sym_integer,
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,
anon_sym_table,
ACTIONS(300), 17,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[7875] = 7,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(385), 1,
anon_sym_elseif,
ACTIONS(387), 1,
anon_sym_else,
STATE(232), 1,
sym_else,
STATE(116), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(381), 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(383), 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,
[7918] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(385), 1,
anon_sym_elseif,
ACTIONS(387), 1,
anon_sym_else,
STATE(230), 1,
sym_else,
STATE(143), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(389), 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(391), 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,
[7961] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(393), 1,
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(302), 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 00:23:42 +00:00
ACTIONS(300), 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 00:23:42 +00:00
[7998] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(395), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(302), 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 00:23:42 +00:00
ACTIONS(300), 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 00:23:42 +00:00
[8035] = 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,
ACTIONS(170), 1,
anon_sym_LPAREN,
ACTIONS(174), 1,
sym_integer,
ACTIONS(180), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_table,
ACTIONS(397), 1,
anon_sym_RBRACK,
ACTIONS(399), 1,
anon_sym_PIPE,
STATE(108), 1,
sym_expression,
STATE(125), 1,
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8093] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(282), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(280), 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 00:23:42 +00:00
[8127] = 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 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
ACTIONS(401), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(133), 1,
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8185] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(258), 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 00:23:42 +00:00
ACTIONS(256), 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 00:23:42 +00:00
[8219] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(294), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(292), 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,
[8253] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(254), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(252), 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 00:23:42 +00:00
[8287] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(403), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(406), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(409), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(412), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(421), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(424), 1,
anon_sym_RBRACK,
ACTIONS(426), 1,
anon_sym_PIPE,
ACTIONS(429), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(108), 1,
sym_expression,
STATE(125), 1,
aux_sym_list_repeat1,
ACTIONS(415), 2,
sym_float,
sym_string,
ACTIONS(418), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8345] = 15,
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(194), 1,
anon_sym_table,
ACTIONS(399), 1,
anon_sym_PIPE,
ACTIONS(432), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
STATE(111), 1,
sym_expression,
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8403] = 15,
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(194), 1,
anon_sym_table,
ACTIONS(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(434), 1,
anon_sym_RPAREN,
STATE(111), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(135), 1,
2023-11-28 22:54:17 +00:00
aux_sym__expression_list,
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 00:23:42 +00:00
STATE(106), 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
STATE(102), 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
[8461] = 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 00:23:42 +00:00
ACTIONS(436), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(125), 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 00:23:42 +00:00
STATE(106), 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
STATE(102), 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
[8519] = 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,
ACTIONS(438), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(128), 1,
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8577] = 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,
ACTIONS(440), 1,
anon_sym_RPAREN,
STATE(111), 1,
sym_expression,
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8635] = 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 00:23:42 +00:00
ACTIONS(442), 1,
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
STATE(111), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(135), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[8693] = 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(444), 1,
anon_sym_RPAREN,
2023-11-30 00:23:42 +00:00
STATE(111), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(135), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[8751] = 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,
ACTIONS(446), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(125), 1,
aux_sym_list_repeat1,
ACTIONS(176), 2,
sym_float,
sym_string,
ACTIONS(178), 2,
anon_sym_true,
anon_sym_false,
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8809] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(266), 7,
2023-11-28 22:54:17 +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 00:23:42 +00:00
ACTIONS(264), 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,
2023-11-30 00:23:42 +00:00
[8843] = 15,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(448), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(451), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(454), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(457), 1,
anon_sym_RPAREN,
ACTIONS(459), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(468), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(471), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(474), 1,
anon_sym_table,
STATE(111), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(135), 1,
aux_sym__expression_list,
ACTIONS(462), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[8901] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(306), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(304), 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,
2023-11-30 00:23:42 +00:00
[8935] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(298), 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 00:23:42 +00:00
ACTIONS(296), 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 00:23:42 +00:00
[8969] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(274), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(272), 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,
2023-11-30 00:23:42 +00:00
[9003] = 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-28 22:54:17 +00:00
ACTIONS(477), 1,
2023-11-30 00:23:42 +00:00
anon_sym_RBRACK,
2023-11-28 22:54:17 +00:00
STATE(108), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(119), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[9061] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +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 00:23:42 +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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[9095] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(286), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(284), 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,
2023-11-30 00:23:42 +00:00
[9129] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(270), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(268), 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,
2023-11-30 00:23:42 +00:00
[9163] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(483), 1,
anon_sym_elseif,
STATE(143), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(479), 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(481), 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,
[9201] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(302), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(300), 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,
2023-11-30 00:23:42 +00:00
[9235] = 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 00:23:42 +00:00
STATE(111), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
STATE(135), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[9293] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(308), 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,
2023-11-30 00:23:42 +00:00
[9327] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(262), 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 00:23:42 +00:00
ACTIONS(260), 19,
2023-11-28 22:54:17 +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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
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 00:23:42 +00:00
ACTIONS(278), 6,
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,
ACTIONS(276), 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,
[9394] = 6,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(488), 1,
anon_sym_DOT_DOT,
2023-11-28 22:54:17 +00:00
STATE(158), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(159), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(130), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(128), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[9433] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(290), 6,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
anon_sym_else,
ACTIONS(288), 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_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,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[9466] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(158), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(159), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(208), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(206), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-30 00:23:42 +00:00
anon_sym_DASH_GT,
[9503] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-28 22:54:17 +00:00
STATE(158), 1,
2023-11-30 00:23:42 +00:00
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(130), 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 00:23:42 +00:00
ACTIONS(128), 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 00:23:42 +00:00
[9540] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(226), 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,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
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(224), 7,
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 00:23:42 +00:00
[9589] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(490), 1,
anon_sym_COLON,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(222), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(220), 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 00:23:42 +00:00
[9628] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(214), 1,
anon_sym_EQ,
ACTIONS(490), 1,
anon_sym_COLON,
ACTIONS(492), 1,
anon_sym_DASH_GT,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
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), 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,
[9677] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 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,
2023-11-30 00:23:42 +00:00
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
anon_sym_table,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(251), 1,
sym_expression,
ACTIONS(142), 2,
sym_float,
sym_string,
ACTIONS(144), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(144), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9729] = 3,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(276), 11,
2023-11-28 22:54:17 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_elseif,
2023-11-28 22:54:17 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(278), 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,
2023-11-30 00:23:42 +00:00
anon_sym_else,
2023-11-28 22:54:17 +00:00
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
[9761] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
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 00:23:42 +00:00
ACTIONS(494), 1,
anon_sym_table,
STATE(155), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 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
STATE(144), 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
[9813] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
2023-11-28 22:54:17 +00:00
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(494), 1,
anon_sym_table,
STATE(154), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 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
STATE(144), 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
[9865] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
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 00:23:42 +00:00
ACTIONS(494), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(153), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[9917] = 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 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(496), 1,
anon_sym_table,
STATE(86), 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 00:23:42 +00:00
STATE(106), 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
STATE(102), 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
[9969] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(11), 1,
2023-11-28 22:54:17 +00:00
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,
ACTIONS(33), 1,
anon_sym_table,
ACTIONS(498), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(500), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(59), 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,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 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
STATE(74), 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
[10021] = 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(33), 1,
anon_sym_table,
ACTIONS(498), 1,
sym_identifier,
ACTIONS(500), 1,
anon_sym_LBRACE,
STATE(58), 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 00:23:42 +00:00
STATE(77), 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
STATE(74), 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
[10073] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(11), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(13), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(19), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(31), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(498), 1,
sym_identifier,
ACTIONS(500), 1,
anon_sym_LBRACE,
ACTIONS(502), 1,
anon_sym_table,
STATE(42), 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,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 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
STATE(74), 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
[10125] = 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,
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,
ACTIONS(502), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(35), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 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
[10177] = 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,
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(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(498), 1,
sym_identifier,
ACTIONS(500), 1,
anon_sym_LBRACE,
STATE(56), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 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
[10229] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 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(330), 1,
anon_sym_PIPE,
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 00:23:42 +00:00
STATE(243), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 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
STATE(144), 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
[10281] = 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,
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(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
STATE(94), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[10333] = 13,
ACTIONS(3), 1,
sym__comment,
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-30 00:23:42 +00:00
ACTIONS(31), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(33), 1,
anon_sym_table,
ACTIONS(498), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(500), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(60), 1,
sym_expression,
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 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 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
[10385] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 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(494), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(152), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[10437] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(182), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(183), 1,
2023-11-28 22:54:17 +00:00
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(208), 5,
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
ACTIONS(206), 17,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
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 00:23:42 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[10473] = 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 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(496), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(85), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[10525] = 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,
anon_sym_PIPE,
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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[10577] = 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,
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 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
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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[10629] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 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 00:23:42 +00:00
STATE(171), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[10681] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(214), 1,
anon_sym_EQ,
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(506), 1,
anon_sym_COLON,
STATE(182), 1,
sym_logic_operator,
STATE(183), 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,
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,
[10729] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(506), 1,
anon_sym_COLON,
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
ACTIONS(222), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(220), 16,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[10767] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 11,
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,
ACTIONS(290), 13,
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,
[10799] = 13,
ACTIONS(3), 1,
sym__comment,
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,
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(508), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
STATE(53), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +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
[10851] = 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,
STATE(46), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[10903] = 11,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(226), 1,
2023-11-28 22:54:17 +00:00
anon_sym_EQ,
2023-11-30 00:23:42 +00:00
ACTIONS(492), 1,
anon_sym_DASH_GT,
ACTIONS(506), 1,
anon_sym_COLON,
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
ACTIONS(186), 2,
2023-11-28 22:54:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-11-30 00:23:42 +00:00
ACTIONS(190), 2,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
2023-11-30 00:23:42 +00:00
anon_sym_LT,
ACTIONS(184), 3,
2023-11-28 22:54:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
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 00:23:42 +00:00
ACTIONS(224), 6,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[10951] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 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(176), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11003] = 13,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
2023-11-28 22:54:17 +00:00
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 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 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11055] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
2023-11-28 22:54:17 +00:00
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,
ACTIONS(494), 1,
anon_sym_table,
STATE(149), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11107] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 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(181), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11159] = 13,
ACTIONS(3), 1,
sym__comment,
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,
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(510), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
STATE(37), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(118), 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
[11211] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(512), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(514), 13,
anon_sym_async,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[11243] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
anon_sym_LPAREN,
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 1,
anon_sym_LBRACK,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
2023-11-28 22:54:17 +00:00
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,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(256), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11295] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 00:23:42 +00:00
STATE(257), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11347] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 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,
STATE(246), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11399] = 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 00:23:42 +00:00
STATE(54), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[11451] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(516), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(518), 13,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-30 00:23:42 +00:00
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,
[11483] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
anon_sym_LPAREN,
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 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 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,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(255), 1,
2023-11-28 22:54:17 +00:00
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
2023-11-28 22:54:17 +00:00
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
2023-11-28 22:54:17 +00:00
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 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
STATE(144), 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
[11535] = 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,
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(194), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(399), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(41), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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
[11587] = 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,
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(33), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(498), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(500), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(79), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(15), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 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
[11639] = 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,
anon_sym_PIPE,
ACTIONS(520), 1,
sym_identifier,
STATE(43), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(114), 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
[11691] = 13,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 1,
anon_sym_LBRACK,
2023-11-30 00:23:42 +00:00
ACTIONS(158), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(160), 1,
anon_sym_table,
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 00:23:42 +00:00
STATE(240), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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
[11743] = 8,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(244), 1,
anon_sym_EQ,
ACTIONS(246), 1,
anon_sym_LT,
STATE(39), 1,
sym_assignment_operator,
STATE(299), 1,
sym_type_definition,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 3,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
ACTIONS(240), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[11785] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 00:23:42 +00:00
ACTIONS(504), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(244), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 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,
anon_sym_PIPE,
STATE(55), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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(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,
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
STATE(95), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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(330), 1,
anon_sym_PIPE,
ACTIONS(504), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(245), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
ACTIONS(146), 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 00:23:42 +00:00
ACTIONS(504), 1,
anon_sym_table,
STATE(241), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(496), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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 00:23:42 +00:00
ACTIONS(496), 1,
anon_sym_table,
STATE(84), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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 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(399), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
ACTIONS(496), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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(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
STATE(49), 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 00:23:42 +00:00
STATE(106), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(102), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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,
STATE(254), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(253), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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,
STATE(248), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 00:23:42 +00:00
ACTIONS(330), 1,
anon_sym_PIPE,
ACTIONS(504), 1,
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(238), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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,
STATE(249), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 00:23:42 +00:00
ACTIONS(236), 1,
anon_sym_table,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(250), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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,
ACTIONS(330), 1,
anon_sym_PIPE,
STATE(252), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
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,
2023-11-30 00:23:42 +00:00
ACTIONS(500), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(502), 1,
anon_sym_table,
STATE(50), 1,
sym_expression,
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(77), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(74), 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 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,
2023-11-30 00:23:42 +00:00
ACTIONS(500), 1,
anon_sym_LBRACE,
ACTIONS(502), 1,
anon_sym_table,
STATE(51), 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,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 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
STATE(74), 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 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,
ACTIONS(498), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(500), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(502), 1,
2023-11-28 22:54:17 +00:00
anon_sym_table,
2023-11-30 00:23:42 +00:00
STATE(52), 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,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(77), 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
STATE(74), 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 00:23:42 +00:00
ACTIONS(138), 1,
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
ACTIONS(140), 1,
sym_integer,
2023-11-30 00:23:42 +00:00
ACTIONS(146), 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 00:23:42 +00:00
STATE(247), 1,
sym_expression,
2023-11-30 00:23:42 +00:00
ACTIONS(142), 2,
sym_float,
sym_string,
2023-11-30 00:23:42 +00:00
ACTIONS(144), 2,
anon_sym_true,
anon_sym_false,
2023-11-30 00:23:42 +00:00
STATE(146), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-30 00:23:42 +00:00
STATE(144), 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,
ACTIONS(290), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(288), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[12856] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(278), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(276), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[12887] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(244), 1,
anon_sym_EQ,
STATE(40), 1,
sym_assignment_operator,
ACTIONS(248), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(242), 4,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[12924] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(324), 1,
anon_sym_SEMI,
ACTIONS(320), 9,
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,
ACTIONS(322), 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,
[12956] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(522), 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(524), 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,
[12986] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 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(528), 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,
[13016] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(530), 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(532), 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,
[13046] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(534), 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(536), 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,
[13076] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(538), 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(540), 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,
[13106] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 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(290), 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,
[13136] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(542), 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(544), 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,
[13166] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(546), 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(548), 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,
[13196] = 3,
ACTIONS(3), 1,
sym__comment,
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,
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,
[13226] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(389), 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 00:23:42 +00:00
ACTIONS(391), 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 00:23:42 +00:00
ACTIONS(276), 10,
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 00:23:42 +00:00
ACTIONS(278), 12,
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 00:23:42 +00:00
ACTIONS(320), 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 00:23:42 +00:00
ACTIONS(322), 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 00:23:42 +00:00
ACTIONS(554), 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 00:23:42 +00:00
ACTIONS(556), 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 00:23:42 +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 00:23:42 +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
[13376] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(199), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(202), 1,
sym_math_operator,
ACTIONS(208), 3,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(206), 16,
2023-11-28 22:54:17 +00:00
anon_sym_async,
anon_sym_LBRACE,
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,
2023-11-28 22:54:17 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[13409] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(562), 1,
anon_sym_DOT_DOT,
STATE(199), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(202), 1,
sym_math_operator,
ACTIONS(130), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(128), 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 00:23:42 +00:00
[13444] = 11,
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(506), 1,
anon_sym_COLON,
ACTIONS(564), 1,
anon_sym_SEMI,
STATE(182), 1,
sym_logic_operator,
STATE(183), 1,
sym_math_operator,
ACTIONS(190), 2,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(320), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
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
[13489] = 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(506), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(182), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(183), 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(316), 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 00:23:42 +00:00
[13532] = 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 00:23:42 +00:00
ACTIONS(566), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(199), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(202), 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(224), 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 00:23:42 +00:00
[13575] = 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 00:23:42 +00:00
ACTIONS(506), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(182), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(183), 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(320), 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 00:23:42 +00:00
[13618] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(199), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(202), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(130), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(128), 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 00:23:42 +00:00
[13651] = 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 00:23:42 +00:00
ACTIONS(566), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(199), 1,
2023-11-28 22:54:17 +00:00
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(202), 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(212), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
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
[13694] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(566), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(199), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(202), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(222), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(220), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
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,
[13729] = 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 00:23:42 +00:00
ACTIONS(568), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(570), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(284), 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 00:23:42 +00:00
[13775] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(574), 1,
anon_sym_async,
ACTIONS(576), 1,
anon_sym_LBRACE,
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(293), 1,
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 00:23:42 +00:00
[13821] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
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(224), 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 00:23:42 +00:00
[13863] = 6,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(222), 3,
2023-11-28 22:54:17 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(220), 14,
2023-11-28 22:54:17 +00:00
anon_sym_async,
anon_sym_LBRACE,
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_EQ_GT,
anon_sym_DASH_GT,
2023-11-30 00:23:42 +00:00
[13897] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
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(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 00:23:42 +00:00
[13939] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(578), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(580), 1,
anon_sym_LBRACE,
STATE(187), 1,
sym_block,
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_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
[13985] = 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,
anon_sym_async,
ACTIONS(570), 1,
anon_sym_LBRACE,
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(285), 1,
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 00:23:42 +00:00
[14031] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
ACTIONS(208), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-30 00:23:42 +00:00
ACTIONS(206), 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,
[14063] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(574), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(576), 1,
anon_sym_LBRACE,
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(291), 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 00:23:42 +00:00
[14109] = 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 00:23:42 +00:00
ACTIONS(572), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(582), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(584), 1,
anon_sym_LBRACE,
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(224), 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 00:23:42 +00:00
[14155] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(578), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(580), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(192), 1,
sym_block,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_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
[14201] = 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(582), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(584), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_operator,
2023-11-30 00:23:42 +00:00
STATE(227), 1,
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 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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(590), 1,
anon_sym_EQ_GT,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_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 00:23:42 +00:00
ACTIONS(572), 1,
anon_sym_COLON,
2023-11-30 00:23:42 +00:00
ACTIONS(592), 1,
anon_sym_EQ_GT,
2023-11-30 00:23:42 +00:00
STATE(212), 1,
sym_math_operator,
2023-11-30 00:23:42 +00:00
STATE(213), 1,
sym_logic_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 00:23:42 +00:00
ACTIONS(290), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(288), 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 00:23:42 +00:00
ACTIONS(278), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(276), 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,
[14398] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(534), 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
[14420] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(594), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(457), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[14440] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(596), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(424), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_PIPE,
[14460] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 1,
anon_sym_GT,
ACTIONS(602), 1,
anon_sym_fn,
ACTIONS(604), 1,
anon_sym_DASH_GT,
ACTIONS(606), 1,
anon_sym_list,
STATE(267), 2,
sym_type,
aux_sym_type_repeat1,
ACTIONS(600), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14488] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
anon_sym_fn,
ACTIONS(606), 1,
anon_sym_list,
ACTIONS(608), 1,
anon_sym_GT,
ACTIONS(610), 1,
anon_sym_DASH_GT,
STATE(268), 2,
sym_type,
aux_sym_type_repeat1,
ACTIONS(600), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14516] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(617), 1,
anon_sym_fn,
ACTIONS(620), 1,
anon_sym_list,
ACTIONS(612), 2,
anon_sym_GT,
anon_sym_DASH_GT,
STATE(268), 2,
sym_type,
aux_sym_type_repeat1,
ACTIONS(614), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14542] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(623), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(625), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[14561] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(627), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(629), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[14580] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(631), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(633), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[14599] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(635), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
2023-11-30 00:23:42 +00:00
ACTIONS(637), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[14618] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(639), 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,
[14634] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(598), 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,
[14650] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(608), 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,
[14666] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(641), 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,
[14682] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
anon_sym_fn,
ACTIONS(606), 1,
anon_sym_list,
STATE(275), 1,
sym_type,
ACTIONS(600), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14703] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(391), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(643), 1,
anon_sym_elseif,
2023-11-30 00:23:42 +00:00
ACTIONS(645), 1,
anon_sym_else,
2023-11-30 00:23:42 +00:00
STATE(292), 1,
sym_else,
2023-11-30 00:23:42 +00:00
STATE(283), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 00:23:42 +00:00
ACTIONS(389), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
[14728] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
anon_sym_fn,
ACTIONS(606), 1,
anon_sym_list,
STATE(273), 1,
sym_type,
ACTIONS(600), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14749] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 1,
anon_sym_fn,
ACTIONS(606), 1,
anon_sym_list,
STATE(276), 1,
sym_type,
ACTIONS(600), 6,
anon_sym_any,
anon_sym_bool,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[14770] = 7,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(383), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(643), 1,
anon_sym_elseif,
2023-11-30 00:23:42 +00:00
ACTIONS(645), 1,
anon_sym_else,
2023-11-30 00:23:42 +00:00
STATE(294), 1,
sym_else,
2023-11-30 00:23:42 +00:00
STATE(278), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 00:23:42 +00:00
ACTIONS(381), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
[14795] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(602), 1,
anon_sym_fn,
ACTIONS(606), 1,
anon_sym_list,
STATE(358), 1,
sym_type,
ACTIONS(600), 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 00:23:42 +00:00
[14816] = 5,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(647), 1,
2023-11-28 22:54:17 +00:00
anon_sym_elseif,
2023-11-30 00:23:42 +00:00
ACTIONS(481), 2,
2023-11-28 22:54:17 +00:00
sym_identifier,
anon_sym_else,
2023-11-30 00:23:42 +00:00
STATE(283), 2,
2023-11-28 22:54:17 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-30 00:23:42 +00:00
ACTIONS(479), 3,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
[14836] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(518), 2,
sym_identifier,
anon_sym_else,
2023-11-30 00:23:42 +00:00
ACTIONS(516), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-30 00:23:42 +00:00
[14850] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(514), 2,
sym_identifier,
anon_sym_else,
2023-11-30 00:23:42 +00:00
ACTIONS(512), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-30 00:23:42 +00:00
[14864] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
STATE(45), 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 00:23:42 +00:00
[14876] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(564), 1,
anon_sym_SEMI,
ACTIONS(320), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14888] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(522), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14898] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(320), 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 00:23:42 +00:00
[14908] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(530), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14918] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(538), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14928] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(546), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14938] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(526), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14948] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(389), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14958] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(542), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14968] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(558), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14978] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(550), 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 00:23:42 +00:00
[14988] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(554), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-30 00:23:42 +00:00
[14998] = 3,
ACTIONS(3), 1,
sym__comment,
STATE(44), 1,
sym_assignment_operator,
ACTIONS(248), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15010] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(650), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(652), 1,
anon_sym_RBRACE,
STATE(309), 1,
aux_sym_map_repeat1,
[15023] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(654), 1,
anon_sym_async,
ACTIONS(656), 1,
anon_sym_LBRACE,
STATE(122), 1,
sym_block,
[15036] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(658), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15045] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(662), 1,
anon_sym_COMMA,
ACTIONS(660), 2,
anon_sym_RBRACE,
sym_identifier,
2023-11-30 00:23:42 +00:00
[15056] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(666), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(328), 1,
aux_sym_identifier_list_repeat1,
[15069] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(582), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(584), 1,
anon_sym_LBRACE,
STATE(226), 1,
sym_block,
2023-11-30 00:23:42 +00:00
[15082] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(582), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(584), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(229), 1,
sym_block,
2023-11-30 00:23:42 +00:00
[15095] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(41), 1,
anon_sym_RBRACE,
ACTIONS(650), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
STATE(310), 1,
aux_sym_map_repeat1,
[15108] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(668), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(304), 1,
2023-11-28 22:54:17 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 00:23:42 +00:00
[15121] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(670), 1,
sym_identifier,
ACTIONS(673), 1,
anon_sym_RBRACE,
STATE(309), 1,
aux_sym_map_repeat1,
[15134] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(650), 1,
sym_identifier,
ACTIONS(675), 1,
anon_sym_RBRACE,
STATE(309), 1,
aux_sym_map_repeat1,
[15147] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(650), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(677), 1,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
STATE(309), 1,
2023-11-28 22:54:17 +00:00
aux_sym_map_repeat1,
2023-11-30 00:23:42 +00:00
[15160] = 4,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(96), 1,
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
ACTIONS(650), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
STATE(300), 1,
aux_sym_map_repeat1,
[15173] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(650), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(679), 1,
anon_sym_RBRACE,
2023-11-30 00:23:42 +00:00
STATE(311), 1,
aux_sym_map_repeat1,
2023-11-30 00:23:42 +00:00
[15186] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(664), 1,
sym_identifier,
ACTIONS(681), 1,
anon_sym_PIPE,
STATE(316), 1,
aux_sym_identifier_list_repeat1,
[15199] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(568), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(570), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(122), 1,
sym_block,
2023-11-30 00:23:42 +00:00
[15212] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(683), 1,
anon_sym_PIPE,
STATE(328), 1,
aux_sym_identifier_list_repeat1,
[15225] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(574), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(576), 1,
anon_sym_LBRACE,
STATE(105), 1,
sym_block,
2023-11-30 00:23:42 +00:00
[15238] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(574), 1,
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(576), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(295), 1,
sym_block,
2023-11-30 00:23:42 +00:00
[15251] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(685), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(327), 1,
2023-11-28 22:54:17 +00:00
aux_sym_identifier_list_repeat1,
2023-11-30 00:23:42 +00:00
[15264] = 4,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(574), 1,
anon_sym_async,
ACTIONS(576), 1,
anon_sym_LBRACE,
STATE(109), 1,
sym_block,
[15277] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(687), 1,
anon_sym_async,
ACTIONS(689), 1,
anon_sym_LBRACE,
STATE(263), 1,
sym_block,
[15290] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(568), 1,
anon_sym_async,
ACTIONS(570), 1,
anon_sym_LBRACE,
STATE(141), 1,
sym_block,
[15303] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(693), 1,
2023-11-28 22:54:17 +00:00
anon_sym_COMMA,
2023-11-30 00:23:42 +00:00
ACTIONS(691), 2,
2023-11-28 22:54:17 +00:00
sym_identifier,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[15314] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(695), 1,
anon_sym_PIPE,
STATE(326), 1,
aux_sym_identifier_list_repeat1,
[15327] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(697), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(699), 1,
anon_sym_LBRACE,
STATE(70), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 00:23:42 +00:00
[15340] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
2023-11-28 22:54:17 +00:00
sym_identifier,
2023-11-30 00:23:42 +00:00
ACTIONS(701), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(328), 1,
aux_sym_identifier_list_repeat1,
[15353] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
ACTIONS(703), 1,
anon_sym_PIPE,
STATE(328), 1,
aux_sym_identifier_list_repeat1,
[15366] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(705), 1,
sym_identifier,
ACTIONS(708), 1,
anon_sym_PIPE,
STATE(328), 1,
aux_sym_identifier_list_repeat1,
[15379] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(697), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(699), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(63), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 00:23:42 +00:00
[15392] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(654), 1,
2023-11-28 22:54:17 +00:00
anon_sym_async,
2023-11-30 00:23:42 +00:00
ACTIONS(656), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
STATE(141), 1,
2023-11-28 22:54:17 +00:00
sym_block,
2023-11-30 00:23:42 +00:00
[15405] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
ACTIONS(710), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(328), 1,
aux_sym_identifier_list_repeat1,
[15418] = 4,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(664), 1,
sym_identifier,
ACTIONS(712), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(331), 1,
aux_sym_identifier_list_repeat1,
[15431] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(185), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 00:23:42 +00:00
[15441] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(206), 1,
sym_identifier_list,
2023-11-30 00:23:42 +00:00
[15451] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(160), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 00:23:42 +00:00
[15461] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(716), 2,
2023-11-28 22:54:17 +00:00
anon_sym_RBRACE,
sym_identifier,
2023-11-30 00:23:42 +00:00
[15469] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(203), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 00:23:42 +00:00
[15479] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(708), 2,
2023-11-28 22:54:17 +00:00
sym_identifier,
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
[15487] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(166), 1,
sym_identifier_list,
[15497] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
anon_sym_PIPE,
STATE(210), 1,
sym_identifier_list,
[15507] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(217), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 00:23:42 +00:00
[15517] = 3,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(714), 1,
2023-11-28 22:54:17 +00:00
anon_sym_PIPE,
2023-11-30 00:23:42 +00:00
STATE(168), 1,
2023-11-28 22:54:17 +00:00
sym_identifier_list,
2023-11-30 00:23:42 +00:00
[15527] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(718), 1,
anon_sym_in,
[15534] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(720), 1,
anon_sym_LPAREN,
[15541] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(722), 1,
sym_identifier,
[15548] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(724), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
[15555] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(726), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
[15562] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(728), 1,
anon_sym_LBRACE,
[15569] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(730), 1,
anon_sym_LBRACE,
[15576] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(732), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LPAREN,
2023-11-30 00:23:42 +00:00
[15583] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(734), 1,
anon_sym_EQ,
[15590] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(736), 1,
2023-11-28 22:54:17 +00:00
anon_sym_in,
2023-11-30 00:23:42 +00:00
[15597] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(738), 1,
2023-11-28 22:54:17 +00:00
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
[15604] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(740), 1,
anon_sym_LBRACE,
2023-11-30 00:23:42 +00:00
[15611] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(742), 1,
sym_identifier,
[15618] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(744), 1,
anon_sym_LBRACE,
[15625] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(746), 1,
2023-11-28 22:54:17 +00:00
sym_string,
2023-11-30 00:23:42 +00:00
[15632] = 2,
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(748), 1,
2023-11-28 22:54:17 +00:00
anon_sym_GT,
2023-11-30 00:23:42 +00:00
[15639] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(750), 1,
anon_sym_LPAREN,
[15646] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(752), 1,
sym_string,
[15653] = 2,
2023-11-28 22:54:17 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-30 00:23:42 +00:00
ACTIONS(754), 1,
ts_builtin_sym_end,
};
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,
[SMALL_STATE(4)] = 202,
[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,
[SMALL_STATE(38)] = 3469,
[SMALL_STATE(39)] = 3564,
[SMALL_STATE(40)] = 3659,
[SMALL_STATE(41)] = 3754,
[SMALL_STATE(42)] = 3845,
[SMALL_STATE(43)] = 3902,
[SMALL_STATE(44)] = 3993,
[SMALL_STATE(45)] = 4088,
[SMALL_STATE(46)] = 4183,
[SMALL_STATE(47)] = 4274,
[SMALL_STATE(48)] = 4369,
[SMALL_STATE(49)] = 4424,
[SMALL_STATE(50)] = 4515,
[SMALL_STATE(51)] = 4582,
[SMALL_STATE(52)] = 4639,
[SMALL_STATE(53)] = 4706,
[SMALL_STATE(54)] = 4797,
[SMALL_STATE(55)] = 4885,
[SMALL_STATE(56)] = 4973,
[SMALL_STATE(57)] = 5039,
[SMALL_STATE(58)] = 5099,
[SMALL_STATE(59)] = 5155,
[SMALL_STATE(60)] = 5221,
[SMALL_STATE(61)] = 5275,
[SMALL_STATE(62)] = 5334,
[SMALL_STATE(63)] = 5383,
[SMALL_STATE(64)] = 5432,
[SMALL_STATE(65)] = 5481,
[SMALL_STATE(66)] = 5530,
[SMALL_STATE(67)] = 5579,
[SMALL_STATE(68)] = 5628,
[SMALL_STATE(69)] = 5677,
[SMALL_STATE(70)] = 5726,
[SMALL_STATE(71)] = 5775,
[SMALL_STATE(72)] = 5824,
[SMALL_STATE(73)] = 5873,
[SMALL_STATE(74)] = 5922,
[SMALL_STATE(75)] = 5971,
[SMALL_STATE(76)] = 6026,
[SMALL_STATE(77)] = 6075,
[SMALL_STATE(78)] = 6124,
[SMALL_STATE(79)] = 6173,
[SMALL_STATE(80)] = 6236,
[SMALL_STATE(81)] = 6301,
[SMALL_STATE(82)] = 6364,
[SMALL_STATE(83)] = 6434,
[SMALL_STATE(84)] = 6504,
[SMALL_STATE(85)] = 6550,
[SMALL_STATE(86)] = 6596,
[SMALL_STATE(87)] = 6640,
[SMALL_STATE(88)] = 6696,
[SMALL_STATE(89)] = 6736,
[SMALL_STATE(90)] = 6792,
[SMALL_STATE(91)] = 6836,
[SMALL_STATE(92)] = 6876,
[SMALL_STATE(93)] = 6921,
[SMALL_STATE(94)] = 6976,
[SMALL_STATE(95)] = 7031,
[SMALL_STATE(96)] = 7074,
[SMALL_STATE(97)] = 7112,
[SMALL_STATE(98)] = 7150,
[SMALL_STATE(99)] = 7188,
[SMALL_STATE(100)] = 7226,
[SMALL_STATE(101)] = 7264,
[SMALL_STATE(102)] = 7302,
[SMALL_STATE(103)] = 7340,
[SMALL_STATE(104)] = 7378,
[SMALL_STATE(105)] = 7416,
[SMALL_STATE(106)] = 7454,
[SMALL_STATE(107)] = 7492,
[SMALL_STATE(108)] = 7530,
[SMALL_STATE(109)] = 7586,
[SMALL_STATE(110)] = 7624,
[SMALL_STATE(111)] = 7662,
[SMALL_STATE(112)] = 7718,
[SMALL_STATE(113)] = 7778,
[SMALL_STATE(114)] = 7838,
[SMALL_STATE(115)] = 7875,
[SMALL_STATE(116)] = 7918,
[SMALL_STATE(117)] = 7961,
[SMALL_STATE(118)] = 7998,
[SMALL_STATE(119)] = 8035,
[SMALL_STATE(120)] = 8093,
[SMALL_STATE(121)] = 8127,
[SMALL_STATE(122)] = 8185,
[SMALL_STATE(123)] = 8219,
[SMALL_STATE(124)] = 8253,
[SMALL_STATE(125)] = 8287,
[SMALL_STATE(126)] = 8345,
[SMALL_STATE(127)] = 8403,
[SMALL_STATE(128)] = 8461,
[SMALL_STATE(129)] = 8519,
[SMALL_STATE(130)] = 8577,
[SMALL_STATE(131)] = 8635,
[SMALL_STATE(132)] = 8693,
[SMALL_STATE(133)] = 8751,
[SMALL_STATE(134)] = 8809,
[SMALL_STATE(135)] = 8843,
[SMALL_STATE(136)] = 8901,
[SMALL_STATE(137)] = 8935,
[SMALL_STATE(138)] = 8969,
[SMALL_STATE(139)] = 9003,
[SMALL_STATE(140)] = 9061,
[SMALL_STATE(141)] = 9095,
[SMALL_STATE(142)] = 9129,
[SMALL_STATE(143)] = 9163,
[SMALL_STATE(144)] = 9201,
[SMALL_STATE(145)] = 9235,
[SMALL_STATE(146)] = 9293,
[SMALL_STATE(147)] = 9327,
[SMALL_STATE(148)] = 9361,
[SMALL_STATE(149)] = 9394,
[SMALL_STATE(150)] = 9433,
[SMALL_STATE(151)] = 9466,
[SMALL_STATE(152)] = 9503,
[SMALL_STATE(153)] = 9540,
[SMALL_STATE(154)] = 9589,
[SMALL_STATE(155)] = 9628,
[SMALL_STATE(156)] = 9677,
[SMALL_STATE(157)] = 9729,
[SMALL_STATE(158)] = 9761,
[SMALL_STATE(159)] = 9813,
[SMALL_STATE(160)] = 9865,
[SMALL_STATE(161)] = 9917,
[SMALL_STATE(162)] = 9969,
[SMALL_STATE(163)] = 10021,
[SMALL_STATE(164)] = 10073,
[SMALL_STATE(165)] = 10125,
[SMALL_STATE(166)] = 10177,
[SMALL_STATE(167)] = 10229,
[SMALL_STATE(168)] = 10281,
[SMALL_STATE(169)] = 10333,
[SMALL_STATE(170)] = 10385,
[SMALL_STATE(171)] = 10437,
[SMALL_STATE(172)] = 10473,
[SMALL_STATE(173)] = 10525,
[SMALL_STATE(174)] = 10577,
[SMALL_STATE(175)] = 10629,
[SMALL_STATE(176)] = 10681,
[SMALL_STATE(177)] = 10729,
[SMALL_STATE(178)] = 10767,
[SMALL_STATE(179)] = 10799,
[SMALL_STATE(180)] = 10851,
[SMALL_STATE(181)] = 10903,
[SMALL_STATE(182)] = 10951,
[SMALL_STATE(183)] = 11003,
[SMALL_STATE(184)] = 11055,
[SMALL_STATE(185)] = 11107,
[SMALL_STATE(186)] = 11159,
[SMALL_STATE(187)] = 11211,
[SMALL_STATE(188)] = 11243,
[SMALL_STATE(189)] = 11295,
[SMALL_STATE(190)] = 11347,
[SMALL_STATE(191)] = 11399,
[SMALL_STATE(192)] = 11451,
[SMALL_STATE(193)] = 11483,
[SMALL_STATE(194)] = 11535,
[SMALL_STATE(195)] = 11587,
[SMALL_STATE(196)] = 11639,
[SMALL_STATE(197)] = 11691,
[SMALL_STATE(198)] = 11743,
[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,
[SMALL_STATE(221)] = 12887,
[SMALL_STATE(222)] = 12924,
[SMALL_STATE(223)] = 12956,
[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,
[SMALL_STATE(238)] = 13409,
[SMALL_STATE(239)] = 13444,
[SMALL_STATE(240)] = 13489,
[SMALL_STATE(241)] = 13532,
[SMALL_STATE(242)] = 13575,
[SMALL_STATE(243)] = 13618,
[SMALL_STATE(244)] = 13651,
[SMALL_STATE(245)] = 13694,
[SMALL_STATE(246)] = 13729,
[SMALL_STATE(247)] = 13775,
[SMALL_STATE(248)] = 13821,
[SMALL_STATE(249)] = 13863,
[SMALL_STATE(250)] = 13897,
[SMALL_STATE(251)] = 13939,
[SMALL_STATE(252)] = 13985,
[SMALL_STATE(253)] = 14031,
[SMALL_STATE(254)] = 14063,
[SMALL_STATE(255)] = 14109,
[SMALL_STATE(256)] = 14155,
[SMALL_STATE(257)] = 14201,
[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,
[SMALL_STATE(265)] = 14440,
[SMALL_STATE(266)] = 14460,
[SMALL_STATE(267)] = 14488,
[SMALL_STATE(268)] = 14516,
[SMALL_STATE(269)] = 14542,
[SMALL_STATE(270)] = 14561,
[SMALL_STATE(271)] = 14580,
[SMALL_STATE(272)] = 14599,
[SMALL_STATE(273)] = 14618,
[SMALL_STATE(274)] = 14634,
[SMALL_STATE(275)] = 14650,
[SMALL_STATE(276)] = 14666,
[SMALL_STATE(277)] = 14682,
[SMALL_STATE(278)] = 14703,
[SMALL_STATE(279)] = 14728,
[SMALL_STATE(280)] = 14749,
[SMALL_STATE(281)] = 14770,
[SMALL_STATE(282)] = 14795,
[SMALL_STATE(283)] = 14816,
[SMALL_STATE(284)] = 14836,
[SMALL_STATE(285)] = 14850,
[SMALL_STATE(286)] = 14864,
[SMALL_STATE(287)] = 14876,
[SMALL_STATE(288)] = 14888,
[SMALL_STATE(289)] = 14898,
[SMALL_STATE(290)] = 14908,
[SMALL_STATE(291)] = 14918,
[SMALL_STATE(292)] = 14928,
[SMALL_STATE(293)] = 14938,
[SMALL_STATE(294)] = 14948,
[SMALL_STATE(295)] = 14958,
[SMALL_STATE(296)] = 14968,
[SMALL_STATE(297)] = 14978,
[SMALL_STATE(298)] = 14988,
[SMALL_STATE(299)] = 14998,
[SMALL_STATE(300)] = 15010,
[SMALL_STATE(301)] = 15023,
[SMALL_STATE(302)] = 15036,
[SMALL_STATE(303)] = 15045,
[SMALL_STATE(304)] = 15056,
[SMALL_STATE(305)] = 15069,
[SMALL_STATE(306)] = 15082,
[SMALL_STATE(307)] = 15095,
[SMALL_STATE(308)] = 15108,
[SMALL_STATE(309)] = 15121,
[SMALL_STATE(310)] = 15134,
[SMALL_STATE(311)] = 15147,
[SMALL_STATE(312)] = 15160,
[SMALL_STATE(313)] = 15173,
[SMALL_STATE(314)] = 15186,
[SMALL_STATE(315)] = 15199,
[SMALL_STATE(316)] = 15212,
[SMALL_STATE(317)] = 15225,
[SMALL_STATE(318)] = 15238,
[SMALL_STATE(319)] = 15251,
[SMALL_STATE(320)] = 15264,
[SMALL_STATE(321)] = 15277,
[SMALL_STATE(322)] = 15290,
[SMALL_STATE(323)] = 15303,
[SMALL_STATE(324)] = 15314,
[SMALL_STATE(325)] = 15327,
[SMALL_STATE(326)] = 15340,
[SMALL_STATE(327)] = 15353,
[SMALL_STATE(328)] = 15366,
[SMALL_STATE(329)] = 15379,
[SMALL_STATE(330)] = 15392,
[SMALL_STATE(331)] = 15405,
[SMALL_STATE(332)] = 15418,
[SMALL_STATE(333)] = 15431,
[SMALL_STATE(334)] = 15441,
[SMALL_STATE(335)] = 15451,
[SMALL_STATE(336)] = 15461,
[SMALL_STATE(337)] = 15469,
[SMALL_STATE(338)] = 15479,
[SMALL_STATE(339)] = 15487,
[SMALL_STATE(340)] = 15497,
[SMALL_STATE(341)] = 15507,
[SMALL_STATE(342)] = 15517,
[SMALL_STATE(343)] = 15527,
[SMALL_STATE(344)] = 15534,
[SMALL_STATE(345)] = 15541,
[SMALL_STATE(346)] = 15548,
[SMALL_STATE(347)] = 15555,
[SMALL_STATE(348)] = 15562,
[SMALL_STATE(349)] = 15569,
[SMALL_STATE(350)] = 15576,
[SMALL_STATE(351)] = 15583,
[SMALL_STATE(352)] = 15590,
[SMALL_STATE(353)] = 15597,
[SMALL_STATE(354)] = 15604,
[SMALL_STATE(355)] = 15611,
[SMALL_STATE(356)] = 15618,
[SMALL_STATE(357)] = 15625,
[SMALL_STATE(358)] = 15632,
[SMALL_STATE(359)] = 15639,
[SMALL_STATE(360)] = 15646,
[SMALL_STATE(361)] = 15653,
};
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 00:23:42 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354),
2023-11-28 22:54:17 +00:00
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
2023-11-30 00:23:42 +00:00
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(57),
[48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(354),
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(186),
[57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(77),
[60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(77),
[63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(64),
[66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(139),
[69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(188),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(191),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(193),
[78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(355),
[81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(355),
[84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(319),
[87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(339),
[90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(195),
[93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(357),
[96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
[134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356),
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147),
[146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190),
[150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200),
[152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218),
[154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345),
[156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
[158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333),
[162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197),
[164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360),
[166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271),
[188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
[190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272),
[192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308),
[194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
2023-11-28 22:54:17 +00:00
[206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
2023-11-30 00:23:42 +00:00
[210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3),
[226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3),
[228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
[236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340),
[238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[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),
[246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
[248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3),
[286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3),
[288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(144),
[337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(312),
[342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(196),
[345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146),
[348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146),
[351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(147),
[354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(129),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(314),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(340),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(102),
[406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(313),
[409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(179),
[412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(106),
[415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(106),
[418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104),
[421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(121),
[424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(308),
[429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(342),
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(102),
[451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(313),
[454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(179),
[457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(106),
[462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(106),
[465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104),
[468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(121),
[471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(308),
[474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(342),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(156),
[486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
[494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335),
[496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334),
[498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
[500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341),
[504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337),
[506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117),
[510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118),
[512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1),
[524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1),
[526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[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),
[558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[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),
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(274),
[617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(266),
[620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(277),
[623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3),
[625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3),
[627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2),
[629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2),
[631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
[647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(214),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(351),
[673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(323),
[708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
[714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343),
[724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
[744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[754] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
};
#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