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

19101 lines
427 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
#define STATE_COUNT 420
2023-11-15 00:22:26 +00:00
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 125
#define ALIAS_COUNT 0
#define TOKEN_COUNT 83
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 2
#define MAX_ALIAS_SEQUENCE_LENGTH 5
#define PRODUCTION_ID_COUNT 3
enum {
sym_identifier = 1,
2023-11-04 10:02:27 +00:00
sym__comment = 2,
2023-11-12 18:20:41 +00:00
anon_sym_async = 3,
anon_sym_LBRACE = 4,
anon_sym_RBRACE = 5,
anon_sym_SEMI = 6,
anon_sym_return = 7,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN = 8,
anon_sym_RPAREN = 9,
anon_sym_COMMA = 10,
sym_integer = 11,
sym_float = 12,
sym_string = 13,
anon_sym_true = 14,
anon_sym_false = 15,
anon_sym_LBRACK = 16,
anon_sym_RBRACK = 17,
anon_sym_EQ = 18,
anon_sym_COLON = 19,
anon_sym_DOT_DOT = 20,
anon_sym_PLUS = 21,
anon_sym_DASH = 22,
anon_sym_STAR = 23,
anon_sym_SLASH = 24,
anon_sym_PERCENT = 25,
anon_sym_EQ_EQ = 26,
anon_sym_BANG_EQ = 27,
anon_sym_AMP_AMP = 28,
anon_sym_PIPE_PIPE = 29,
anon_sym_GT = 30,
anon_sym_LT = 31,
anon_sym_GT_EQ = 32,
anon_sym_LT_EQ = 33,
anon_sym_PLUS_EQ = 34,
anon_sym_DASH_EQ = 35,
anon_sym_if = 36,
anon_sym_elseif = 37,
anon_sym_else = 38,
anon_sym_match = 39,
anon_sym_EQ_GT = 40,
anon_sym_while = 41,
anon_sym_for = 42,
anon_sym_asyncfor = 43,
anon_sym_in = 44,
anon_sym_select = 45,
anon_sym_from = 46,
anon_sym_insert = 47,
anon_sym_into = 48,
anon_sym_PIPE = 49,
anon_sym_table = 50,
anon_sym_DASH_GT = 51,
anon_sym_assert = 52,
anon_sym_assert_equal = 53,
anon_sym_context = 54,
anon_sym_download = 55,
anon_sym_help = 56,
anon_sym_length = 57,
anon_sym_output = 58,
anon_sym_output_error = 59,
anon_sym_type = 60,
anon_sym_append = 61,
anon_sym_metadata = 62,
anon_sym_move = 63,
anon_sym_read = 64,
anon_sym_workdir = 65,
anon_sym_write = 66,
anon_sym_from_json = 67,
anon_sym_to_json = 68,
anon_sym_to_string = 69,
anon_sym_to_float = 70,
anon_sym_bash = 71,
anon_sym_fish = 72,
anon_sym_raw = 73,
anon_sym_sh = 74,
anon_sym_zsh = 75,
anon_sym_random = 76,
anon_sym_random_boolean = 77,
anon_sym_random_float = 78,
anon_sym_random_integer = 79,
anon_sym_columns = 80,
anon_sym_rows = 81,
anon_sym_reverse = 82,
sym_root = 83,
sym_block = 84,
sym_statement = 85,
sym_return = 86,
sym_expression = 87,
sym__expression_kind = 88,
aux_sym__expression_list = 89,
sym_value = 90,
sym_boolean = 91,
sym_list = 92,
sym_map = 93,
sym_index = 94,
sym_math = 95,
sym_math_operator = 96,
sym_logic = 97,
sym_logic_operator = 98,
sym_assignment = 99,
sym_index_assignment = 100,
sym_assignment_operator = 101,
sym_if_else = 102,
sym_if = 103,
sym_else_if = 104,
sym_else = 105,
sym_match = 106,
sym_while = 107,
sym_for = 108,
sym_select = 109,
sym_insert = 110,
sym_identifier_list = 111,
sym_table = 112,
sym_function = 113,
sym_function_call = 114,
sym__context_defined_function = 115,
sym_built_in_function = 116,
sym_yield = 117,
sym__built_in_function_name = 118,
aux_sym_root_repeat1 = 119,
aux_sym_list_repeat1 = 120,
aux_sym_map_repeat1 = 121,
aux_sym_if_else_repeat1 = 122,
aux_sym_match_repeat1 = 123,
aux_sym_identifier_list_repeat1 = 124,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
2023-11-04 10:02:27 +00:00
[sym__comment] = "_comment",
2023-11-12 18:20:41 +00:00
[anon_sym_async] = "async",
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
2023-10-31 20:25:13 +00:00
[anon_sym_SEMI] = ";",
[anon_sym_return] = "return",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
2023-10-31 20:25:13 +00:00
[anon_sym_COMMA] = ",",
2023-10-31 19:21:13 +00:00
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = "=",
[anon_sym_COLON] = ":",
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = "..",
2023-10-31 13:31:10 +00:00
[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] = "||",
2023-10-31 22:18:39 +00:00
[anon_sym_GT] = ">",
[anon_sym_LT] = "<",
2023-10-31 13:31:10 +00:00
[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",
2023-10-31 05:09:29 +00:00
[anon_sym_match] = "match",
[anon_sym_EQ_GT] = "=>",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
2023-11-04 10:02:27 +00:00
[anon_sym_asyncfor] = "async for",
[anon_sym_in] = "in",
2023-10-31 05:09:29 +00:00
[anon_sym_select] = "select",
[anon_sym_from] = "from",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
2023-10-31 22:18:39 +00:00
[anon_sym_PIPE] = "|",
[anon_sym_table] = "table",
[anon_sym_DASH_GT] = "->",
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = "assert",
2023-10-21 17:19:01 +00:00
[anon_sym_assert_equal] = "assert_equal",
2023-11-10 21:24:19 +00:00
[anon_sym_context] = "context",
2023-10-22 20:50:09 +00:00
[anon_sym_download] = "download",
2023-10-21 20:38:20 +00:00
[anon_sym_help] = "help",
2023-10-21 17:19:01 +00:00
[anon_sym_length] = "length",
2023-10-21 20:38:20 +00:00
[anon_sym_output] = "output",
[anon_sym_output_error] = "output_error",
2023-10-22 18:27:18 +00:00
[anon_sym_type] = "type",
2023-10-21 20:38:20 +00:00
[anon_sym_append] = "append",
[anon_sym_metadata] = "metadata",
[anon_sym_move] = "move",
2023-10-21 17:19:01 +00:00
[anon_sym_read] = "read",
2023-10-31 19:21:13 +00:00
[anon_sym_workdir] = "workdir",
2023-10-21 17:19:01 +00:00
[anon_sym_write] = "write",
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = "from_json",
[anon_sym_to_json] = "to_json",
[anon_sym_to_string] = "to_string",
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = "to_float",
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = "bash",
[anon_sym_fish] = "fish",
[anon_sym_raw] = "raw",
[anon_sym_sh] = "sh",
[anon_sym_zsh] = "zsh",
2023-10-22 18:48:34 +00:00
[anon_sym_random] = "random",
[anon_sym_random_boolean] = "random_boolean",
[anon_sym_random_float] = "random_float",
[anon_sym_random_integer] = "random_integer",
2023-10-22 20:32:55 +00:00
[anon_sym_columns] = "columns",
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = "rows",
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = "reverse",
[sym_root] = "root",
2023-10-31 13:31:10 +00:00
[sym_block] = "block",
[sym_statement] = "statement",
[sym_return] = "return",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
2023-10-31 20:25:13 +00:00
[aux_sym__expression_list] = "_expression_list",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
2023-10-29 23:31:06 +00:00
[sym_map] = "map",
[sym_index] = "index",
[sym_math] = "math",
2023-10-31 13:31:10 +00:00
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
2023-10-31 13:31:10 +00:00
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
2023-11-15 01:41:57 +00:00
[sym_index_assignment] = "index_assignment",
2023-10-31 13:31:10 +00:00
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
2023-10-31 05:09:29 +00:00
[sym_match] = "match",
[sym_while] = "while",
[sym_for] = "for",
[sym_select] = "select",
[sym_insert] = "insert",
2023-10-31 22:18:39 +00:00
[sym_identifier_list] = "identifier_list",
[sym_table] = "table",
2023-10-31 19:21:13 +00:00
[sym_function] = "function",
[sym_function_call] = "function_call",
[sym__context_defined_function] = "_context_defined_function",
2023-10-31 17:04:22 +00:00
[sym_built_in_function] = "built_in_function",
[sym_yield] = "yield",
2023-10-31 19:21:13 +00:00
[sym__built_in_function_name] = "_built_in_function_name",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
2023-10-31 09:51:37 +00:00
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
2023-10-31 05:09:29 +00:00
[aux_sym_match_repeat1] = "match_repeat1",
2023-10-31 22:18:39 +00:00
[aux_sym_identifier_list_repeat1] = "identifier_list_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
2023-11-04 10:02:27 +00:00
[sym__comment] = sym__comment,
2023-11-12 18:20:41 +00:00
[anon_sym_async] = anon_sym_async,
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
2023-10-31 20:25:13 +00:00
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_return] = anon_sym_return,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2023-10-31 20:25:13 +00:00
[anon_sym_COMMA] = anon_sym_COMMA,
2023-10-31 19:21:13 +00:00
[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,
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_COLON] = anon_sym_COLON,
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
2023-10-31 13:31:10 +00:00
[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,
2023-10-31 22:18:39 +00:00
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LT] = anon_sym_LT,
2023-10-31 13:31:10 +00:00
[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,
2023-10-31 05:09:29 +00:00
[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,
2023-11-04 10:02:27 +00:00
[anon_sym_asyncfor] = anon_sym_asyncfor,
[anon_sym_in] = anon_sym_in,
2023-10-31 05:09:29 +00:00
[anon_sym_select] = anon_sym_select,
[anon_sym_from] = anon_sym_from,
[anon_sym_insert] = anon_sym_insert,
[anon_sym_into] = anon_sym_into,
2023-10-31 22:18:39 +00:00
[anon_sym_PIPE] = anon_sym_PIPE,
[anon_sym_table] = anon_sym_table,
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = anon_sym_assert,
2023-10-21 17:19:01 +00:00
[anon_sym_assert_equal] = anon_sym_assert_equal,
2023-11-10 21:24:19 +00:00
[anon_sym_context] = anon_sym_context,
2023-10-22 20:50:09 +00:00
[anon_sym_download] = anon_sym_download,
2023-10-21 20:38:20 +00:00
[anon_sym_help] = anon_sym_help,
2023-10-21 17:19:01 +00:00
[anon_sym_length] = anon_sym_length,
2023-10-21 20:38:20 +00:00
[anon_sym_output] = anon_sym_output,
[anon_sym_output_error] = anon_sym_output_error,
2023-10-22 18:27:18 +00:00
[anon_sym_type] = anon_sym_type,
2023-10-21 20:38:20 +00:00
[anon_sym_append] = anon_sym_append,
[anon_sym_metadata] = anon_sym_metadata,
[anon_sym_move] = anon_sym_move,
2023-10-21 17:19:01 +00:00
[anon_sym_read] = anon_sym_read,
2023-10-31 19:21:13 +00:00
[anon_sym_workdir] = anon_sym_workdir,
2023-10-21 17:19:01 +00:00
[anon_sym_write] = anon_sym_write,
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = anon_sym_from_json,
[anon_sym_to_json] = anon_sym_to_json,
[anon_sym_to_string] = anon_sym_to_string,
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = anon_sym_to_float,
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = anon_sym_bash,
[anon_sym_fish] = anon_sym_fish,
[anon_sym_raw] = anon_sym_raw,
[anon_sym_sh] = anon_sym_sh,
[anon_sym_zsh] = anon_sym_zsh,
2023-10-22 18:48:34 +00:00
[anon_sym_random] = anon_sym_random,
[anon_sym_random_boolean] = anon_sym_random_boolean,
[anon_sym_random_float] = anon_sym_random_float,
[anon_sym_random_integer] = anon_sym_random_integer,
2023-10-22 20:32:55 +00:00
[anon_sym_columns] = anon_sym_columns,
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = anon_sym_rows,
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = anon_sym_reverse,
[sym_root] = sym_root,
2023-10-31 13:31:10 +00:00
[sym_block] = sym_block,
[sym_statement] = sym_statement,
[sym_return] = sym_return,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
2023-10-31 20:25:13 +00:00
[aux_sym__expression_list] = aux_sym__expression_list,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
2023-10-29 23:31:06 +00:00
[sym_map] = sym_map,
[sym_index] = sym_index,
[sym_math] = sym_math,
2023-10-31 13:31:10 +00:00
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
2023-10-31 13:31:10 +00:00
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
2023-11-15 01:41:57 +00:00
[sym_index_assignment] = sym_index_assignment,
2023-10-31 13:31:10 +00:00
[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,
2023-10-31 05:09:29 +00:00
[sym_match] = sym_match,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
2023-10-31 22:18:39 +00:00
[sym_identifier_list] = sym_identifier_list,
[sym_table] = sym_table,
2023-10-31 19:21:13 +00:00
[sym_function] = sym_function,
[sym_function_call] = sym_function_call,
[sym__context_defined_function] = sym__context_defined_function,
2023-10-31 17:04:22 +00:00
[sym_built_in_function] = sym_built_in_function,
[sym_yield] = sym_yield,
2023-10-31 19:21:13 +00:00
[sym__built_in_function_name] = sym__built_in_function_name,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
2023-10-31 09:51:37 +00:00
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
2023-10-31 05:09:29 +00:00
[aux_sym_match_repeat1] = aux_sym_match_repeat1,
2023-10-31 22:18:39 +00:00
[aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
2023-11-04 10:02:27 +00:00
[sym__comment] = {
.visible = false,
2023-10-31 07:17:58 +00:00
.named = true,
},
2023-11-12 18:20:41 +00:00
[anon_sym_async] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
2023-10-31 20:25:13 +00:00
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_return] = {
2023-11-15 03:26:32 +00:00
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2023-10-31 20:25:13 +00:00
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
2023-10-31 19:21:13 +00:00
[sym_integer] = {
.visible = true,
.named = true,
2023-10-29 23:31:06 +00:00
},
2023-10-31 19:21:13 +00:00
[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,
},
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = {
2023-10-31 05:09:29 +00:00
.visible = true,
2023-10-31 13:31:10 +00:00
.named = false,
2023-10-31 05:09:29 +00:00
},
2023-10-31 13:31:10 +00:00
[anon_sym_DASH] = {
.visible = true,
2023-10-31 13:31:10 +00:00
.named = false,
},
2023-10-31 13:31:10 +00:00
[anon_sym_STAR] = {
.visible = true,
2023-10-31 13:31:10 +00:00
.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,
},
2023-10-31 22:18:39 +00:00
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
2023-10-31 13:31:10 +00:00
[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,
},
2023-10-31 05:09:29 +00:00
[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,
},
2023-11-04 10:02:27 +00:00
[anon_sym_asyncfor] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_select] = {
2023-10-19 01:50:45 +00:00
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_from] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_insert] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_into] = {
.visible = true,
.named = false,
},
2023-10-31 22:18:39 +00:00
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
2023-10-31 19:21:13 +00:00
.visible = true,
.named = false,
},
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_assert] = {
.visible = true,
.named = false,
},
[anon_sym_assert_equal] = {
.visible = true,
.named = false,
},
2023-11-10 21:24:19 +00:00
[anon_sym_context] = {
.visible = true,
.named = false,
},
2023-10-22 20:50:09 +00:00
[anon_sym_download] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_help] = {
.visible = true,
.named = false,
},
[anon_sym_length] = {
.visible = true,
.named = false,
},
2023-10-21 17:19:01 +00:00
[anon_sym_output] = {
.visible = true,
.named = false,
},
[anon_sym_output_error] = {
.visible = true,
.named = false,
},
2023-10-22 18:27:18 +00:00
[anon_sym_type] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_append] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_metadata] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_move] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = false,
},
[anon_sym_read] = {
.visible = true,
.named = false,
},
2023-10-31 19:21:13 +00:00
[anon_sym_workdir] = {
.visible = true,
.named = false,
},
2023-10-21 17:19:01 +00:00
[anon_sym_write] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = {
.visible = true,
.named = false,
},
[anon_sym_to_json] = {
.visible = true,
.named = false,
},
[anon_sym_to_string] = {
.visible = true,
.named = false,
},
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = {
.visible = true,
.named = false,
},
[anon_sym_fish] = {
.visible = true,
.named = false,
},
[anon_sym_raw] = {
.visible = true,
.named = false,
},
[anon_sym_sh] = {
.visible = true,
.named = false,
},
[anon_sym_zsh] = {
.visible = true,
.named = false,
},
2023-10-22 18:48:34 +00:00
[anon_sym_random] = {
.visible = true,
.named = false,
},
[anon_sym_random_boolean] = {
.visible = true,
.named = false,
},
[anon_sym_random_float] = {
.visible = true,
.named = false,
},
[anon_sym_random_integer] = {
.visible = true,
.named = false,
},
2023-10-22 20:41:37 +00:00
[anon_sym_columns] = {
2023-10-22 20:32:55 +00:00
.visible = true,
.named = false,
},
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = {
2023-10-22 20:32:55 +00:00
.visible = true,
.named = false,
},
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_block] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_return] = {
2023-11-15 03:26:32 +00:00
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
2023-10-31 20:25:13 +00:00
[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,
},
2023-10-29 23:31:06 +00:00
[sym_map] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_index] = {
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
2023-11-15 01:41:57 +00:00
[sym_index_assignment] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[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,
},
2023-10-31 05:09:29 +00:00
[sym_match] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
2023-10-31 22:18:39 +00:00
[sym_identifier_list] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
2023-10-31 19:21:13 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym__context_defined_function] = {
.visible = false,
.named = true,
},
2023-10-31 17:04:22 +00:00
[sym_built_in_function] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = true,
},
[sym_yield] = {
.visible = true,
.named = true,
},
2023-10-31 19:21:13 +00:00
[sym__built_in_function_name] = {
.visible = false,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 09:51:37 +00:00
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 05:09:29 +00:00
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 19:21:13 +00:00
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 22:18:39 +00:00
[aux_sym_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
};
2023-10-31 05:09:29 +00:00
enum {
2023-10-31 22:18:39 +00:00
field_body = 1,
field_parameters = 2,
2023-10-31 05:09:29 +00:00
};
static const char * const ts_field_names[] = {
[0] = NULL,
2023-10-31 22:18:39 +00:00
[field_body] = "body",
[field_parameters] = "parameters",
2023-10-31 05:09:29 +00:00
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
2023-10-31 22:18:39 +00:00
[1] = {.index = 0, .length = 1},
[2] = {.index = 1, .length = 2},
2023-10-31 05:09:29 +00:00
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
2023-10-31 22:18:39 +00:00
{field_body, 1},
[1] =
{field_body, 2},
{field_parameters, 0},
2023-10-31 05:09:29 +00:00
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
2023-11-15 00:22:26 +00:00
[3] = 2,
[4] = 2,
2023-11-15 01:00:57 +00:00
[5] = 2,
[6] = 2,
2023-11-11 01:44:03 +00:00
[7] = 7,
2023-11-16 02:35:40 +00:00
[8] = 8,
[9] = 9,
[10] = 8,
[11] = 9,
[12] = 8,
[13] = 9,
[14] = 8,
[15] = 9,
[16] = 8,
[17] = 9,
[18] = 9,
[19] = 9,
[20] = 8,
[21] = 9,
[22] = 8,
[23] = 8,
[24] = 8,
[25] = 9,
[26] = 26,
2023-11-16 02:35:40 +00:00
[27] = 27,
[28] = 28,
[29] = 27,
[30] = 28,
[31] = 27,
[32] = 28,
[33] = 27,
[34] = 27,
[35] = 28,
[36] = 28,
[37] = 28,
[38] = 27,
[39] = 27,
[40] = 27,
[41] = 28,
[42] = 28,
[43] = 27,
[44] = 28,
[45] = 45,
[46] = 45,
2023-11-15 00:22:26 +00:00
[47] = 47,
[48] = 48,
[49] = 48,
[50] = 50,
2023-11-16 02:35:40 +00:00
[51] = 51,
[52] = 52,
2023-11-12 18:20:41 +00:00
[53] = 53,
[54] = 53,
2023-11-15 03:26:32 +00:00
[55] = 55,
[56] = 51,
[57] = 55,
[58] = 50,
[59] = 52,
[60] = 60,
[61] = 61,
[62] = 62,
2023-11-15 00:22:26 +00:00
[63] = 63,
2023-11-14 23:56:44 +00:00
[64] = 64,
2023-11-15 00:22:26 +00:00
[65] = 65,
[66] = 66,
[67] = 67,
[68] = 62,
2023-11-15 00:22:26 +00:00
[69] = 69,
[70] = 70,
2023-11-12 18:20:41 +00:00
[71] = 71,
2023-11-15 01:00:57 +00:00
[72] = 72,
2023-11-12 18:20:41 +00:00
[73] = 73,
[74] = 74,
2023-11-15 01:41:57 +00:00
[75] = 75,
2023-11-15 01:00:57 +00:00
[76] = 76,
2023-11-15 01:41:57 +00:00
[77] = 77,
[78] = 78,
[79] = 53,
[80] = 50,
[81] = 52,
[82] = 82,
[83] = 55,
[84] = 51,
[85] = 53,
[86] = 86,
[87] = 52,
2023-11-16 02:35:40 +00:00
[88] = 88,
[89] = 88,
[90] = 90,
[91] = 51,
[92] = 55,
[93] = 50,
[94] = 78,
[95] = 69,
[96] = 64,
2023-11-16 02:35:40 +00:00
[97] = 63,
[98] = 76,
[99] = 70,
[100] = 61,
[101] = 72,
[102] = 75,
[103] = 74,
[104] = 66,
[105] = 73,
[106] = 67,
[107] = 71,
[108] = 108,
[109] = 109,
2023-11-15 01:41:57 +00:00
[110] = 110,
[111] = 110,
[112] = 110,
[113] = 110,
[114] = 110,
[115] = 51,
[116] = 55,
[117] = 52,
2023-11-16 02:35:40 +00:00
[118] = 53,
[119] = 53,
[120] = 50,
[121] = 50,
2023-11-16 02:35:40 +00:00
[122] = 55,
[123] = 52,
[124] = 51,
2023-11-16 02:35:40 +00:00
[125] = 125,
[126] = 71,
[127] = 74,
[128] = 64,
[129] = 76,
[130] = 63,
[131] = 73,
[132] = 70,
[133] = 75,
[134] = 67,
[135] = 66,
[136] = 136,
[137] = 69,
[138] = 78,
[139] = 61,
[140] = 72,
[141] = 108,
[142] = 142,
[143] = 109,
[144] = 144,
[145] = 145,
2023-11-16 02:35:40 +00:00
[146] = 146,
[147] = 147,
[148] = 148,
[149] = 147,
[150] = 146,
[151] = 147,
[152] = 152,
[153] = 153,
2023-11-15 01:00:57 +00:00
[154] = 154,
[155] = 146,
[156] = 146,
2023-11-15 03:26:32 +00:00
[157] = 157,
[158] = 147,
[159] = 146,
2023-11-15 01:00:57 +00:00
[160] = 160,
[161] = 147,
2023-11-15 01:41:57 +00:00
[162] = 162,
[163] = 76,
[164] = 71,
[165] = 165,
[166] = 166,
2023-11-16 02:35:40 +00:00
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 171,
[172] = 167,
[173] = 173,
[174] = 174,
[175] = 167,
[176] = 176,
[177] = 50,
[178] = 178,
[179] = 51,
[180] = 55,
2023-11-15 01:41:57 +00:00
[181] = 181,
[182] = 167,
[183] = 166,
[184] = 166,
[185] = 181,
[186] = 174,
[187] = 52,
2023-11-16 02:35:40 +00:00
[188] = 167,
[189] = 174,
[190] = 174,
[191] = 53,
[192] = 181,
[193] = 166,
[194] = 176,
[195] = 167,
[196] = 174,
[197] = 176,
[198] = 167,
[199] = 181,
[200] = 174,
[201] = 166,
[202] = 181,
[203] = 167,
[204] = 166,
[205] = 174,
[206] = 166,
[207] = 181,
[208] = 174,
[209] = 181,
[210] = 166,
[211] = 52,
[212] = 166,
[213] = 181,
[214] = 176,
[215] = 167,
[216] = 181,
[217] = 171,
[218] = 167,
[219] = 173,
[220] = 176,
[221] = 178,
[222] = 174,
[223] = 223,
[224] = 223,
[225] = 225,
[226] = 170,
[227] = 53,
[228] = 166,
[229] = 181,
[230] = 174,
[231] = 225,
[232] = 168,
[233] = 53,
[234] = 53,
[235] = 169,
[236] = 55,
[237] = 50,
[238] = 51,
[239] = 76,
[240] = 55,
[241] = 241,
[242] = 52,
[243] = 243,
[244] = 55,
[245] = 245,
[246] = 52,
[247] = 51,
[248] = 50,
[249] = 249,
[250] = 51,
[251] = 243,
[252] = 50,
[253] = 253,
[254] = 71,
[255] = 255,
[256] = 256,
2023-11-16 02:35:40 +00:00
[257] = 257,
[258] = 258,
[259] = 259,
[260] = 260,
[261] = 82,
[262] = 78,
[263] = 66,
[264] = 72,
[265] = 74,
[266] = 70,
[267] = 78,
[268] = 64,
[269] = 72,
[270] = 74,
[271] = 61,
[272] = 61,
[273] = 73,
[274] = 65,
[275] = 64,
[276] = 63,
[277] = 76,
[278] = 70,
[279] = 75,
[280] = 67,
[281] = 77,
[282] = 75,
[283] = 73,
[284] = 63,
[285] = 69,
[286] = 71,
[287] = 69,
[288] = 66,
[289] = 67,
2023-11-16 02:35:40 +00:00
[290] = 76,
[291] = 71,
[292] = 292,
[293] = 88,
[294] = 88,
[295] = 86,
[296] = 90,
[297] = 297,
[298] = 298,
[299] = 299,
[300] = 297,
[301] = 301,
[302] = 301,
[303] = 298,
[304] = 299,
[305] = 305,
[306] = 305,
[307] = 307,
[308] = 308,
[309] = 308,
[310] = 308,
[311] = 308,
[312] = 308,
[313] = 258,
[314] = 71,
[315] = 76,
[316] = 316,
2023-11-15 03:26:32 +00:00
[317] = 317,
[318] = 318,
[319] = 319,
2023-11-15 01:00:57 +00:00
[320] = 320,
[321] = 321,
[322] = 142,
[323] = 144,
[324] = 145,
[325] = 71,
[326] = 76,
[327] = 162,
[328] = 165,
[329] = 245,
[330] = 260,
[331] = 253,
[332] = 257,
[333] = 241,
[334] = 256,
[335] = 243,
[336] = 243,
[337] = 255,
[338] = 259,
[339] = 249,
[340] = 340,
2023-11-15 01:41:57 +00:00
[341] = 341,
[342] = 342,
2023-11-16 02:35:40 +00:00
[343] = 343,
2023-11-15 01:41:57 +00:00
[344] = 344,
[345] = 343,
[346] = 346,
[347] = 347,
[348] = 348,
[349] = 342,
[350] = 347,
[351] = 351,
[352] = 343,
[353] = 351,
[354] = 343,
2023-11-15 03:26:32 +00:00
[355] = 355,
[356] = 351,
2023-11-15 03:26:32 +00:00
[357] = 357,
[358] = 347,
[359] = 341,
[360] = 347,
[361] = 343,
[362] = 351,
[363] = 351,
[364] = 347,
[365] = 365,
[366] = 365,
[367] = 365,
[368] = 365,
[369] = 369,
[370] = 365,
[371] = 365,
[372] = 372,
[373] = 365,
[374] = 374,
[375] = 365,
[376] = 365,
[377] = 365,
[378] = 372,
[379] = 379,
[380] = 380,
[381] = 379,
[382] = 379,
2023-11-15 03:26:32 +00:00
[383] = 383,
2023-11-15 01:41:57 +00:00
[384] = 384,
[385] = 385,
2023-11-15 03:26:32 +00:00
[386] = 386,
[387] = 387,
[388] = 383,
[389] = 385,
[390] = 387,
2023-11-16 02:35:40 +00:00
[391] = 391,
[392] = 392,
[393] = 391,
[394] = 386,
[395] = 379,
[396] = 387,
[397] = 379,
[398] = 398,
[399] = 399,
[400] = 392,
[401] = 399,
[402] = 387,
[403] = 403,
[404] = 384,
[405] = 384,
[406] = 384,
2023-11-16 02:35:40 +00:00
[407] = 384,
[408] = 385,
[409] = 383,
[410] = 385,
[411] = 383,
[412] = 385,
[413] = 383,
[414] = 385,
[415] = 385,
[416] = 385,
[417] = 385,
[418] = 403,
[419] = 387,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-11-11 01:44:03 +00:00
if (eof) ADVANCE(27);
2023-11-05 18:54:29 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
if (lookahead == ')') ADVANCE(34);
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(58);
if (lookahead == ',') ADVANCE(35);
if (lookahead == '-') ADVANCE(61);
2023-11-05 18:54:29 +00:00
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(53);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(50);
if (lookahead == ']') ADVANCE(51);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(43);
if (lookahead == 'e') ADVANCE(41);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(80);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-31 05:09:29 +00:00
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 1:
2023-11-05 18:54:29 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
if (lookahead == ')') ADVANCE(34);
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(35);
if (lookahead == '-') ADVANCE(62);
2023-11-15 00:22:26 +00:00
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ':') ADVANCE(55);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(53);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(50);
if (lookahead == ']') ADVANCE(51);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
if (lookahead == '|') ADVANCE(80);
2023-10-31 09:51:37 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 2:
2023-11-05 18:54:29 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == ')') ADVANCE(34);
if (lookahead == '*') ADVANCE(63);
2023-11-15 03:26:32 +00:00
if (lookahead == '+') ADVANCE(58);
if (lookahead == ',') ADVANCE(35);
if (lookahead == '-') ADVANCE(59);
2023-11-14 23:56:44 +00:00
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(52);
if (lookahead == '>') ADVANCE(70);
2023-11-15 00:22:26 +00:00
if (lookahead == '|') ADVANCE(20);
2023-11-04 10:02:27 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-15 00:22:26 +00:00
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 3:
2023-11-05 18:54:29 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == ')') ADVANCE(34);
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(35);
2023-11-15 00:22:26 +00:00
if (lookahead == '-') ADVANCE(60);
2023-11-15 01:00:57 +00:00
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(11);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '{') ADVANCE(30);
2023-11-05 18:54:29 +00:00
if (lookahead == '|') ADVANCE(20);
2023-11-04 10:02:27 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 4:
2023-11-05 18:54:29 +00:00
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
if (lookahead == ')') ADVANCE(34);
if (lookahead == ',') ADVANCE(35);
2023-11-05 18:54:29 +00:00
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
2023-11-05 18:54:29 +00:00
if (lookahead == '=') ADVANCE(12);
if (lookahead == '[') ADVANCE(50);
if (lookahead == ']') ADVANCE(51);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(79);
2023-11-04 10:02:27 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(49);
2023-11-05 18:54:29 +00:00
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
2023-11-05 18:54:29 +00:00
if (lookahead == '#') ADVANCE(19);
if (lookahead == ')') ADVANCE(34);
if (lookahead == ',') ADVANCE(35);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == 'e') ADVANCE(41);
2023-11-04 10:02:27 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-05 18:54:29 +00:00
lookahead == ' ') SKIP(6)
2023-11-04 10:02:27 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-05 18:54:29 +00:00
END_STATE();
case 7:
if (lookahead == '&') ADVANCE(68);
END_STATE();
case 8:
if (lookahead == '\'') ADVANCE(49);
2023-11-05 18:54:29 +00:00
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == '.') ADVANCE(56);
END_STATE();
case 10:
if (lookahead == '=') ADVANCE(67);
END_STATE();
case 11:
if (lookahead == '=') ADVANCE(66);
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 12:
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 13:
if (lookahead == '`') ADVANCE(49);
2023-11-05 18:54:29 +00:00
if (lookahead != 0) ADVANCE(13);
END_STATE();
case 14:
2023-11-05 18:54:29 +00:00
if (lookahead == 'f') ADVANCE(17);
2023-10-31 22:18:39 +00:00
END_STATE();
case 15:
if (lookahead == 'f') ADVANCE(76);
2023-10-31 22:18:39 +00:00
END_STATE();
case 16:
2023-11-05 18:54:29 +00:00
if (lookahead == 'i') ADVANCE(15);
2023-11-04 10:02:27 +00:00
END_STATE();
case 17:
2023-11-05 18:54:29 +00:00
if (lookahead == 'o') ADVANCE(18);
2023-11-04 10:02:27 +00:00
END_STATE();
case 18:
if (lookahead == 'r') ADVANCE(78);
2023-11-04 10:02:27 +00:00
END_STATE();
case 19:
2023-11-11 01:44:03 +00:00
if (lookahead == '|') ADVANCE(29);
2023-11-05 18:54:29 +00:00
if (lookahead == '\n' ||
2023-11-11 01:44:03 +00:00
lookahead == '#') ADVANCE(28);
2023-11-05 18:54:29 +00:00
if (lookahead != 0) ADVANCE(19);
2023-11-04 10:02:27 +00:00
END_STATE();
case 20:
if (lookahead == '|') ADVANCE(69);
2023-11-04 10:02:27 +00:00
END_STATE();
case 21:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-04 10:02:27 +00:00
END_STATE();
case 22:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
2023-11-04 10:02:27 +00:00
END_STATE();
case 23:
2023-11-11 01:44:03 +00:00
if (eof) ADVANCE(27);
2023-11-05 18:54:29 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(58);
if (lookahead == '-') ADVANCE(61);
2023-11-15 01:00:57 +00:00
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(53);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(43);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(80);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
2023-11-05 18:54:29 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(23)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 24:
2023-11-11 01:44:03 +00:00
if (eof) ADVANCE(27);
2023-11-05 18:54:29 +00:00
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(62);
2023-11-05 18:54:29 +00:00
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(71);
2023-11-05 18:54:29 +00:00
if (lookahead == '=') ADVANCE(11);
if (lookahead == '>') ADVANCE(70);
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(43);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(80);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
2023-10-31 07:17:58 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-04 10:02:27 +00:00
lookahead == ' ') SKIP(24)
2023-10-31 07:17:58 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
2023-11-04 10:02:27 +00:00
case 25:
2023-11-11 01:44:03 +00:00
if (eof) ADVANCE(27);
2023-11-05 18:54:29 +00:00
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
2023-11-11 01:44:03 +00:00
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '=') ADVANCE(54);
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(43);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(79);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
2023-10-31 22:18:39 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-04 10:02:27 +00:00
lookahead == ' ') SKIP(25)
2023-10-31 22:18:39 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-10-31 22:18:39 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 26:
2023-11-11 01:44:03 +00:00
if (eof) ADVANCE(27);
2023-11-05 18:54:29 +00:00
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(33);
2023-11-05 18:54:29 +00:00
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(43);
if (lookahead == 'e') ADVANCE(41);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(79);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
2023-10-31 22:18:39 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-11-04 10:02:27 +00:00
lookahead == ' ') SKIP(26)
2023-10-31 22:18:39 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-10-31 22:18:39 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 27:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
2023-10-31 22:18:39 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 28:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(sym__comment);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 29:
2023-11-04 10:02:27 +00:00
ACCEPT_TOKEN(sym__comment);
2023-11-11 01:44:03 +00:00
if (lookahead == '|') ADVANCE(29);
2023-11-05 18:54:29 +00:00
if (lookahead == '\n' ||
2023-11-11 01:44:03 +00:00
lookahead == '#') ADVANCE(28);
2023-11-05 18:54:29 +00:00
if (lookahead != 0) ADVANCE(19);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 30:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 31:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 32:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(anon_sym_SEMI);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 33:
ACCEPT_TOKEN(anon_sym_LPAREN);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 34:
ACCEPT_TOKEN(anon_sym_RPAREN);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 35:
ACCEPT_TOKEN(anon_sym_COMMA);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-11 01:44:03 +00:00
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-11-11 01:44:03 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 37:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
2023-11-04 10:02:27 +00:00
case 38:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(14);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-11-05 18:54:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
2023-11-04 10:02:27 +00:00
case 39:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'c') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-10-31 05:09:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
2023-11-04 10:02:27 +00:00
case 40:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-10-31 09:51:37 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 41:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(44);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-10-31 05:09:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 42:
2023-10-31 20:25:13 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(39);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-10-31 20:25:13 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 43:
2023-10-31 20:25:13 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(45);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-10-31 20:25:13 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 44:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-11-04 10:02:27 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 45:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-11-04 10:02:27 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 46:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-11-04 10:02:27 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 47:
2023-11-15 03:26:32 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(22);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
END_STATE();
case 48:
ACCEPT_TOKEN(sym_float);
2023-11-05 18:54:29 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
2023-11-04 10:02:27 +00:00
END_STATE();
case 49:
ACCEPT_TOKEN(sym_string);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 50:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-04 10:02:27 +00:00
case 51:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-04 10:02:27 +00:00
case 52:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(66);
END_STATE();
2023-11-04 10:02:27 +00:00
case 53:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(66);
if (lookahead == '>') ADVANCE(77);
2023-10-31 13:31:10 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 54:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '>') ADVANCE(77);
2023-10-31 13:31:10 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 55:
ACCEPT_TOKEN(anon_sym_COLON);
2023-10-31 22:18:39 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 56:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
2023-11-04 10:02:27 +00:00
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_PLUS);
2023-10-31 13:31:10 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 58:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(74);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 59:
ACCEPT_TOKEN(anon_sym_DASH);
2023-11-15 03:26:32 +00:00
if (lookahead == '=') ADVANCE(75);
if (lookahead == '>') ADVANCE(81);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 60:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '>') ADVANCE(81);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 61:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == '=') ADVANCE(75);
if (lookahead == '>') ADVANCE(81);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 62:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == '>') ADVANCE(81);
END_STATE();
2023-11-05 18:54:29 +00:00
case 63:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-05 18:54:29 +00:00
case 64:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-05 18:54:29 +00:00
case 65:
ACCEPT_TOKEN(anon_sym_PERCENT);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 66:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 67:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-05 18:54:29 +00:00
case 68:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-05 18:54:29 +00:00
case 69:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
2023-10-31 22:18:39 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 70:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(72);
2023-10-31 22:18:39 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 71:
ACCEPT_TOKEN(anon_sym_LT);
2023-11-15 00:22:26 +00:00
if (lookahead == '=') ADVANCE(73);
END_STATE();
2023-11-05 18:54:29 +00:00
case 72:
ACCEPT_TOKEN(anon_sym_GT_EQ);
2023-10-31 05:09:29 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 73:
ACCEPT_TOKEN(anon_sym_LT_EQ);
2023-10-31 13:31:10 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 74:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
2023-10-31 17:04:22 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 75:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
2023-10-31 20:25:13 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 76:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-11-05 18:54:29 +00:00
case 77:
ACCEPT_TOKEN(anon_sym_EQ_GT);
2023-11-04 10:02:27 +00:00
END_STATE();
2023-11-05 18:54:29 +00:00
case 78:
ACCEPT_TOKEN(anon_sym_asyncfor);
2023-11-15 00:22:26 +00:00
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_PIPE);
2023-11-15 00:22:26 +00:00
END_STATE();
case 80:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '|') ADVANCE(69);
2023-11-15 03:26:32 +00:00
END_STATE();
case 81:
ACCEPT_TOKEN(anon_sym_DASH_GT);
2023-10-31 22:18:39 +00:00
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);
2023-10-21 20:38:20 +00:00
if (lookahead == 'b') ADVANCE(2);
2023-10-22 20:32:55 +00:00
if (lookahead == 'c') ADVANCE(3);
2023-10-22 20:50:09 +00:00
if (lookahead == 'd') ADVANCE(4);
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(5);
if (lookahead == 'f') ADVANCE(6);
if (lookahead == 'h') ADVANCE(7);
if (lookahead == 'i') ADVANCE(8);
if (lookahead == 'l') ADVANCE(9);
if (lookahead == 'm') ADVANCE(10);
if (lookahead == 'o') ADVANCE(11);
if (lookahead == 'r') ADVANCE(12);
if (lookahead == 's') ADVANCE(13);
if (lookahead == 't') ADVANCE(14);
if (lookahead == 'w') ADVANCE(15);
if (lookahead == 'z') ADVANCE(16);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-10-31 09:51:37 +00:00
if (lookahead == 'p') ADVANCE(17);
if (lookahead == 's') ADVANCE(18);
END_STATE();
case 2:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(19);
END_STATE();
case 3:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 4:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(21);
END_STATE();
case 5:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(22);
END_STATE();
case 6:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(23);
if (lookahead == 'i') ADVANCE(24);
if (lookahead == 'o') ADVANCE(25);
if (lookahead == 'r') ADVANCE(26);
END_STATE();
case 7:
2023-10-31 22:18:39 +00:00
if (lookahead == 'e') ADVANCE(27);
END_STATE();
case 8:
2023-10-31 22:18:39 +00:00
if (lookahead == 'f') ADVANCE(28);
if (lookahead == 'n') ADVANCE(29);
END_STATE();
case 9:
2023-10-31 22:18:39 +00:00
if (lookahead == 'e') ADVANCE(30);
END_STATE();
case 10:
2023-10-31 22:18:39 +00:00
if (lookahead == 'a') ADVANCE(31);
if (lookahead == 'e') ADVANCE(32);
if (lookahead == 'o') ADVANCE(33);
END_STATE();
case 11:
2023-10-31 22:18:39 +00:00
if (lookahead == 'u') ADVANCE(34);
END_STATE();
case 12:
2023-10-31 22:18:39 +00:00
if (lookahead == 'a') ADVANCE(35);
if (lookahead == 'e') ADVANCE(36);
if (lookahead == 'o') ADVANCE(37);
END_STATE();
case 13:
2023-10-31 22:18:39 +00:00
if (lookahead == 'e') ADVANCE(38);
if (lookahead == 'h') ADVANCE(39);
END_STATE();
case 14:
2023-10-31 22:18:39 +00:00
if (lookahead == 'a') ADVANCE(40);
if (lookahead == 'o') ADVANCE(41);
if (lookahead == 'r') ADVANCE(42);
if (lookahead == 'y') ADVANCE(43);
END_STATE();
case 15:
2023-10-31 22:18:39 +00:00
if (lookahead == 'h') ADVANCE(44);
if (lookahead == 'o') ADVANCE(45);
if (lookahead == 'r') ADVANCE(46);
END_STATE();
case 16:
2023-10-31 22:18:39 +00:00
if (lookahead == 's') ADVANCE(47);
END_STATE();
case 17:
2023-10-31 22:18:39 +00:00
if (lookahead == 'p') ADVANCE(48);
END_STATE();
case 18:
2023-10-31 22:18:39 +00:00
if (lookahead == 's') ADVANCE(49);
if (lookahead == 'y') ADVANCE(50);
END_STATE();
case 19:
2023-10-31 22:18:39 +00:00
if (lookahead == 's') ADVANCE(51);
END_STATE();
case 20:
2023-10-31 22:18:39 +00:00
if (lookahead == 'l') ADVANCE(52);
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(53);
END_STATE();
case 21:
2023-11-10 21:24:19 +00:00
if (lookahead == 'w') ADVANCE(54);
END_STATE();
case 22:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(55);
END_STATE();
case 23:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(56);
END_STATE();
case 24:
if (lookahead == 's') ADVANCE(57);
END_STATE();
case 25:
if (lookahead == 'r') ADVANCE(58);
END_STATE();
case 26:
if (lookahead == 'o') ADVANCE(59);
END_STATE();
case 27:
if (lookahead == 'l') ADVANCE(60);
END_STATE();
case 28:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 29:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 's') ADVANCE(61);
if (lookahead == 't') ADVANCE(62);
END_STATE();
case 30:
if (lookahead == 'n') ADVANCE(63);
END_STATE();
case 31:
if (lookahead == 't') ADVANCE(64);
END_STATE();
case 32:
if (lookahead == 't') ADVANCE(65);
END_STATE();
case 33:
if (lookahead == 'v') ADVANCE(66);
END_STATE();
case 34:
if (lookahead == 't') ADVANCE(67);
END_STATE();
case 35:
if (lookahead == 'n') ADVANCE(68);
if (lookahead == 'w') ADVANCE(69);
END_STATE();
case 36:
if (lookahead == 'a') ADVANCE(70);
if (lookahead == 't') ADVANCE(71);
if (lookahead == 'v') ADVANCE(72);
END_STATE();
case 37:
if (lookahead == 'w') ADVANCE(73);
END_STATE();
case 38:
if (lookahead == 'l') ADVANCE(74);
END_STATE();
case 39:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 40:
if (lookahead == 'b') ADVANCE(75);
END_STATE();
case 41:
if (lookahead == '_') ADVANCE(76);
END_STATE();
case 42:
if (lookahead == 'u') ADVANCE(77);
END_STATE();
case 43:
if (lookahead == 'p') ADVANCE(78);
END_STATE();
case 44:
if (lookahead == 'i') ADVANCE(79);
END_STATE();
case 45:
if (lookahead == 'r') ADVANCE(80);
END_STATE();
case 46:
if (lookahead == 'i') ADVANCE(81);
END_STATE();
case 47:
if (lookahead == 'h') ADVANCE(82);
END_STATE();
case 48:
if (lookahead == 'e') ADVANCE(83);
END_STATE();
case 49:
if (lookahead == 'e') ADVANCE(84);
END_STATE();
case 50:
if (lookahead == 'n') ADVANCE(85);
END_STATE();
case 51:
if (lookahead == 'h') ADVANCE(86);
END_STATE();
case 52:
if (lookahead == 'u') ADVANCE(87);
END_STATE();
case 53:
if (lookahead == 't') ADVANCE(88);
END_STATE();
case 54:
if (lookahead == 'n') ADVANCE(89);
END_STATE();
case 55:
if (lookahead == 'e') ADVANCE(90);
END_STATE();
case 56:
if (lookahead == 's') ADVANCE(91);
END_STATE();
case 57:
if (lookahead == 'h') ADVANCE(92);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 59:
if (lookahead == 'm') ADVANCE(93);
END_STATE();
case 60:
if (lookahead == 'p') ADVANCE(94);
END_STATE();
case 61:
if (lookahead == 'e') ADVANCE(95);
END_STATE();
case 62:
if (lookahead == 'o') ADVANCE(96);
END_STATE();
case 63:
if (lookahead == 'g') ADVANCE(97);
END_STATE();
case 64:
if (lookahead == 'c') ADVANCE(98);
END_STATE();
case 65:
if (lookahead == 'a') ADVANCE(99);
END_STATE();
case 66:
if (lookahead == 'e') ADVANCE(100);
END_STATE();
case 67:
if (lookahead == 'p') ADVANCE(101);
END_STATE();
case 68:
if (lookahead == 'd') ADVANCE(102);
END_STATE();
case 69:
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 70:
if (lookahead == 'd') ADVANCE(103);
END_STATE();
case 71:
if (lookahead == 'u') ADVANCE(104);
END_STATE();
case 72:
if (lookahead == 'e') ADVANCE(105);
END_STATE();
case 73:
if (lookahead == 's') ADVANCE(106);
END_STATE();
case 74:
if (lookahead == 'e') ADVANCE(107);
END_STATE();
case 75:
if (lookahead == 'l') ADVANCE(108);
END_STATE();
case 76:
if (lookahead == 'f') ADVANCE(109);
if (lookahead == 'j') ADVANCE(110);
if (lookahead == 's') ADVANCE(111);
END_STATE();
case 77:
if (lookahead == 'e') ADVANCE(112);
2023-10-21 17:19:01 +00:00
END_STATE();
case 78:
if (lookahead == 'e') ADVANCE(113);
2023-10-21 17:19:01 +00:00
END_STATE();
case 79:
if (lookahead == 'l') ADVANCE(114);
2023-10-21 17:19:01 +00:00
END_STATE();
case 80:
if (lookahead == 'k') ADVANCE(115);
2023-10-21 17:19:01 +00:00
END_STATE();
case 81:
if (lookahead == 't') ADVANCE(116);
2023-10-21 17:19:01 +00:00
END_STATE();
case 82:
ACCEPT_TOKEN(anon_sym_zsh);
2023-10-21 17:19:01 +00:00
END_STATE();
case 83:
if (lookahead == 'n') ADVANCE(117);
2023-10-21 17:19:01 +00:00
END_STATE();
case 84:
if (lookahead == 'r') ADVANCE(118);
2023-10-21 17:19:01 +00:00
END_STATE();
case 85:
if (lookahead == 'c') ADVANCE(119);
2023-10-21 17:19:01 +00:00
END_STATE();
case 86:
ACCEPT_TOKEN(anon_sym_bash);
2023-10-21 17:19:01 +00:00
END_STATE();
case 87:
if (lookahead == 'm') ADVANCE(120);
2023-10-21 17:19:01 +00:00
END_STATE();
case 88:
if (lookahead == 'e') ADVANCE(121);
2023-10-21 17:19:01 +00:00
END_STATE();
case 89:
if (lookahead == 'l') ADVANCE(122);
2023-10-21 17:19:01 +00:00
END_STATE();
case 90:
ACCEPT_TOKEN(anon_sym_else);
2023-10-21 17:19:01 +00:00
END_STATE();
case 91:
if (lookahead == 'e') ADVANCE(123);
2023-10-21 17:19:01 +00:00
END_STATE();
case 92:
ACCEPT_TOKEN(anon_sym_fish);
2023-10-21 17:19:01 +00:00
END_STATE();
case 93:
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(124);
2023-10-21 17:19:01 +00:00
END_STATE();
case 94:
ACCEPT_TOKEN(anon_sym_help);
2023-10-21 17:19:01 +00:00
END_STATE();
case 95:
if (lookahead == 'r') ADVANCE(125);
2023-10-21 17:19:01 +00:00
END_STATE();
case 96:
ACCEPT_TOKEN(anon_sym_into);
2023-10-21 17:19:01 +00:00
END_STATE();
case 97:
if (lookahead == 't') ADVANCE(126);
2023-10-21 17:19:01 +00:00
END_STATE();
case 98:
if (lookahead == 'h') ADVANCE(127);
2023-10-21 17:19:01 +00:00
END_STATE();
case 99:
if (lookahead == 'd') ADVANCE(128);
2023-10-21 17:19:01 +00:00
END_STATE();
case 100:
ACCEPT_TOKEN(anon_sym_move);
2023-10-21 17:19:01 +00:00
END_STATE();
case 101:
if (lookahead == 'u') ADVANCE(129);
END_STATE();
2023-10-21 17:19:01 +00:00
case 102:
if (lookahead == 'o') ADVANCE(130);
2023-10-21 17:19:01 +00:00
END_STATE();
case 103:
ACCEPT_TOKEN(anon_sym_read);
2023-10-21 17:19:01 +00:00
END_STATE();
case 104:
if (lookahead == 'r') ADVANCE(131);
2023-10-21 17:19:01 +00:00
END_STATE();
case 105:
if (lookahead == 'r') ADVANCE(132);
2023-10-21 17:19:01 +00:00
END_STATE();
case 106:
ACCEPT_TOKEN(anon_sym_rows);
2023-10-21 17:19:01 +00:00
END_STATE();
case 107:
if (lookahead == 'c') ADVANCE(133);
2023-10-21 20:38:20 +00:00
END_STATE();
case 108:
if (lookahead == 'e') ADVANCE(134);
2023-10-21 20:38:20 +00:00
END_STATE();
case 109:
if (lookahead == 'l') ADVANCE(135);
2023-10-21 20:38:20 +00:00
END_STATE();
case 110:
if (lookahead == 's') ADVANCE(136);
2023-10-21 20:38:20 +00:00
END_STATE();
case 111:
if (lookahead == 't') ADVANCE(137);
2023-10-21 20:38:20 +00:00
END_STATE();
case 112:
ACCEPT_TOKEN(anon_sym_true);
2023-10-21 20:38:20 +00:00
END_STATE();
case 113:
ACCEPT_TOKEN(anon_sym_type);
2023-10-21 20:38:20 +00:00
END_STATE();
case 114:
if (lookahead == 'e') ADVANCE(138);
2023-10-21 20:38:20 +00:00
END_STATE();
case 115:
if (lookahead == 'd') ADVANCE(139);
2023-10-21 20:38:20 +00:00
END_STATE();
case 116:
if (lookahead == 'e') ADVANCE(140);
2023-10-21 20:38:20 +00:00
END_STATE();
case 117:
if (lookahead == 'd') ADVANCE(141);
2023-10-21 20:38:20 +00:00
END_STATE();
case 118:
if (lookahead == 't') ADVANCE(142);
2023-10-21 20:38:20 +00:00
END_STATE();
case 119:
ACCEPT_TOKEN(anon_sym_async);
2023-10-21 20:38:20 +00:00
END_STATE();
case 120:
if (lookahead == 'n') ADVANCE(143);
2023-10-21 20:38:20 +00:00
END_STATE();
case 121:
if (lookahead == 'x') ADVANCE(144);
2023-10-21 20:38:20 +00:00
END_STATE();
case 122:
if (lookahead == 'o') ADVANCE(145);
2023-10-21 20:38:20 +00:00
END_STATE();
case 123:
ACCEPT_TOKEN(anon_sym_false);
2023-10-21 20:38:20 +00:00
END_STATE();
case 124:
if (lookahead == 'j') ADVANCE(146);
2023-10-21 20:38:20 +00:00
END_STATE();
case 125:
if (lookahead == 't') ADVANCE(147);
2023-10-21 20:38:20 +00:00
END_STATE();
case 126:
if (lookahead == 'h') ADVANCE(148);
2023-10-21 20:38:20 +00:00
END_STATE();
case 127:
ACCEPT_TOKEN(anon_sym_match);
2023-10-21 20:38:20 +00:00
END_STATE();
case 128:
if (lookahead == 'a') ADVANCE(149);
2023-10-21 20:38:20 +00:00
END_STATE();
case 129:
if (lookahead == 't') ADVANCE(150);
2023-10-21 20:38:20 +00:00
END_STATE();
case 130:
if (lookahead == 'm') ADVANCE(151);
2023-10-21 20:38:20 +00:00
END_STATE();
case 131:
if (lookahead == 'n') ADVANCE(152);
2023-10-21 20:38:20 +00:00
END_STATE();
case 132:
if (lookahead == 's') ADVANCE(153);
2023-10-21 20:38:20 +00:00
END_STATE();
case 133:
if (lookahead == 't') ADVANCE(154);
2023-10-21 20:38:20 +00:00
END_STATE();
case 134:
ACCEPT_TOKEN(anon_sym_table);
2023-10-21 20:38:20 +00:00
END_STATE();
case 135:
if (lookahead == 'o') ADVANCE(155);
2023-10-21 20:38:20 +00:00
END_STATE();
case 136:
if (lookahead == 'o') ADVANCE(156);
2023-10-21 20:38:20 +00:00
END_STATE();
case 137:
if (lookahead == 'r') ADVANCE(157);
2023-10-21 20:38:20 +00:00
END_STATE();
case 138:
ACCEPT_TOKEN(anon_sym_while);
2023-10-21 20:38:20 +00:00
END_STATE();
case 139:
if (lookahead == 'i') ADVANCE(158);
2023-10-21 20:38:20 +00:00
END_STATE();
case 140:
ACCEPT_TOKEN(anon_sym_write);
2023-10-21 20:38:20 +00:00
END_STATE();
case 141:
ACCEPT_TOKEN(anon_sym_append);
2023-10-21 20:38:20 +00:00
END_STATE();
case 142:
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(159);
2023-10-21 20:38:20 +00:00
END_STATE();
case 143:
if (lookahead == 's') ADVANCE(160);
2023-10-21 20:38:20 +00:00
END_STATE();
case 144:
if (lookahead == 't') ADVANCE(161);
2023-10-21 20:38:20 +00:00
END_STATE();
case 145:
if (lookahead == 'a') ADVANCE(162);
2023-10-21 20:38:20 +00:00
END_STATE();
case 146:
if (lookahead == 's') ADVANCE(163);
2023-10-21 20:38:20 +00:00
END_STATE();
case 147:
ACCEPT_TOKEN(anon_sym_insert);
2023-10-21 20:38:20 +00:00
END_STATE();
case 148:
ACCEPT_TOKEN(anon_sym_length);
2023-10-21 20:38:20 +00:00
END_STATE();
case 149:
if (lookahead == 't') ADVANCE(164);
2023-10-21 20:38:20 +00:00
END_STATE();
case 150:
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(165);
2023-10-21 20:38:20 +00:00
END_STATE();
case 151:
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(166);
2023-10-21 20:38:20 +00:00
END_STATE();
case 152:
ACCEPT_TOKEN(anon_sym_return);
2023-10-21 20:38:20 +00:00
END_STATE();
case 153:
if (lookahead == 'e') ADVANCE(167);
2023-10-22 18:27:18 +00:00
END_STATE();
case 154:
ACCEPT_TOKEN(anon_sym_select);
2023-10-22 18:27:18 +00:00
END_STATE();
case 155:
if (lookahead == 'a') ADVANCE(168);
2023-10-22 18:27:18 +00:00
END_STATE();
case 156:
if (lookahead == 'n') ADVANCE(169);
2023-10-22 18:48:34 +00:00
END_STATE();
case 157:
if (lookahead == 'i') ADVANCE(170);
2023-10-22 18:48:34 +00:00
END_STATE();
case 158:
if (lookahead == 'r') ADVANCE(171);
2023-10-22 18:48:34 +00:00
END_STATE();
case 159:
if (lookahead == 'e') ADVANCE(172);
2023-10-22 18:48:34 +00:00
END_STATE();
case 160:
ACCEPT_TOKEN(anon_sym_columns);
2023-10-22 18:48:34 +00:00
END_STATE();
case 161:
ACCEPT_TOKEN(anon_sym_context);
2023-10-22 18:48:34 +00:00
END_STATE();
case 162:
if (lookahead == 'd') ADVANCE(173);
2023-10-22 18:48:34 +00:00
END_STATE();
case 163:
if (lookahead == 'o') ADVANCE(174);
2023-10-22 18:48:34 +00:00
END_STATE();
case 164:
if (lookahead == 'a') ADVANCE(175);
2023-10-22 18:48:34 +00:00
END_STATE();
case 165:
if (lookahead == 'e') ADVANCE(176);
2023-10-22 18:48:34 +00:00
END_STATE();
case 166:
if (lookahead == 'b') ADVANCE(177);
if (lookahead == 'f') ADVANCE(178);
if (lookahead == 'i') ADVANCE(179);
2023-10-22 18:48:34 +00:00
END_STATE();
case 167:
ACCEPT_TOKEN(anon_sym_reverse);
2023-10-22 18:48:34 +00:00
END_STATE();
case 168:
if (lookahead == 't') ADVANCE(180);
2023-10-22 18:48:34 +00:00
END_STATE();
case 169:
ACCEPT_TOKEN(anon_sym_to_json);
2023-10-22 18:48:34 +00:00
END_STATE();
case 170:
if (lookahead == 'n') ADVANCE(181);
2023-10-22 18:48:34 +00:00
END_STATE();
case 171:
ACCEPT_TOKEN(anon_sym_workdir);
2023-10-22 18:48:34 +00:00
END_STATE();
case 172:
if (lookahead == 'q') ADVANCE(182);
2023-10-22 18:48:34 +00:00
END_STATE();
case 173:
ACCEPT_TOKEN(anon_sym_download);
2023-10-21 17:19:01 +00:00
END_STATE();
2023-10-22 18:48:34 +00:00
case 174:
if (lookahead == 'n') ADVANCE(183);
2023-10-22 18:48:34 +00:00
END_STATE();
case 175:
ACCEPT_TOKEN(anon_sym_metadata);
2023-10-22 18:48:34 +00:00
END_STATE();
case 176:
if (lookahead == 'r') ADVANCE(184);
2023-10-22 18:48:34 +00:00
END_STATE();
case 177:
if (lookahead == 'o') ADVANCE(185);
2023-10-22 18:48:34 +00:00
END_STATE();
case 178:
if (lookahead == 'l') ADVANCE(186);
2023-10-22 18:48:34 +00:00
END_STATE();
case 179:
if (lookahead == 'n') ADVANCE(187);
2023-10-22 18:48:34 +00:00
END_STATE();
case 180:
ACCEPT_TOKEN(anon_sym_to_float);
2023-10-22 20:32:55 +00:00
END_STATE();
case 181:
if (lookahead == 'g') ADVANCE(188);
2023-10-22 20:32:55 +00:00
END_STATE();
case 182:
if (lookahead == 'u') ADVANCE(189);
2023-10-22 20:32:55 +00:00
END_STATE();
case 183:
ACCEPT_TOKEN(anon_sym_from_json);
2023-10-22 20:32:55 +00:00
END_STATE();
case 184:
if (lookahead == 'r') ADVANCE(190);
2023-10-22 20:32:55 +00:00
END_STATE();
case 185:
if (lookahead == 'o') ADVANCE(191);
2023-10-22 20:32:55 +00:00
END_STATE();
case 186:
if (lookahead == 'o') ADVANCE(192);
2023-10-22 20:32:55 +00:00
END_STATE();
case 187:
if (lookahead == 't') ADVANCE(193);
2023-10-22 20:32:55 +00:00
END_STATE();
case 188:
ACCEPT_TOKEN(anon_sym_to_string);
2023-10-22 20:32:55 +00:00
END_STATE();
case 189:
if (lookahead == 'a') ADVANCE(194);
2023-10-22 20:32:55 +00:00
END_STATE();
case 190:
if (lookahead == 'o') ADVANCE(195);
2023-10-22 20:41:37 +00:00
END_STATE();
case 191:
if (lookahead == 'l') ADVANCE(196);
2023-10-22 20:41:37 +00:00
END_STATE();
case 192:
if (lookahead == 'a') ADVANCE(197);
2023-10-22 20:41:37 +00:00
END_STATE();
case 193:
if (lookahead == 'e') ADVANCE(198);
2023-10-22 20:41:37 +00:00
END_STATE();
case 194:
if (lookahead == 'l') ADVANCE(199);
2023-10-22 20:41:37 +00:00
END_STATE();
case 195:
if (lookahead == 'r') ADVANCE(200);
2023-10-22 20:41:37 +00:00
END_STATE();
case 196:
if (lookahead == 'e') ADVANCE(201);
2023-10-22 20:50:09 +00:00
END_STATE();
case 197:
if (lookahead == 't') ADVANCE(202);
2023-10-22 20:50:09 +00:00
END_STATE();
case 198:
if (lookahead == 'g') ADVANCE(203);
2023-10-22 20:50:09 +00:00
END_STATE();
case 199:
ACCEPT_TOKEN(anon_sym_assert_equal);
2023-10-22 20:50:09 +00:00
END_STATE();
case 200:
ACCEPT_TOKEN(anon_sym_output_error);
2023-10-22 20:50:09 +00:00
END_STATE();
case 201:
if (lookahead == 'a') ADVANCE(204);
2023-10-22 20:50:09 +00:00
END_STATE();
case 202:
ACCEPT_TOKEN(anon_sym_random_float);
2023-10-22 20:50:09 +00:00
END_STATE();
case 203:
if (lookahead == 'e') ADVANCE(205);
2023-10-22 20:50:09 +00:00
END_STATE();
case 204:
if (lookahead == 'n') ADVANCE(206);
2023-10-28 14:28:43 +00:00
END_STATE();
case 205:
if (lookahead == 'r') ADVANCE(207);
2023-10-28 14:28:43 +00:00
END_STATE();
case 206:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 207:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_random_integer);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
2023-11-11 01:44:03 +00:00
[1] = {.lex_state = 25},
2023-11-15 00:22:26 +00:00
[2] = {.lex_state = 4},
[3] = {.lex_state = 4},
[4] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[5] = {.lex_state = 4},
[6] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[7] = {.lex_state = 25},
[8] = {.lex_state = 25},
[9] = {.lex_state = 25},
[10] = {.lex_state = 25},
[11] = {.lex_state = 25},
[12] = {.lex_state = 25},
[13] = {.lex_state = 25},
[14] = {.lex_state = 25},
[15] = {.lex_state = 25},
[16] = {.lex_state = 25},
2023-11-14 23:56:44 +00:00
[17] = {.lex_state = 25},
2023-11-15 00:22:26 +00:00
[18] = {.lex_state = 25},
[19] = {.lex_state = 25},
2023-11-14 23:56:44 +00:00
[20] = {.lex_state = 25},
2023-11-15 00:22:26 +00:00
[21] = {.lex_state = 25},
2023-11-12 18:20:41 +00:00
[22] = {.lex_state = 25},
2023-11-15 00:22:26 +00:00
[23] = {.lex_state = 25},
2023-11-12 18:20:41 +00:00
[24] = {.lex_state = 25},
[25] = {.lex_state = 25},
[26] = {.lex_state = 25},
2023-11-05 18:54:29 +00:00
[27] = {.lex_state = 25},
2023-11-04 10:02:27 +00:00
[28] = {.lex_state = 25},
[29] = {.lex_state = 25},
[30] = {.lex_state = 25},
2023-11-05 18:54:29 +00:00
[31] = {.lex_state = 25},
[32] = {.lex_state = 25},
2023-11-04 10:02:27 +00:00
[33] = {.lex_state = 25},
[34] = {.lex_state = 25},
2023-11-05 18:54:29 +00:00
[35] = {.lex_state = 25},
2023-11-04 10:02:27 +00:00
[36] = {.lex_state = 25},
2023-11-05 18:54:29 +00:00
[37] = {.lex_state = 25},
2023-11-04 10:02:27 +00:00
[38] = {.lex_state = 25},
2023-11-05 18:54:29 +00:00
[39] = {.lex_state = 25},
[40] = {.lex_state = 25},
2023-11-15 01:00:57 +00:00
[41] = {.lex_state = 25},
[42] = {.lex_state = 25},
[43] = {.lex_state = 25},
[44] = {.lex_state = 25},
[45] = {.lex_state = 25},
[46] = {.lex_state = 25},
[47] = {.lex_state = 25},
[48] = {.lex_state = 25},
[49] = {.lex_state = 25},
[50] = {.lex_state = 23},
[51] = {.lex_state = 23},
[52] = {.lex_state = 23},
2023-11-15 01:00:57 +00:00
[53] = {.lex_state = 23},
[54] = {.lex_state = 23},
[55] = {.lex_state = 23},
[56] = {.lex_state = 23},
[57] = {.lex_state = 23},
[58] = {.lex_state = 23},
[59] = {.lex_state = 23},
[60] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[61] = {.lex_state = 23},
[62] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[63] = {.lex_state = 23},
[64] = {.lex_state = 23},
[65] = {.lex_state = 23},
[66] = {.lex_state = 23},
[67] = {.lex_state = 23},
[68] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[69] = {.lex_state = 23},
[70] = {.lex_state = 23},
[71] = {.lex_state = 23},
[72] = {.lex_state = 23},
[73] = {.lex_state = 23},
[74] = {.lex_state = 23},
2023-11-15 01:41:57 +00:00
[75] = {.lex_state = 23},
2023-11-15 01:00:57 +00:00
[76] = {.lex_state = 23},
2023-11-15 01:41:57 +00:00
[77] = {.lex_state = 23},
[78] = {.lex_state = 23},
2023-11-15 01:00:57 +00:00
[79] = {.lex_state = 24},
[80] = {.lex_state = 24},
[81] = {.lex_state = 24},
2023-11-15 01:00:57 +00:00
[82] = {.lex_state = 24},
[83] = {.lex_state = 24},
[84] = {.lex_state = 24},
[85] = {.lex_state = 24},
[86] = {.lex_state = 24},
[87] = {.lex_state = 24},
[88] = {.lex_state = 24},
[89] = {.lex_state = 24},
[90] = {.lex_state = 24},
[91] = {.lex_state = 24},
[92] = {.lex_state = 24},
[93] = {.lex_state = 24},
[94] = {.lex_state = 24},
2023-11-15 01:00:57 +00:00
[95] = {.lex_state = 24},
[96] = {.lex_state = 24},
2023-11-15 01:00:57 +00:00
[97] = {.lex_state = 24},
[98] = {.lex_state = 24},
[99] = {.lex_state = 24},
[100] = {.lex_state = 24},
[101] = {.lex_state = 24},
2023-11-15 01:41:57 +00:00
[102] = {.lex_state = 24},
[103] = {.lex_state = 24},
2023-11-16 02:35:40 +00:00
[104] = {.lex_state = 24},
[105] = {.lex_state = 24},
2023-11-15 03:26:32 +00:00
[106] = {.lex_state = 24},
2023-11-16 02:35:40 +00:00
[107] = {.lex_state = 24},
[108] = {.lex_state = 25},
[109] = {.lex_state = 25},
[110] = {.lex_state = 4},
[111] = {.lex_state = 4},
[112] = {.lex_state = 4},
2023-11-15 03:26:32 +00:00
[113] = {.lex_state = 4},
[114] = {.lex_state = 4},
[115] = {.lex_state = 1},
[116] = {.lex_state = 1},
[117] = {.lex_state = 1},
2023-11-16 02:35:40 +00:00
[118] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[119] = {.lex_state = 1},
[120] = {.lex_state = 1},
[121] = {.lex_state = 1},
2023-11-16 02:35:40 +00:00
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
2023-11-15 01:41:57 +00:00
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
[126] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
2023-11-15 03:26:32 +00:00
[129] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[130] = {.lex_state = 1},
2023-11-15 03:26:32 +00:00
[131] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[132] = {.lex_state = 1},
2023-11-15 01:41:57 +00:00
[133] = {.lex_state = 1},
2023-11-15 03:26:32 +00:00
[134] = {.lex_state = 1},
2023-11-15 01:41:57 +00:00
[135] = {.lex_state = 1},
2023-11-15 01:00:57 +00:00
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
2023-11-15 01:41:57 +00:00
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 4},
[142] = {.lex_state = 26},
[143] = {.lex_state = 4},
[144] = {.lex_state = 26},
[145] = {.lex_state = 26},
[146] = {.lex_state = 4},
2023-11-15 03:26:32 +00:00
[147] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[148] = {.lex_state = 4},
[149] = {.lex_state = 4},
[150] = {.lex_state = 4},
[151] = {.lex_state = 4},
[152] = {.lex_state = 4},
[153] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[154] = {.lex_state = 4},
[155] = {.lex_state = 4},
[156] = {.lex_state = 4},
[157] = {.lex_state = 4},
[158] = {.lex_state = 4},
[159] = {.lex_state = 4},
[160] = {.lex_state = 4},
[161] = {.lex_state = 4},
[162] = {.lex_state = 26},
[163] = {.lex_state = 26},
[164] = {.lex_state = 26},
[165] = {.lex_state = 26},
[166] = {.lex_state = 4},
[167] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[168] = {.lex_state = 4},
[169] = {.lex_state = 4},
[170] = {.lex_state = 4},
[171] = {.lex_state = 4},
[172] = {.lex_state = 4},
[173] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[174] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[175] = {.lex_state = 4},
[176] = {.lex_state = 4},
[177] = {.lex_state = 3},
[178] = {.lex_state = 4},
[179] = {.lex_state = 3},
[180] = {.lex_state = 3},
[181] = {.lex_state = 4},
[182] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[183] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[184] = {.lex_state = 4},
[185] = {.lex_state = 4},
[186] = {.lex_state = 4},
[187] = {.lex_state = 3},
[188] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[189] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[190] = {.lex_state = 4},
[191] = {.lex_state = 3},
2023-11-11 01:44:03 +00:00
[192] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[193] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[194] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[195] = {.lex_state = 4},
[196] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[197] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[198] = {.lex_state = 4},
[199] = {.lex_state = 4},
2023-11-15 01:41:57 +00:00
[200] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[201] = {.lex_state = 4},
[202] = {.lex_state = 4},
[203] = {.lex_state = 4},
[204] = {.lex_state = 4},
[205] = {.lex_state = 4},
[206] = {.lex_state = 4},
2023-11-15 01:41:57 +00:00
[207] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[208] = {.lex_state = 4},
2023-11-16 02:35:40 +00:00
[209] = {.lex_state = 4},
[210] = {.lex_state = 4},
[211] = {.lex_state = 2},
2023-11-15 01:00:57 +00:00
[212] = {.lex_state = 4},
2023-11-15 03:26:32 +00:00
[213] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[214] = {.lex_state = 4},
[215] = {.lex_state = 4},
[216] = {.lex_state = 4},
[217] = {.lex_state = 4},
[218] = {.lex_state = 4},
[219] = {.lex_state = 4},
[220] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[221] = {.lex_state = 4},
[222] = {.lex_state = 4},
[223] = {.lex_state = 4},
[224] = {.lex_state = 4},
[225] = {.lex_state = 4},
[226] = {.lex_state = 4},
[227] = {.lex_state = 2},
2023-11-16 02:35:40 +00:00
[228] = {.lex_state = 4},
[229] = {.lex_state = 4},
[230] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[231] = {.lex_state = 4},
[232] = {.lex_state = 4},
[233] = {.lex_state = 3},
[234] = {.lex_state = 2},
2023-11-15 01:00:57 +00:00
[235] = {.lex_state = 4},
[236] = {.lex_state = 2},
[237] = {.lex_state = 2},
[238] = {.lex_state = 2},
[239] = {.lex_state = 25},
[240] = {.lex_state = 2},
[241] = {.lex_state = 25},
[242] = {.lex_state = 2},
[243] = {.lex_state = 25},
[244] = {.lex_state = 3},
[245] = {.lex_state = 25},
[246] = {.lex_state = 3},
[247] = {.lex_state = 2},
[248] = {.lex_state = 2},
[249] = {.lex_state = 25},
[250] = {.lex_state = 3},
[251] = {.lex_state = 25},
[252] = {.lex_state = 3},
[253] = {.lex_state = 25},
[254] = {.lex_state = 25},
[255] = {.lex_state = 25},
[256] = {.lex_state = 25},
[257] = {.lex_state = 25},
[258] = {.lex_state = 25},
[259] = {.lex_state = 25},
[260] = {.lex_state = 25},
[261] = {.lex_state = 3},
[262] = {.lex_state = 3},
[263] = {.lex_state = 2},
[264] = {.lex_state = 3},
[265] = {.lex_state = 2},
[266] = {.lex_state = 2},
[267] = {.lex_state = 2},
[268] = {.lex_state = 2},
[269] = {.lex_state = 2},
[270] = {.lex_state = 3},
[271] = {.lex_state = 2},
2023-11-15 03:26:32 +00:00
[272] = {.lex_state = 3},
[273] = {.lex_state = 2},
[274] = {.lex_state = 2},
[275] = {.lex_state = 3},
[276] = {.lex_state = 2},
[277] = {.lex_state = 3},
[278] = {.lex_state = 3},
2023-11-16 02:35:40 +00:00
[279] = {.lex_state = 2},
2023-11-15 01:41:57 +00:00
[280] = {.lex_state = 2},
2023-11-15 01:00:57 +00:00
[281] = {.lex_state = 2},
2023-11-16 02:35:40 +00:00
[282] = {.lex_state = 3},
2023-11-15 03:26:32 +00:00
[283] = {.lex_state = 3},
[284] = {.lex_state = 3},
2023-11-15 03:26:32 +00:00
[285] = {.lex_state = 3},
[286] = {.lex_state = 2},
2023-11-15 01:41:57 +00:00
[287] = {.lex_state = 2},
[288] = {.lex_state = 3},
[289] = {.lex_state = 3},
2023-11-15 03:26:32 +00:00
[290] = {.lex_state = 2},
[291] = {.lex_state = 3},
[292] = {.lex_state = 25},
[293] = {.lex_state = 3},
[294] = {.lex_state = 3},
[295] = {.lex_state = 3},
[296] = {.lex_state = 3},
[297] = {.lex_state = 3},
2023-11-15 01:41:57 +00:00
[298] = {.lex_state = 3},
[299] = {.lex_state = 3},
[300] = {.lex_state = 3},
[301] = {.lex_state = 3},
[302] = {.lex_state = 3},
2023-11-15 03:26:32 +00:00
[303] = {.lex_state = 3},
[304] = {.lex_state = 3},
[305] = {.lex_state = 3},
[306] = {.lex_state = 3},
[307] = {.lex_state = 3},
[308] = {.lex_state = 3},
[309] = {.lex_state = 3},
[310] = {.lex_state = 3},
[311] = {.lex_state = 3},
[312] = {.lex_state = 3},
[313] = {.lex_state = 4},
[314] = {.lex_state = 4},
[315] = {.lex_state = 4},
[316] = {.lex_state = 4},
[317] = {.lex_state = 4},
[318] = {.lex_state = 4},
[319] = {.lex_state = 4},
[320] = {.lex_state = 4},
[321] = {.lex_state = 4},
[322] = {.lex_state = 6},
[323] = {.lex_state = 6},
[324] = {.lex_state = 6},
[325] = {.lex_state = 6},
[326] = {.lex_state = 6},
[327] = {.lex_state = 6},
[328] = {.lex_state = 6},
[329] = {.lex_state = 4},
[330] = {.lex_state = 4},
[331] = {.lex_state = 4},
[332] = {.lex_state = 4},
[333] = {.lex_state = 4},
[334] = {.lex_state = 4},
[335] = {.lex_state = 4},
[336] = {.lex_state = 4},
[337] = {.lex_state = 4},
[338] = {.lex_state = 4},
[339] = {.lex_state = 4},
[340] = {.lex_state = 4},
[341] = {.lex_state = 4},
[342] = {.lex_state = 4},
[343] = {.lex_state = 4},
[344] = {.lex_state = 4},
[345] = {.lex_state = 4},
[346] = {.lex_state = 4},
[347] = {.lex_state = 4},
[348] = {.lex_state = 4},
2023-11-15 03:26:32 +00:00
[349] = {.lex_state = 4},
[350] = {.lex_state = 4},
[351] = {.lex_state = 4},
[352] = {.lex_state = 4},
[353] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[354] = {.lex_state = 4},
[355] = {.lex_state = 4},
2023-11-15 01:00:57 +00:00
[356] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[357] = {.lex_state = 4},
[358] = {.lex_state = 4},
[359] = {.lex_state = 4},
[360] = {.lex_state = 4},
[361] = {.lex_state = 4},
[362] = {.lex_state = 4},
[363] = {.lex_state = 4},
[364] = {.lex_state = 4},
[365] = {.lex_state = 25},
[366] = {.lex_state = 25},
[367] = {.lex_state = 25},
[368] = {.lex_state = 25},
2023-11-15 01:00:57 +00:00
[369] = {.lex_state = 4},
[370] = {.lex_state = 25},
[371] = {.lex_state = 25},
[372] = {.lex_state = 25},
[373] = {.lex_state = 25},
2023-11-15 01:00:57 +00:00
[374] = {.lex_state = 4},
[375] = {.lex_state = 25},
[376] = {.lex_state = 25},
[377] = {.lex_state = 25},
[378] = {.lex_state = 25},
[379] = {.lex_state = 0},
[380] = {.lex_state = 25},
[381] = {.lex_state = 0},
[382] = {.lex_state = 0},
[383] = {.lex_state = 0},
[384] = {.lex_state = 0},
[385] = {.lex_state = 0},
2023-11-15 01:00:57 +00:00
[386] = {.lex_state = 4},
[387] = {.lex_state = 0},
[388] = {.lex_state = 0},
[389] = {.lex_state = 0},
[390] = {.lex_state = 0},
2023-11-15 01:41:57 +00:00
[391] = {.lex_state = 4},
[392] = {.lex_state = 4},
[393] = {.lex_state = 4},
[394] = {.lex_state = 4},
[395] = {.lex_state = 0},
[396] = {.lex_state = 0},
[397] = {.lex_state = 0},
[398] = {.lex_state = 0},
2023-11-15 01:41:57 +00:00
[399] = {.lex_state = 4},
[400] = {.lex_state = 4},
[401] = {.lex_state = 4},
[402] = {.lex_state = 0},
2023-11-15 01:41:57 +00:00
[403] = {.lex_state = 4},
[404] = {.lex_state = 0},
[405] = {.lex_state = 0},
[406] = {.lex_state = 0},
[407] = {.lex_state = 0},
[408] = {.lex_state = 0},
[409] = {.lex_state = 0},
[410] = {.lex_state = 0},
[411] = {.lex_state = 0},
[412] = {.lex_state = 0},
[413] = {.lex_state = 0},
[414] = {.lex_state = 0},
[415] = {.lex_state = 0},
[416] = {.lex_state = 0},
[417] = {.lex_state = 0},
[418] = {.lex_state = 4},
[419] = {.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),
2023-11-04 10:02:27 +00:00
[sym__comment] = ACTIONS(3),
2023-11-12 18:20:41 +00:00
[anon_sym_async] = ACTIONS(1),
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
2023-10-31 20:25:13 +00:00
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_return] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2023-10-31 20:25:13 +00:00
[anon_sym_COMMA] = ACTIONS(1),
2023-10-31 19:21:13 +00:00
[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),
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = ACTIONS(1),
2023-10-31 13:31:10 +00:00
[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),
2023-10-31 22:18:39 +00:00
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
2023-10-31 13:31:10 +00:00
[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),
2023-10-31 05:09:29 +00:00
[anon_sym_match] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
2023-11-04 10:02:27 +00:00
[anon_sym_asyncfor] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
2023-10-31 05:09:29 +00:00
[anon_sym_select] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
[anon_sym_insert] = ACTIONS(1),
[anon_sym_into] = ACTIONS(1),
2023-10-31 22:18:39 +00:00
[anon_sym_PIPE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_DASH_GT] = ACTIONS(1),
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_assert_equal] = ACTIONS(1),
2023-11-10 21:24:19 +00:00
[anon_sym_context] = ACTIONS(1),
2023-10-22 20:50:09 +00:00
[anon_sym_download] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_help] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_length] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_output] = ACTIONS(1),
[anon_sym_output_error] = ACTIONS(1),
2023-10-22 18:27:18 +00:00
[anon_sym_type] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_append] = ACTIONS(1),
[anon_sym_metadata] = ACTIONS(1),
[anon_sym_move] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_read] = ACTIONS(1),
2023-10-31 19:21:13 +00:00
[anon_sym_workdir] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_write] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = ACTIONS(1),
[anon_sym_to_json] = ACTIONS(1),
[anon_sym_to_string] = ACTIONS(1),
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = ACTIONS(1),
[anon_sym_fish] = ACTIONS(1),
[anon_sym_raw] = ACTIONS(1),
[anon_sym_sh] = ACTIONS(1),
[anon_sym_zsh] = ACTIONS(1),
2023-10-22 18:48:34 +00:00
[anon_sym_random] = ACTIONS(1),
[anon_sym_random_boolean] = ACTIONS(1),
[anon_sym_random_float] = ACTIONS(1),
[anon_sym_random_integer] = ACTIONS(1),
2023-10-22 20:32:55 +00:00
[anon_sym_columns] = ACTIONS(1),
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = ACTIONS(1),
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = ACTIONS(1),
},
[1] = {
[sym_root] = STATE(398),
[sym_block] = STATE(243),
[sym_statement] = STATE(26),
[sym_return] = STATE(243),
[sym_expression] = STATE(89),
[sym__expression_kind] = STATE(103),
[sym_value] = STATE(103),
[sym_boolean] = STATE(96),
[sym_list] = STATE(96),
[sym_map] = STATE(96),
[sym_index] = STATE(77),
[sym_math] = STATE(103),
[sym_logic] = STATE(103),
[sym_assignment] = STATE(243),
[sym_index_assignment] = STATE(243),
[sym_if_else] = STATE(243),
[sym_if] = STATE(142),
[sym_match] = STATE(243),
[sym_while] = STATE(243),
[sym_for] = STATE(243),
[sym_select] = STATE(243),
[sym_insert] = STATE(243),
[sym_identifier_list] = STATE(397),
[sym_table] = STATE(96),
[sym_function] = STATE(96),
[sym_function_call] = STATE(103),
[sym_yield] = STATE(103),
[aux_sym_root_repeat1] = STATE(26),
2023-11-11 01:44:03 +00:00
[sym_identifier] = ACTIONS(5),
2023-11-10 23:44:56 +00:00
[sym__comment] = ACTIONS(3),
2023-11-12 18:20:41 +00:00
[anon_sym_async] = ACTIONS(7),
[anon_sym_LBRACE] = ACTIONS(9),
[anon_sym_return] = ACTIONS(11),
[anon_sym_LPAREN] = ACTIONS(13),
[sym_integer] = ACTIONS(15),
[sym_float] = ACTIONS(17),
[sym_string] = ACTIONS(17),
[anon_sym_true] = ACTIONS(19),
[anon_sym_false] = ACTIONS(19),
[anon_sym_LBRACK] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_match] = ACTIONS(25),
[anon_sym_EQ_GT] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_asyncfor] = ACTIONS(33),
[anon_sym_select] = ACTIONS(35),
[anon_sym_insert] = ACTIONS(37),
[anon_sym_PIPE] = ACTIONS(39),
[anon_sym_table] = ACTIONS(41),
2023-10-31 17:04:22 +00:00
},
2023-11-15 00:22:26 +00:00
};
static const uint16_t ts_small_parse_table[] = {
[0] = 19,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(43), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(45), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LPAREN,
ACTIONS(47), 1,
anon_sym_RPAREN,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(157), 1,
2023-11-11 01:44:03 +00:00
sym__built_in_function_name,
STATE(307), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(352), 1,
aux_sym_map_repeat1,
STATE(395), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-10 23:44:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(387), 2,
2023-11-11 01:44:03 +00:00
sym__context_defined_function,
sym_built_in_function,
STATE(275), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(61), 31,
2023-11-10 23:44:56 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[101] = 19,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-10 23:44:56 +00:00
anon_sym_PIPE,
ACTIONS(43), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(45), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-10 23:44:56 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(63), 1,
anon_sym_RPAREN,
STATE(157), 1,
2023-10-31 22:18:39 +00:00
sym__built_in_function_name,
STATE(307), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
STATE(354), 1,
aux_sym_map_repeat1,
STATE(395), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(402), 2,
2023-10-31 22:18:39 +00:00
sym__context_defined_function,
sym_built_in_function,
STATE(275), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(308), 7,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(61), 31,
2023-10-31 22:18:39 +00:00
anon_sym_assert,
anon_sym_assert_equal,
2023-11-10 21:24:19 +00:00
anon_sym_context,
2023-10-31 22:18:39 +00:00
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[202] = 19,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(43), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(45), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
ACTIONS(55), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(65), 1,
anon_sym_RPAREN,
STATE(157), 1,
2023-10-31 22:18:39 +00:00
sym__built_in_function_name,
STATE(307), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
STATE(361), 1,
aux_sym_map_repeat1,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(419), 2,
2023-11-15 01:00:57 +00:00
sym__context_defined_function,
sym_built_in_function,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(309), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(61), 31,
2023-11-15 01:00:57 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[303] = 19,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(43), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(67), 1,
anon_sym_RPAREN,
STATE(157), 1,
2023-11-15 01:00:57 +00:00
sym__built_in_function_name,
STATE(307), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(343), 1,
aux_sym_map_repeat1,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(396), 2,
2023-11-15 01:00:57 +00:00
sym__context_defined_function,
sym_built_in_function,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(310), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(61), 31,
2023-11-15 01:00:57 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[404] = 19,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(43), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(69), 1,
anon_sym_RPAREN,
STATE(157), 1,
2023-11-15 01:00:57 +00:00
sym__built_in_function_name,
STATE(307), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(345), 1,
aux_sym_map_repeat1,
STATE(395), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(390), 2,
2023-10-31 22:18:39 +00:00
sym__context_defined_function,
sym_built_in_function,
STATE(275), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(312), 7,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(61), 31,
2023-10-31 22:18:39 +00:00
anon_sym_assert,
anon_sym_assert_equal,
2023-11-10 21:24:19 +00:00
anon_sym_context,
2023-10-31 22:18:39 +00:00
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[505] = 29,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(73), 1,
sym_identifier,
ACTIONS(76), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
ACTIONS(79), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
ACTIONS(82), 1,
anon_sym_return,
ACTIONS(85), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
ACTIONS(88), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
ACTIONS(97), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
ACTIONS(100), 1,
2023-11-15 00:22:26 +00:00
anon_sym_if,
ACTIONS(103), 1,
2023-11-15 00:22:26 +00:00
anon_sym_match,
ACTIONS(106), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
ACTIONS(109), 1,
2023-11-15 00:22:26 +00:00
anon_sym_while,
ACTIONS(112), 1,
2023-11-15 00:22:26 +00:00
anon_sym_for,
ACTIONS(115), 1,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(118), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(121), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(124), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(127), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
ACTIONS(71), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(91), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
ACTIONS(94), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[615] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(7), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
ACTIONS(9), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
ACTIONS(13), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
ACTIONS(21), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
ACTIONS(23), 1,
2023-11-15 00:22:26 +00:00
anon_sym_if,
ACTIONS(25), 1,
2023-11-15 00:22:26 +00:00
anon_sym_match,
ACTIONS(27), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
ACTIONS(29), 1,
2023-11-15 00:22:26 +00:00
anon_sym_while,
ACTIONS(31), 1,
2023-11-15 00:22:26 +00:00
anon_sym_for,
ACTIONS(33), 1,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-05 18:54:29 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(130), 1,
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[724] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
2023-11-16 02:35:40 +00:00
ACTIONS(7), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
2023-11-16 02:35:40 +00:00
ACTIONS(9), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-16 02:35:40 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-16 02:35:40 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-16 02:35:40 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-16 02:35:40 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-16 02:35:40 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-16 02:35:40 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-16 02:35:40 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-16 02:35:40 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-16 02:35:40 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-16 02:35:40 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-10 23:44:56 +00:00
anon_sym_table,
ACTIONS(132), 1,
2023-11-16 02:35:40 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-10-31 22:18:39 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[833] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
2023-11-12 18:20:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-12 18:20:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(134), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[942] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(136), 1,
2023-11-15 01:41:57 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1051] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(138), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1160] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(140), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1269] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-04 10:02:27 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-04 10:02:27 +00:00
anon_sym_table,
ACTIONS(142), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-04 10:02:27 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-04 10:02:27 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1378] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-04 10:02:27 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-04 10:02:27 +00:00
anon_sym_table,
ACTIONS(144), 1,
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-05 18:54:29 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-04 10:02:27 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1487] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-04 10:02:27 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(146), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1596] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-04 10:02:27 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-10 23:44:56 +00:00
anon_sym_table,
ACTIONS(148), 1,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-04 10:02:27 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-04 10:02:27 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1705] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(150), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-10 23:44:56 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1814] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(152), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[1923] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(154), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2032] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(156), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-05 18:54:29 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2141] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(158), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-10 23:44:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2250] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
2023-11-15 00:22:26 +00:00
ACTIONS(37), 1,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
ACTIONS(39), 1,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(160), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2359] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(162), 1,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-10 23:44:56 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2468] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(164), 1,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2577] = 29,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(166), 1,
ts_builtin_sym_end,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(7), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2686] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
STATE(24), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2792] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(21), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[2898] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
STATE(12), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3004] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(19), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3110] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(20), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3216] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(17), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3322] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(8), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3428] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(16), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3534] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(18), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3640] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
2023-11-15 00:22:26 +00:00
anon_sym_false,
STATE(15), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3746] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
2023-11-15 00:22:26 +00:00
ACTIONS(37), 1,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
ACTIONS(39), 1,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(9), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3852] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(10), 2,
2023-11-15 00:22:26 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[3958] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 01:00:57 +00:00
ACTIONS(5), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
ACTIONS(7), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
2023-11-15 01:00:57 +00:00
ACTIONS(9), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 01:00:57 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 01:00:57 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 01:00:57 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 01:00:57 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 01:00:57 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 01:00:57 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(14), 2,
2023-11-15 01:00:57 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4064] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 01:00:57 +00:00
ACTIONS(5), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
ACTIONS(7), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
2023-11-15 01:00:57 +00:00
ACTIONS(9), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 01:00:57 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 01:00:57 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 01:00:57 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 01:00:57 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 01:00:57 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 01:00:57 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-11-15 01:00:57 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4170] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 01:00:57 +00:00
ACTIONS(5), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
ACTIONS(7), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
2023-11-15 01:00:57 +00:00
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 01:00:57 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 01:00:57 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 01:00:57 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 01:00:57 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 01:00:57 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 01:00:57 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 01:00:57 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(11), 2,
2023-11-15 01:00:57 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4276] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 00:22:26 +00:00
sym_if,
STATE(397), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
STATE(25), 2,
2023-11-15 01:00:57 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 00:22:26 +00:00
sym_block,
sym_return,
2023-11-15 00:22:26 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 00:22:26 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4382] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 01:00:57 +00:00
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 01:00:57 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-15 01:00:57 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 01:00:57 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 01:00:57 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 01:00:57 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 01:00:57 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 01:00:57 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 01:00:57 +00:00
sym_if,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(22), 2,
2023-11-15 01:00:57 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 01:00:57 +00:00
sym_block,
sym_return,
2023-11-15 01:00:57 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 01:00:57 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4488] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 01:00:57 +00:00
ACTIONS(5), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 01:00:57 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-15 01:00:57 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 01:00:57 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 01:00:57 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 01:00:57 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 01:00:57 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 01:00:57 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(89), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 01:00:57 +00:00
sym_if,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(13), 2,
2023-11-15 01:00:57 +00:00
sym_statement,
aux_sym_root_repeat1,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(243), 10,
2023-11-15 01:00:57 +00:00
sym_block,
sym_return,
2023-11-15 01:00:57 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 01:00:57 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4594] = 28,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 01:00:57 +00:00
ACTIONS(5), 1,
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(7), 1,
anon_sym_async,
2023-11-15 01:00:57 +00:00
ACTIONS(9), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-15 01:00:57 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-15 01:00:57 +00:00
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-15 01:00:57 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-15 01:00:57 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-15 01:00:57 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-15 01:00:57 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-15 01:00:57 +00:00
ACTIONS(35), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(88), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 01:00:57 +00:00
sym_if,
STATE(245), 1,
sym_statement,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(251), 10,
2023-11-15 03:26:32 +00:00
sym_block,
sym_return,
2023-11-15 03:26:32 +00:00
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4699] = 28,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(168), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(170), 1,
2023-11-15 03:26:32 +00:00
anon_sym_async,
ACTIONS(172), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
2023-11-15 03:26:32 +00:00
anon_sym_if,
ACTIONS(178), 1,
2023-11-15 03:26:32 +00:00
anon_sym_match,
ACTIONS(180), 1,
2023-11-15 03:26:32 +00:00
anon_sym_while,
ACTIONS(182), 1,
2023-11-15 03:26:32 +00:00
anon_sym_for,
ACTIONS(184), 1,
2023-11-15 03:26:32 +00:00
anon_sym_asyncfor,
ACTIONS(186), 1,
2023-11-15 03:26:32 +00:00
anon_sym_select,
ACTIONS(188), 1,
2023-11-15 03:26:32 +00:00
anon_sym_insert,
STATE(281), 1,
2023-11-15 03:26:32 +00:00
sym_index,
STATE(293), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(322), 1,
2023-11-15 03:26:32 +00:00
sym_if,
STATE(329), 1,
2023-11-15 03:26:32 +00:00
sym_statement,
STATE(395), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 03:26:32 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 6,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(336), 10,
2023-11-15 01:00:57 +00:00
sym_block,
sym_return,
2023-11-15 01:00:57 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 01:00:57 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4804] = 28,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:41:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:41:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:41:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:41:57 +00:00
anon_sym_table,
ACTIONS(168), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
ACTIONS(170), 1,
2023-11-15 01:00:57 +00:00
anon_sym_async,
ACTIONS(172), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACE,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
2023-11-15 00:22:26 +00:00
anon_sym_if,
ACTIONS(178), 1,
2023-11-15 00:22:26 +00:00
anon_sym_match,
ACTIONS(180), 1,
2023-11-15 00:22:26 +00:00
anon_sym_while,
ACTIONS(182), 1,
2023-11-15 00:22:26 +00:00
anon_sym_for,
ACTIONS(184), 1,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
ACTIONS(186), 1,
2023-11-15 00:22:26 +00:00
anon_sym_select,
ACTIONS(188), 1,
2023-11-15 00:22:26 +00:00
anon_sym_insert,
STATE(281), 1,
2023-11-15 01:00:57 +00:00
sym_index,
STATE(294), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(322), 1,
2023-11-15 01:00:57 +00:00
sym_if,
STATE(357), 1,
2023-11-15 01:00:57 +00:00
sym_statement,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 6,
2023-11-15 01:41:57 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(335), 10,
2023-11-15 01:41:57 +00:00
sym_block,
sym_return,
2023-11-15 01:41:57 +00:00
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[4909] = 28,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-16 02:35:40 +00:00
ACTIONS(5), 1,
2023-11-15 01:41:57 +00:00
sym_identifier,
2023-11-16 02:35:40 +00:00
ACTIONS(7), 1,
2023-11-15 01:41:57 +00:00
anon_sym_async,
2023-11-16 02:35:40 +00:00
ACTIONS(9), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
2023-11-16 02:35:40 +00:00
ACTIONS(11), 1,
anon_sym_return,
2023-11-16 02:35:40 +00:00
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-16 02:35:40 +00:00
sym_integer,
ACTIONS(21), 1,
anon_sym_LBRACK,
2023-11-16 02:35:40 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-11-16 02:35:40 +00:00
ACTIONS(25), 1,
anon_sym_match,
2023-11-16 02:35:40 +00:00
ACTIONS(27), 1,
anon_sym_EQ_GT,
2023-11-16 02:35:40 +00:00
ACTIONS(29), 1,
anon_sym_while,
2023-11-16 02:35:40 +00:00
ACTIONS(31), 1,
anon_sym_for,
2023-11-16 02:35:40 +00:00
ACTIONS(33), 1,
anon_sym_asyncfor,
2023-11-16 02:35:40 +00:00
ACTIONS(35), 1,
2023-11-15 01:41:57 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-11-15 01:41:57 +00:00
anon_sym_insert,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(77), 1,
2023-11-15 01:41:57 +00:00
sym_index,
STATE(88), 1,
2023-11-15 01:41:57 +00:00
sym_expression,
STATE(142), 1,
2023-11-15 01:41:57 +00:00
sym_if,
STATE(259), 1,
2023-11-15 01:41:57 +00:00
sym_statement,
STATE(397), 1,
2023-11-15 01:41:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:41:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:41:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:41:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 6,
2023-11-15 01:41:57 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(251), 10,
2023-11-15 01:41:57 +00:00
sym_block,
sym_return,
2023-11-15 01:00:57 +00:00
sym_assignment,
2023-11-15 01:41:57 +00:00
sym_index_assignment,
2023-11-15 01:00:57 +00:00
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[5014] = 28,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:41:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(168), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(170), 1,
2023-11-15 03:26:32 +00:00
anon_sym_async,
ACTIONS(172), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
2023-11-15 01:41:57 +00:00
anon_sym_if,
ACTIONS(178), 1,
2023-11-15 01:41:57 +00:00
anon_sym_match,
ACTIONS(180), 1,
2023-11-15 01:41:57 +00:00
anon_sym_while,
ACTIONS(182), 1,
2023-11-15 01:41:57 +00:00
anon_sym_for,
ACTIONS(184), 1,
2023-11-15 01:41:57 +00:00
anon_sym_asyncfor,
ACTIONS(186), 1,
2023-11-15 01:41:57 +00:00
anon_sym_select,
ACTIONS(188), 1,
2023-11-15 01:41:57 +00:00
anon_sym_insert,
STATE(281), 1,
2023-11-15 01:41:57 +00:00
sym_index,
STATE(293), 1,
2023-11-15 01:41:57 +00:00
sym_expression,
STATE(322), 1,
2023-11-15 01:41:57 +00:00
sym_if,
STATE(338), 1,
2023-11-15 01:41:57 +00:00
sym_statement,
STATE(395), 1,
2023-11-15 01:41:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:41:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:41:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:41:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 6,
2023-11-15 01:41:57 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(336), 10,
2023-11-15 01:41:57 +00:00
sym_block,
sym_return,
2023-11-15 01:41:57 +00:00
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
[5119] = 11,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(204), 1,
anon_sym_DASH_GT,
STATE(207), 1,
sym_math_operator,
STATE(208), 1,
sym_logic_operator,
ACTIONS(196), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(190), 13,
ts_builtin_sym_end,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(192), 15,
2023-11-16 02:35:40 +00:00
anon_sym_async,
anon_sym_return,
sym_identifier,
2023-11-15 01:41:57 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-11-15 01:41:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5188] = 6,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(194), 1,
anon_sym_COLON,
STATE(207), 1,
sym_math_operator,
STATE(208), 1,
2023-11-15 01:41:57 +00:00
sym_logic_operator,
ACTIONS(208), 19,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
2023-11-15 01:41:57 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(206), 23,
2023-11-15 01:00:57 +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,
2023-11-15 03:26:32 +00:00
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5247] = 5,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(207), 1,
sym_math_operator,
STATE(208), 1,
2023-11-15 01:00:57 +00:00
sym_logic_operator,
ACTIONS(212), 19,
anon_sym_async,
anon_sym_return,
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_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(210), 24,
2023-11-16 02:35:40 +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,
2023-11-16 02:35:40 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5304] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(207), 1,
sym_math_operator,
STATE(208), 1,
sym_logic_operator,
ACTIONS(216), 19,
2023-11-15 01:41:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:41:57 +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-15 01:41:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(214), 24,
2023-11-15 03:26:32 +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,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5361] = 6,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(218), 1,
anon_sym_DOT_DOT,
STATE(207), 1,
sym_math_operator,
STATE(208), 1,
2023-11-15 01:00:57 +00:00
sym_logic_operator,
ACTIONS(216), 19,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 03:26:32 +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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(214), 23,
2023-11-15 01:00:57 +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,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5420] = 11,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(194), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COLON,
ACTIONS(204), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH_GT,
STATE(207), 1,
sym_math_operator,
STATE(208), 1,
sym_logic_operator,
ACTIONS(196), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
2023-11-15 03:26:32 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 03:26:32 +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,
ACTIONS(220), 13,
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,
2023-11-15 03:26:32 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(222), 15,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:00:57 +00:00
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_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5489] = 6,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(224), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(213), 1,
sym_math_operator,
ACTIONS(208), 19,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
2023-11-16 02:35:40 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
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,
2023-11-15 01:00:57 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-14 23:56:44 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5547] = 11,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(204), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(224), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(213), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
ACTIONS(196), 2,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
2023-11-15 00:22:26 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
2023-11-15 00:22:26 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 00:22:26 +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,
ACTIONS(220), 12,
2023-11-12 18:20:41 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-12 18:20:41 +00:00
anon_sym_asyncfor,
ACTIONS(222), 15,
2023-11-12 18:20:41 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
2023-11-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
[5615] = 11,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(204), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(224), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(213), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
ACTIONS(196), 2,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
2023-11-15 00:22:26 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
2023-11-15 00:22:26 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 00:22:26 +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,
ACTIONS(190), 12,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(192), 15,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5683] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
STATE(189), 1,
sym_logic_operator,
STATE(213), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
ACTIONS(212), 19,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(210), 23,
2023-11-15 01:41:57 +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,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5739] = 19,
ACTIONS(3), 1,
sym__comment,
ACTIONS(226), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(230), 1,
anon_sym_RPAREN,
ACTIONS(232), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
ACTIONS(238), 1,
anon_sym_LBRACK,
ACTIONS(240), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(248), 1,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
ACTIONS(250), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
STATE(136), 1,
sym_expression,
STATE(152), 1,
aux_sym__expression_list,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(244), 3,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(242), 12,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
anon_sym_PLUS,
2023-11-15 00:22:26 +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-16 02:35:40 +00:00
anon_sym_DASH_GT,
[5822] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(254), 19,
2023-11-12 18:20:41 +00:00
anon_sym_async,
anon_sym_return,
2023-11-05 18:54:29 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(252), 24,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-14 23:56:44 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
2023-11-15 01:41:57 +00:00
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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-15 01:41:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5873] = 23,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(45), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_EQ_GT,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(256), 1,
sym_identifier,
ACTIONS(258), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COLON,
ACTIONS(260), 1,
anon_sym_DASH_GT,
STATE(143), 1,
aux_sym_match_repeat1,
STATE(185), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
STATE(305), 1,
sym_expression,
STATE(395), 1,
sym_identifier_list,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(275), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(200), 6,
2023-11-15 03:26:32 +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,
STATE(270), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5964] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(264), 19,
anon_sym_async,
anon_sym_return,
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_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(262), 24,
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_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6015] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(268), 19,
anon_sym_async,
anon_sym_return,
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_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(266), 24,
2023-11-12 18:20:41 +00:00
ts_builtin_sym_end,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-12 18:20:41 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6066] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(270), 1,
anon_sym_EQ,
STATE(48), 1,
sym_assignment_operator,
ACTIONS(272), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(244), 18,
2023-11-12 18:20:41 +00:00
anon_sym_async,
anon_sym_return,
2023-11-12 18:20:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(242), 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_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_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6123] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 19,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 03:26:32 +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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(274), 24,
2023-11-12 18:20:41 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +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,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-12 18:20:41 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6174] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(280), 19,
2023-11-12 18:20:41 +00:00
anon_sym_async,
anon_sym_return,
2023-11-05 18:54:29 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(278), 24,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
2023-11-15 03:26:32 +00:00
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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-15 03:26:32 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6225] = 23,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(45), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_EQ_GT,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(256), 1,
sym_identifier,
ACTIONS(258), 1,
anon_sym_COLON,
ACTIONS(260), 1,
anon_sym_DASH_GT,
STATE(109), 1,
aux_sym_match_repeat1,
STATE(185), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
STATE(306), 1,
sym_expression,
STATE(395), 1,
sym_identifier_list,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(275), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(200), 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(270), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6316] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 19,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_EQ,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(282), 24,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +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,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6367] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 19,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(286), 24,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6418] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 19,
2023-11-16 02:35:40 +00:00
anon_sym_async,
anon_sym_return,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(290), 24,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6469] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 19,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(294), 24,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6520] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(300), 19,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(298), 24,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
2023-11-15 03:26:32 +00:00
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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-15 03:26:32 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6571] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(304), 19,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_EQ,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(302), 24,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6622] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(308), 19,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
2023-11-15 00:22:26 +00:00
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(306), 24,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
2023-11-15 01:00:57 +00:00
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-12 18:20:41 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6673] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(312), 19,
2023-11-16 02:35:40 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +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-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(310), 24,
ts_builtin_sym_end,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6724] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(270), 1,
anon_sym_EQ,
STATE(45), 1,
sym_assignment_operator,
ACTIONS(272), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(244), 18,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(242), 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_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_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6781] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(316), 19,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(314), 24,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6832] = 6,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(318), 1,
anon_sym_DOT_DOT,
STATE(205), 1,
sym_logic_operator,
2023-11-16 02:35:40 +00:00
STATE(209), 1,
sym_math_operator,
ACTIONS(216), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-15 00:22:26 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(214), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-15 00:22:26 +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-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6888] = 11,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 01:41:57 +00:00
anon_sym_DASH,
ACTIONS(320), 1,
2023-11-15 01:41:57 +00:00
anon_sym_COLON,
ACTIONS(322), 1,
anon_sym_DASH_GT,
STATE(205), 1,
2023-11-15 01:41:57 +00:00
sym_logic_operator,
2023-11-16 02:35:40 +00:00
STATE(209), 1,
2023-11-15 03:26:32 +00:00
sym_math_operator,
ACTIONS(202), 2,
2023-11-15 01:41:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 01:41:57 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 01:41:57 +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,
ACTIONS(190), 11,
2023-11-15 01:41:57 +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_DOT_DOT,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(192), 14,
2023-11-15 01:41:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6954] = 5,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(205), 1,
2023-11-15 01:00:57 +00:00
sym_logic_operator,
2023-11-16 02:35:40 +00:00
STATE(209), 1,
2023-11-15 01:41:57 +00:00
sym_math_operator,
ACTIONS(212), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-15 00:22:26 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(210), 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,
2023-11-15 00:22:26 +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-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-14 23:56:44 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7008] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
2023-11-14 23:56:44 +00:00
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(322), 1,
anon_sym_DASH_GT,
ACTIONS(328), 1,
anon_sym_COLON,
STATE(216), 1,
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
STATE(256), 1,
sym_block,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(324), 9,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(326), 13,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
[7080] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(320), 1,
anon_sym_COLON,
ACTIONS(322), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH_GT,
STATE(205), 1,
sym_logic_operator,
STATE(209), 1,
sym_math_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(220), 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_DOT_DOT,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(222), 14,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7146] = 6,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(320), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
STATE(205), 1,
sym_logic_operator,
STATE(209), 1,
sym_math_operator,
ACTIONS(208), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
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_DOT_DOT,
2023-11-15 00:22:26 +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_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7202] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(205), 1,
sym_logic_operator,
STATE(209), 1,
sym_math_operator,
ACTIONS(216), 17,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:00:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-16 02:35:40 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(214), 23,
2023-11-16 02:35:40 +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,
2023-11-16 02:35:40 +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_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7256] = 11,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 01:41:57 +00:00
anon_sym_DASH,
ACTIONS(322), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(328), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
STATE(216), 1,
2023-11-15 01:41:57 +00:00
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
ACTIONS(202), 2,
2023-11-15 01:41:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 00:22:26 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 00:22:26 +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,
ACTIONS(330), 10,
2023-11-15 01:41:57 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-16 02:35:40 +00:00
anon_sym_SEMI,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
ACTIONS(332), 14,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
[7321] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(216), 1,
2023-11-15 01:41:57 +00:00
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
ACTIONS(212), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(210), 22,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
2023-11-15 00:22:26 +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-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7374] = 11,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(224), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COLON,
ACTIONS(322), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH_GT,
STATE(216), 1,
2023-11-15 03:26:32 +00:00
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
ACTIONS(202), 2,
2023-11-15 03:26:32 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 03:26:32 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 03:26:32 +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,
ACTIONS(334), 10,
2023-11-15 03:26:32 +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_EQ_GT,
anon_sym_asyncfor,
ACTIONS(336), 14,
2023-11-15 01:41:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7439] = 12,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
ACTIONS(224), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
ACTIONS(322), 1,
anon_sym_DASH_GT,
ACTIONS(338), 1,
anon_sym_SEMI,
STATE(216), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
STATE(222), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
ACTIONS(202), 2,
2023-11-16 02:35:40 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 00:22:26 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 00:22:26 +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,
ACTIONS(334), 9,
2023-11-16 02:35:40 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
ACTIONS(336), 14,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-05 18:54:29 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
[7506] = 11,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH,
ACTIONS(322), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH_GT,
ACTIONS(328), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
STATE(216), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
STATE(222), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
ACTIONS(202), 2,
2023-11-16 02:35:40 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 00:22:26 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 00:22:26 +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,
ACTIONS(340), 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_EQ_GT,
anon_sym_asyncfor,
ACTIONS(342), 14,
anon_sym_async,
anon_sym_return,
sym_identifier,
2023-11-15 03:26:32 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
[7571] = 6,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(328), 1,
anon_sym_COLON,
STATE(216), 1,
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
ACTIONS(208), 17,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-11 01:44:03 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
ACTIONS(206), 21,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
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,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7626] = 11,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
ACTIONS(322), 1,
anon_sym_DASH_GT,
ACTIONS(328), 1,
anon_sym_COLON,
STATE(216), 1,
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
ACTIONS(202), 2,
2023-11-15 00:22:26 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(220), 10,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(222), 14,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7691] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(322), 1,
anon_sym_DASH_GT,
ACTIONS(328), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
STATE(216), 1,
sym_math_operator,
STATE(222), 1,
sym_logic_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 00:22:26 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 00:22:26 +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,
ACTIONS(190), 10,
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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
ACTIONS(192), 14,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7756] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(316), 17,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(314), 23,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
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,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7804] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 17,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(282), 23,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
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,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7852] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(268), 17,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(266), 23,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
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,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7900] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(264), 17,
2023-11-12 18:20:41 +00:00
anon_sym_async,
anon_sym_return,
2023-10-31 22:18:39 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-11 01:44:03 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(262), 23,
2023-11-15 00:22:26 +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,
2023-11-15 01:00:57 +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-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7948] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(312), 17,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(310), 23,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +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-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[7996] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 17,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-05 18:54:29 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(286), 23,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +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_asyncfor,
anon_sym_DASH_GT,
[8044] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(254), 17,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(252), 23,
2023-11-15 00:22:26 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-14 23:56:44 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 01:00:57 +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-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[8092] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(296), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
2023-11-15 01:00:57 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(294), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
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_asyncfor,
anon_sym_DASH_GT,
[8140] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(308), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(306), 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,
2023-11-15 01:00:57 +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_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[8188] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(304), 17,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-15 03:26:32 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 03:26:32 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(302), 23,
2023-11-15 03:26:32 +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,
2023-11-15 01:00:57 +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-15 03:26:32 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[8236] = 3,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 17,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:41:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(274), 23,
2023-11-15 03:26:32 +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_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_asyncfor,
anon_sym_DASH_GT,
[8284] = 3,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(300), 17,
2023-11-16 02:35:40 +00:00
anon_sym_async,
anon_sym_return,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(298), 23,
2023-11-16 02:35:40 +00:00
ts_builtin_sym_end,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
2023-11-16 02:35:40 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACK,
2023-11-16 02:35:40 +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-15 01:41:57 +00:00
anon_sym_EQ_GT,
2023-11-16 02:35:40 +00:00
anon_sym_asyncfor,
anon_sym_DASH_GT,
[8332] = 3,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(280), 17,
2023-11-16 02:35:40 +00:00
anon_sym_async,
anon_sym_return,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-15 01:41:57 +00:00
anon_sym_table,
ACTIONS(278), 23,
2023-11-16 02:35:40 +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_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_asyncfor,
anon_sym_DASH_GT,
[8380] = 3,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 17,
anon_sym_async,
anon_sym_return,
sym_identifier,
2023-11-16 02:35:40 +00:00
sym_integer,
2023-11-15 01:41:57 +00:00
anon_sym_true,
anon_sym_false,
2023-11-16 02:35:40 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(290), 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-16 02:35:40 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-16 02:35:40 +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_EQ_GT,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[8428] = 17,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(346), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(351), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
ACTIONS(354), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(363), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
ACTIONS(366), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
ACTIONS(369), 1,
anon_sym_PIPE,
ACTIONS(372), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(108), 1,
aux_sym_match_repeat1,
STATE(306), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(357), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(360), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(344), 5,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(349), 8,
anon_sym_async,
anon_sym_return,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
[8503] = 17,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
STATE(108), 1,
2023-11-16 02:35:40 +00:00
aux_sym_match_repeat1,
STATE(306), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(375), 5,
2023-11-16 02:35:40 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
2023-11-16 02:35:40 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(275), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(377), 8,
2023-11-16 02:35:40 +00:00
anon_sym_async,
anon_sym_return,
2023-11-16 02:35:40 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
[8578] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 1,
sym_identifier,
STATE(157), 1,
sym__built_in_function_name,
STATE(404), 2,
sym__context_defined_function,
sym_built_in_function,
ACTIONS(61), 31,
2023-11-15 03:26:32 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[8625] = 5,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(157), 1,
2023-11-15 03:26:32 +00:00
sym__built_in_function_name,
STATE(405), 2,
2023-11-15 03:26:32 +00:00
sym__context_defined_function,
sym_built_in_function,
ACTIONS(61), 31,
2023-11-15 03:26:32 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[8672] = 5,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(157), 1,
2023-11-15 03:26:32 +00:00
sym__built_in_function_name,
STATE(407), 2,
2023-11-15 03:26:32 +00:00
sym__context_defined_function,
sym_built_in_function,
ACTIONS(61), 31,
2023-11-15 03:26:32 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[8719] = 5,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(157), 1,
2023-11-15 03:26:32 +00:00
sym__built_in_function_name,
STATE(406), 2,
2023-11-15 03:26:32 +00:00
sym__context_defined_function,
sym_built_in_function,
ACTIONS(61), 31,
2023-11-15 03:26:32 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[8766] = 5,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(157), 1,
2023-11-15 03:26:32 +00:00
sym__built_in_function_name,
STATE(384), 2,
2023-11-15 03:26:32 +00:00
sym__context_defined_function,
sym_built_in_function,
ACTIONS(61), 31,
2023-11-15 03:26:32 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[8813] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(381), 1,
anon_sym_COLON,
STATE(190), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(192), 1,
sym_math_operator,
ACTIONS(208), 9,
2023-11-15 01:00:57 +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,
ACTIONS(206), 20,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACK,
2023-11-15 01:41:57 +00:00
anon_sym_DOT_DOT,
2023-11-15 01:00:57 +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-12 18:20:41 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[8859] = 11,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(260), 1,
anon_sym_DASH_GT,
ACTIONS(381), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(192), 1,
sym_math_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(222), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(220), 9,
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_EQ_GT,
[8915] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(190), 1,
2023-11-15 03:26:32 +00:00
sym_logic_operator,
STATE(192), 1,
sym_math_operator,
ACTIONS(212), 9,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(210), 21,
2023-11-15 03:26:32 +00:00
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,
2023-11-15 03:26:32 +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_EQ_GT,
anon_sym_DASH_GT,
[8959] = 6,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 1,
anon_sym_DOT_DOT,
STATE(190), 1,
sym_logic_operator,
STATE(192), 1,
sym_math_operator,
ACTIONS(216), 9,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-16 02:35:40 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(214), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-16 02:35:40 +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-12 18:20:41 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9005] = 5,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(190), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(192), 1,
sym_math_operator,
ACTIONS(216), 9,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:41:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
ACTIONS(214), 21,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-15 03:26:32 +00:00
anon_sym_DOT_DOT,
2023-11-15 01:41:57 +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-12 18:20:41 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9049] = 11,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
ACTIONS(260), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(381), 1,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
STATE(190), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(192), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(192), 6,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(200), 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(190), 9,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACK,
anon_sym_DOT_DOT,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
[9105] = 11,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(258), 1,
anon_sym_COLON,
ACTIONS(260), 1,
anon_sym_DASH_GT,
STATE(185), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
STATE(186), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(192), 6,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(200), 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(190), 8,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
[9160] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(258), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
ACTIONS(260), 1,
anon_sym_DASH_GT,
STATE(185), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-16 02:35:40 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-16 02:35:40 +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,
ACTIONS(222), 6,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
2023-11-16 02:35:40 +00:00
anon_sym_table,
ACTIONS(220), 8,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 01:41:57 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-15 01:41:57 +00:00
anon_sym_EQ_GT,
[9215] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(185), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(212), 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(210), 20,
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_EQ_GT,
anon_sym_DASH_GT,
[9258] = 6,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(258), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COLON,
STATE(185), 1,
2023-11-15 03:26:32 +00:00
sym_math_operator,
STATE(186), 1,
2023-11-15 03:26:32 +00:00
sym_logic_operator,
ACTIONS(208), 9,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(206), 19,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
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_EQ_GT,
anon_sym_DASH_GT,
[9303] = 12,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 01:41:57 +00:00
anon_sym_DASH,
ACTIONS(258), 1,
2023-11-15 01:41:57 +00:00
anon_sym_COLON,
ACTIONS(260), 1,
anon_sym_DASH_GT,
ACTIONS(389), 1,
anon_sym_COMMA,
STATE(185), 1,
2023-11-15 01:41:57 +00:00
sym_math_operator,
STATE(186), 1,
2023-11-15 01:00:57 +00:00
sym_logic_operator,
ACTIONS(202), 2,
2023-11-15 01:41:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-15 01:41:57 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 01:41:57 +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,
ACTIONS(385), 6,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(387), 6,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
[9359] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 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(290), 21,
2023-11-15 01:41:57 +00:00
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,
2023-11-15 01:41:57 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9397] = 3,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(304), 9,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(302), 21,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 01:00:57 +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_EQ_GT,
anon_sym_DASH_GT,
[9435] = 3,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(268), 9,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(266), 21,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-15 03:26:32 +00:00
anon_sym_DOT_DOT,
2023-11-15 01:00:57 +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-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9473] = 3,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(312), 9,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(310), 21,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACK,
anon_sym_COLON,
2023-11-15 01:41:57 +00:00
anon_sym_DOT_DOT,
2023-11-15 01:00:57 +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-12 18:20:41 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9511] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(264), 9,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:41:57 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(262), 21,
2023-11-15 01:41:57 +00:00
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,
2023-11-15 01:00:57 +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-15 01:41:57 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9549] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(300), 9,
2023-11-15 01:00:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(298), 21,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
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_EQ_GT,
anon_sym_DASH_GT,
[9587] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 9,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(286), 21,
2023-11-16 02:35:40 +00:00
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,
2023-11-16 02:35:40 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9625] = 3,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(308), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-16 02:35:40 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(306), 21,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-16 02:35:40 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-16 02:35:40 +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_EQ_GT,
anon_sym_DASH_GT,
[9663] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(280), 9,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(278), 21,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
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_EQ_GT,
anon_sym_DASH_GT,
[9701] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 9,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(274), 21,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
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_EQ_GT,
anon_sym_DASH_GT,
[9739] = 12,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH,
ACTIONS(258), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
ACTIONS(260), 1,
anon_sym_DASH_GT,
ACTIONS(395), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COMMA,
STATE(185), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
STATE(186), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
ACTIONS(202), 2,
2023-11-16 02:35:40 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-16 02:35:40 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-16 02:35:40 +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,
ACTIONS(391), 6,
2023-11-16 02:35:40 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(393), 6,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
[9795] = 3,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 9,
2023-11-15 01:00:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:41:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(282), 21,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_RPAREN,
2023-11-15 01:41:57 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 01:41:57 +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,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
[9833] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(316), 9,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
anon_sym_table,
ACTIONS(314), 21,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
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_EQ_GT,
anon_sym_DASH_GT,
[9871] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(254), 9,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(252), 21,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
2023-11-15 01:00:57 +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,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9909] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 9,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(294), 21,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
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_EQ_GT,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
[9947] = 16,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(346), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(351), 1,
anon_sym_LPAREN,
ACTIONS(354), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(363), 1,
anon_sym_LBRACK,
ACTIONS(366), 1,
anon_sym_EQ_GT,
ACTIONS(369), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(372), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
STATE(141), 1,
aux_sym_match_repeat1,
STATE(305), 1,
sym_expression,
STATE(395), 1,
sym_identifier_list,
ACTIONS(357), 2,
sym_float,
sym_string,
ACTIONS(360), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(344), 3,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
STATE(275), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10010] = 7,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(401), 1,
anon_sym_elseif,
ACTIONS(403), 1,
anon_sym_else,
STATE(260), 1,
sym_else,
STATE(144), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(397), 11,
ts_builtin_sym_end,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(399), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[10055] = 16,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(45), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-15 01:41:57 +00:00
sym_identifier,
STATE(141), 1,
2023-11-15 01:00:57 +00:00
aux_sym_match_repeat1,
STATE(305), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(375), 3,
2023-11-15 01:00:57 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_COMMA,
STATE(275), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10118] = 7,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(401), 1,
anon_sym_elseif,
ACTIONS(403), 1,
anon_sym_else,
STATE(253), 1,
sym_else,
STATE(145), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(405), 11,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(407), 13,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 01:00:57 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[10163] = 5,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(413), 1,
anon_sym_elseif,
STATE(145), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(409), 11,
2023-11-15 01:00:57 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 01:00:57 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(411), 14,
2023-11-15 01:41:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
2023-11-15 03:26:32 +00:00
anon_sym_else,
2023-11-15 01:41:57 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[10203] = 16,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:41:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(416), 1,
anon_sym_RBRACK,
STATE(125), 1,
sym_expression,
STATE(147), 1,
aux_sym_list_repeat1,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10264] = 16,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(418), 1,
anon_sym_RBRACK,
STATE(125), 1,
sym_expression,
STATE(154), 1,
aux_sym_list_repeat1,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10325] = 16,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(228), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(230), 1,
anon_sym_RPAREN,
ACTIONS(232), 1,
2023-11-16 02:35:40 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-16 02:35:40 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(136), 1,
2023-11-16 02:35:40 +00:00
sym_expression,
STATE(152), 1,
2023-11-16 02:35:40 +00:00
aux_sym__expression_list,
STATE(379), 1,
2023-11-16 02:35:40 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-16 02:35:40 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-16 02:35:40 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-16 02:35:40 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10386] = 16,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(420), 1,
anon_sym_RBRACK,
STATE(125), 1,
sym_expression,
STATE(154), 1,
aux_sym_list_repeat1,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10447] = 16,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(422), 1,
anon_sym_RBRACK,
STATE(125), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(149), 1,
aux_sym_list_repeat1,
STATE(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10508] = 16,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(228), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(424), 1,
anon_sym_RBRACK,
STATE(125), 1,
sym_expression,
STATE(154), 1,
aux_sym_list_repeat1,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10569] = 16,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(228), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(426), 1,
anon_sym_RPAREN,
STATE(136), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(160), 1,
aux_sym__expression_list,
STATE(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 03:26:32 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10630] = 16,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(428), 1,
anon_sym_RPAREN,
STATE(136), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(160), 1,
aux_sym__expression_list,
STATE(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 03:26:32 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10691] = 16,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(430), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(433), 1,
anon_sym_LPAREN,
ACTIONS(436), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(445), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(448), 1,
anon_sym_RBRACK,
ACTIONS(450), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(453), 1,
anon_sym_PIPE,
ACTIONS(456), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
STATE(125), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(154), 1,
2023-11-15 03:26:32 +00:00
aux_sym_list_repeat1,
STATE(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(439), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(442), 2,
2023-11-15 03:26:32 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10752] = 16,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(459), 1,
anon_sym_RBRACK,
STATE(125), 1,
sym_expression,
STATE(151), 1,
aux_sym_list_repeat1,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10813] = 16,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(461), 1,
anon_sym_RBRACK,
STATE(125), 1,
sym_expression,
STATE(158), 1,
aux_sym_list_repeat1,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10874] = 16,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(463), 1,
anon_sym_RPAREN,
STATE(136), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(153), 1,
aux_sym__expression_list,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10935] = 16,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(228), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-16 02:35:40 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-16 02:35:40 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
ACTIONS(465), 1,
2023-11-16 02:35:40 +00:00
anon_sym_RBRACK,
STATE(125), 1,
2023-11-16 02:35:40 +00:00
sym_expression,
STATE(154), 1,
2023-11-16 02:35:40 +00:00
aux_sym_list_repeat1,
STATE(379), 1,
2023-11-16 02:35:40 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-16 02:35:40 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-16 02:35:40 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-16 02:35:40 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10996] = 16,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(467), 1,
anon_sym_RBRACK,
STATE(125), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11057] = 16,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(469), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
ACTIONS(472), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(475), 1,
anon_sym_RPAREN,
ACTIONS(477), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(486), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(489), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(492), 1,
anon_sym_PIPE,
ACTIONS(495), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(136), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(160), 1,
aux_sym__expression_list,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(480), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(483), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11118] = 16,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:41:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(228), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(498), 1,
anon_sym_RBRACK,
STATE(125), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(154), 1,
2023-11-15 01:00:57 +00:00
aux_sym_list_repeat1,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11179] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(500), 12,
ts_builtin_sym_end,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(502), 14,
anon_sym_async,
anon_sym_return,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-15 03:26:32 +00:00
sym_integer,
2023-11-15 00:22:26 +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_select,
anon_sym_insert,
anon_sym_table,
[11213] = 3,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 12,
2023-11-15 03:26:32 +00:00
ts_builtin_sym_end,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACE,
2023-11-15 03:26:32 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
2023-11-15 03:26:32 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(312), 14,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
2023-11-15 03:26:32 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_table,
[11247] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(290), 12,
2023-11-15 03:26:32 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
anon_sym_elseif,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(292), 14,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 03:26:32 +00:00
anon_sym_if,
anon_sym_else,
2023-11-15 03:26:32 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11281] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(504), 12,
ts_builtin_sym_end,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(506), 14,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
2023-11-15 00:22:26 +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_select,
anon_sym_insert,
anon_sym_table,
[11315] = 14,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(508), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(510), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(522), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(57), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11370] = 14,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(524), 1,
sym_identifier,
ACTIONS(526), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(85), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11425] = 14,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(261), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11480] = 14,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(256), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(296), 1,
sym_expression,
STATE(395), 1,
sym_identifier_list,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 03:26:32 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11535] = 14,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
sym_integer,
ACTIONS(21), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
ACTIONS(524), 1,
sym_identifier,
STATE(86), 1,
sym_expression,
STATE(397), 1,
sym_identifier_list,
ACTIONS(17), 2,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-16 02:35:40 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11590] = 14,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
STATE(299), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11645] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(530), 1,
anon_sym_LPAREN,
ACTIONS(532), 1,
sym_integer,
ACTIONS(538), 1,
anon_sym_LBRACK,
ACTIONS(540), 1,
anon_sym_EQ_GT,
ACTIONS(542), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
STATE(227), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11700] = 14,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
sym_integer,
ACTIONS(238), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(68), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11755] = 14,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(530), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(544), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(248), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11810] = 14,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(546), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(119), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11865] = 14,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(13), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(524), 1,
sym_identifier,
STATE(87), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11920] = 11,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(548), 1,
anon_sym_COLON,
ACTIONS(550), 1,
anon_sym_DASH_GT,
STATE(196), 1,
sym_logic_operator,
STATE(199), 1,
sym_math_operator,
ACTIONS(192), 2,
anon_sym_async,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(190), 6,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(200), 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,
[11969] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(298), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12024] = 6,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(548), 1,
anon_sym_COLON,
STATE(196), 1,
2023-11-15 03:26:32 +00:00
sym_logic_operator,
STATE(199), 1,
sym_math_operator,
ACTIONS(208), 5,
2023-11-15 03:26:32 +00:00
anon_sym_async,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 17,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 03:26:32 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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,
[12063] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(548), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COLON,
ACTIONS(550), 1,
anon_sym_DASH_GT,
STATE(196), 1,
sym_logic_operator,
STATE(199), 1,
sym_math_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(222), 2,
anon_sym_async,
sym_identifier,
ACTIONS(198), 4,
2023-11-15 03:26:32 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-15 03:26:32 +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,
ACTIONS(220), 6,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_DOT_DOT,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
[12112] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(530), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-16 02:35:40 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-16 02:35:40 +00:00
anon_sym_EQ_GT,
ACTIONS(544), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(247), 1,
2023-11-16 02:35:40 +00:00
sym_expression,
STATE(381), 1,
2023-11-16 02:35:40 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-16 02:35:40 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-16 02:35:40 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-16 02:35:40 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12167] = 14,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:41:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:41:57 +00:00
anon_sym_EQ_GT,
ACTIONS(256), 1,
sym_identifier,
ACTIONS(552), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(233), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12222] = 14,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(528), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(530), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(544), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(240), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12277] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 00:22:26 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 00:22:26 +00:00
anon_sym_table,
STATE(122), 1,
2023-11-15 00:22:26 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 00:22:26 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 00:22:26 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 00:22:26 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12332] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(124), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12387] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
anon_sym_table,
STATE(121), 1,
sym_expression,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12442] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(196), 1,
sym_logic_operator,
STATE(199), 1,
sym_math_operator,
ACTIONS(212), 5,
anon_sym_async,
2023-11-15 01:00:57 +00:00
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(210), 18,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
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_EQ_GT,
anon_sym_DASH_GT,
[12479] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(530), 1,
anon_sym_LPAREN,
ACTIONS(532), 1,
sym_integer,
ACTIONS(538), 1,
anon_sym_LBRACK,
ACTIONS(540), 1,
anon_sym_EQ_GT,
ACTIONS(542), 1,
2023-11-15 03:26:32 +00:00
anon_sym_table,
STATE(234), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12534] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(508), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(510), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(522), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(58), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12589] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
anon_sym_LPAREN,
ACTIONS(232), 1,
sym_integer,
ACTIONS(238), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(546), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(120), 1,
sym_expression,
STATE(379), 1,
sym_identifier_list,
ACTIONS(234), 2,
sym_float,
sym_string,
ACTIONS(236), 2,
anon_sym_true,
anon_sym_false,
STATE(128), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12644] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(554), 1,
anon_sym_DOT_DOT,
STATE(196), 1,
sym_logic_operator,
STATE(199), 1,
sym_math_operator,
ACTIONS(216), 5,
anon_sym_async,
2023-11-16 02:35:40 +00:00
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(214), 17,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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,
[12683] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(546), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(115), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12738] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(546), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(116), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12793] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(530), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(544), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(242), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12848] = 14,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(508), 1,
sym_identifier,
ACTIONS(510), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-16 02:35:40 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(556), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(53), 1,
2023-11-16 02:35:40 +00:00
sym_expression,
STATE(382), 1,
2023-11-16 02:35:40 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-16 02:35:40 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-16 02:35:40 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-16 02:35:40 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12903] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(256), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(552), 1,
anon_sym_table,
STATE(177), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12958] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
anon_sym_table,
STATE(123), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13013] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(226), 1,
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:41:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(546), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(118), 1,
2023-11-15 03:26:32 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 03:26:32 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 03:26:32 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 03:26:32 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 03:26:32 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 03:26:32 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13068] = 14,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(256), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(552), 1,
anon_sym_table,
STATE(179), 1,
2023-11-15 01:41:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:41:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:41:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:41:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:41:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:41:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13123] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(252), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13178] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(256), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(552), 1,
anon_sym_table,
STATE(180), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13233] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(250), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13288] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(524), 1,
sym_identifier,
ACTIONS(526), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(79), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13343] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(244), 1,
2023-11-15 01:41:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:41:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:41:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:41:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:41:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:41:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13398] = 14,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:41:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:41:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(524), 1,
sym_identifier,
ACTIONS(526), 1,
anon_sym_table,
STATE(80), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13453] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(508), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(510), 1,
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(556), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(55), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13508] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(508), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(510), 1,
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(556), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(51), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13563] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(508), 1,
2023-11-15 01:41:57 +00:00
sym_identifier,
ACTIONS(510), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(556), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(50), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13618] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(524), 1,
sym_identifier,
ACTIONS(526), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(84), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13673] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(524), 1,
sym_identifier,
ACTIONS(526), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(83), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13728] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(229), 1,
sym_math_operator,
STATE(230), 1,
sym_logic_operator,
ACTIONS(212), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(210), 18,
anon_sym_SEMI,
anon_sym_RPAREN,
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,
[13765] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(524), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
STATE(92), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13820] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(508), 1,
sym_identifier,
ACTIONS(510), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(522), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(56), 1,
2023-11-16 02:35:40 +00:00
sym_expression,
STATE(382), 1,
2023-11-16 02:35:40 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-16 02:35:40 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-16 02:35:40 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-16 02:35:40 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-16 02:35:40 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13875] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
STATE(246), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13930] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:41:57 +00:00
anon_sym_PIPE,
ACTIONS(508), 1,
sym_identifier,
ACTIONS(510), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(556), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(54), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13985] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(41), 1,
anon_sym_table,
ACTIONS(524), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
STATE(91), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14040] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(304), 1,
sym_expression,
STATE(395), 1,
sym_identifier_list,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(275), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14095] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(45), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_EQ_GT,
ACTIONS(256), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(552), 1,
anon_sym_table,
STATE(191), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14150] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 03:26:32 +00:00
anon_sym_PIPE,
ACTIONS(226), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(228), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(232), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(238), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(246), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(250), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(62), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(379), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(234), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(236), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(128), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(127), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14205] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(508), 1,
sym_identifier,
ACTIONS(510), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(512), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(518), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(520), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(522), 1,
2023-11-16 02:35:40 +00:00
anon_sym_table,
STATE(59), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(382), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(514), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(516), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(64), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(74), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14260] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(303), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14315] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(524), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
STATE(93), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14370] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(300), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14425] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(297), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14480] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(256), 1,
sym_identifier,
STATE(301), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14535] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(295), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14590] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(229), 1,
sym_math_operator,
STATE(230), 1,
sym_logic_operator,
ACTIONS(216), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(214), 18,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-15 01:41:57 +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,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[14627] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(528), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(530), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-15 03:26:32 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
ACTIONS(542), 1,
2023-11-15 01:41:57 +00:00
anon_sym_table,
STATE(236), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14682] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(528), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(530), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(542), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(238), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14737] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(528), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(530), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
ACTIONS(532), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(538), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACK,
ACTIONS(540), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(542), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
STATE(237), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(381), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(534), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(536), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(268), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(265), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14792] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
ACTIONS(45), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(55), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(57), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(59), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(256), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
STATE(302), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(395), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(51), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(275), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(270), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14847] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(524), 1,
sym_identifier,
STATE(82), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14902] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(196), 1,
sym_logic_operator,
STATE(199), 1,
sym_math_operator,
ACTIONS(216), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(214), 18,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[14939] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(558), 1,
anon_sym_DOT_DOT,
STATE(229), 1,
sym_math_operator,
STATE(230), 1,
sym_logic_operator,
ACTIONS(216), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(214), 17,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[14978] = 14,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
2023-11-15 01:00:57 +00:00
sym_integer,
ACTIONS(21), 1,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
ACTIONS(27), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ_GT,
ACTIONS(39), 1,
anon_sym_PIPE,
ACTIONS(41), 1,
2023-11-15 01:00:57 +00:00
anon_sym_table,
ACTIONS(524), 1,
sym_identifier,
STATE(90), 1,
2023-11-15 01:00:57 +00:00
sym_expression,
STATE(397), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
ACTIONS(17), 2,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
ACTIONS(19), 2,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
STATE(96), 5,
2023-11-15 01:00:57 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(103), 7,
2023-11-15 01:00:57 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[15033] = 11,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(222), 1,
anon_sym_EQ,
ACTIONS(560), 1,
anon_sym_COLON,
ACTIONS(562), 1,
anon_sym_DASH_GT,
STATE(229), 1,
sym_math_operator,
STATE(230), 1,
sym_logic_operator,
ACTIONS(196), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(220), 7,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15082] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(192), 1,
anon_sym_EQ,
ACTIONS(560), 1,
anon_sym_COLON,
ACTIONS(562), 1,
anon_sym_DASH_GT,
STATE(229), 1,
sym_math_operator,
STATE(230), 1,
sym_logic_operator,
ACTIONS(196), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(190), 7,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15131] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(560), 1,
anon_sym_COLON,
STATE(229), 1,
sym_math_operator,
STATE(230), 1,
sym_logic_operator,
ACTIONS(208), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 17,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[15170] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 01:00:57 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(312), 13,
anon_sym_async,
anon_sym_return,
2023-11-15 01:00:57 +00:00
sym_identifier,
sym_integer,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15202] = 11,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(222), 1,
anon_sym_EQ,
ACTIONS(562), 1,
anon_sym_DASH_GT,
ACTIONS(564), 1,
anon_sym_COLON,
STATE(174), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(196), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 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(220), 6,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-16 02:35:40 +00:00
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15250] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(566), 11,
ts_builtin_sym_end,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
2023-11-15 01:00:57 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(568), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
2023-11-15 01:00:57 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15282] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(174), 1,
sym_logic_operator,
STATE(181), 1,
sym_math_operator,
ACTIONS(212), 5,
2023-11-15 01:41:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(210), 17,
2023-11-15 01:41:57 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 01:41:57 +00:00
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[15318] = 4,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(338), 1,
anon_sym_SEMI,
ACTIONS(334), 10,
ts_builtin_sym_end,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-11-15 03:26:32 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(336), 13,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15352] = 11,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(550), 1,
anon_sym_DASH_GT,
ACTIONS(570), 1,
anon_sym_COLON,
STATE(200), 1,
2023-11-15 01:00:57 +00:00
sym_logic_operator,
STATE(202), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
ACTIONS(202), 2,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(222), 2,
anon_sym_async,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(198), 4,
anon_sym_PLUS,
2023-11-15 01:00:57 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(220), 5,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_EQ_GT,
ACTIONS(200), 6,
2023-11-15 01:00:57 +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,
[15400] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(572), 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_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(574), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15432] = 5,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(212), 5,
2023-11-15 01:00:57 +00:00
anon_sym_async,
sym_identifier,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(210), 17,
2023-11-15 01:00:57 +00:00
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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,
[15468] = 6,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(564), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
STATE(174), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(181), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
ACTIONS(208), 5,
2023-11-15 01:41:57 +00:00
anon_sym_EQ,
2023-11-16 02:35:40 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 16,
2023-11-16 02:35:40 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-16 02:35:40 +00:00
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,
[15506] = 11,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(192), 1,
2023-11-16 02:35:40 +00:00
anon_sym_EQ,
ACTIONS(562), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH_GT,
ACTIONS(564), 1,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
STATE(174), 1,
2023-11-15 01:41:57 +00:00
sym_logic_operator,
STATE(181), 1,
2023-11-16 02:35:40 +00:00
sym_math_operator,
ACTIONS(196), 2,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(202), 2,
2023-11-15 01:41:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 3,
2023-11-15 01:00:57 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(190), 6,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(200), 6,
2023-11-15 01:00:57 +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,
[15554] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(576), 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_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(578), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15586] = 6,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(570), 1,
anon_sym_COLON,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(208), 5,
anon_sym_async,
sym_identifier,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 16,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[15624] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(334), 11,
ts_builtin_sym_end,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(336), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15656] = 11,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
anon_sym_DASH,
ACTIONS(550), 1,
anon_sym_DASH_GT,
ACTIONS(570), 1,
anon_sym_COLON,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(192), 2,
anon_sym_async,
sym_identifier,
ACTIONS(202), 2,
2023-11-15 03:26:32 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(190), 5,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_EQ_GT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[15704] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(580), 11,
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(582), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15736] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(290), 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_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(292), 13,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15768] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(584), 11,
ts_builtin_sym_end,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(586), 13,
2023-11-15 00:22:26 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15800] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(588), 11,
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(590), 13,
2023-11-15 03:26:32 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15832] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(592), 11,
ts_builtin_sym_end,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 03:26:32 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(594), 13,
2023-11-15 01:00:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:00:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15864] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(596), 11,
ts_builtin_sym_end,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(598), 13,
2023-11-15 01:41:57 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15896] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(600), 11,
ts_builtin_sym_end,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 01:41:57 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(602), 13,
2023-11-12 18:20:41 +00:00
anon_sym_async,
anon_sym_return,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15928] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(405), 11,
ts_builtin_sym_end,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(407), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[15960] = 14,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(170), 1,
anon_sym_async,
ACTIONS(172), 1,
anon_sym_LBRACE,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(326), 1,
sym_identifier,
ACTIONS(550), 1,
anon_sym_DASH_GT,
ACTIONS(570), 1,
anon_sym_COLON,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(334), 1,
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(324), 3,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
ACTIONS(198), 4,
anon_sym_PLUS,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[16014] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(316), 5,
anon_sym_async,
sym_identifier,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(314), 18,
anon_sym_LBRACE,
2023-11-15 01:00:57 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[16045] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(274), 18,
2023-11-15 01:00:57 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
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,
[16076] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(296), 5,
anon_sym_async,
sym_identifier,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(294), 18,
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-11-14 23:56:44 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[16107] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(304), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-16 02:35:40 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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-16 02:35:40 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16138] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(288), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(286), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16169] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(316), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(314), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16200] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(268), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(266), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-11 01:44:03 +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,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16231] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(296), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(294), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
2023-11-15 01:41:57 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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-15 01:41:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16262] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(304), 5,
anon_sym_async,
sym_identifier,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 18,
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[16293] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(254), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(252), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
2023-11-14 23:56:44 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16324] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(254), 5,
anon_sym_async,
sym_identifier,
2023-11-15 01:00:57 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(252), 18,
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[16355] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(300), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(298), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16386] = 6,
2023-11-05 18:54:29 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(270), 1,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
STATE(49), 1,
sym_assignment_operator,
ACTIONS(272), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(244), 4,
2023-11-15 01:00:57 +00:00
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(242), 15,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-15 01:00:57 +00:00
sym_identifier,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[16423] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(268), 5,
anon_sym_async,
sym_identifier,
2023-11-15 00:22:26 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(266), 18,
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
2023-11-15 01:00:57 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[16454] = 3,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(264), 5,
2023-11-15 01:00:57 +00:00
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(262), 18,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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-15 01:00:57 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16485] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(312), 5,
anon_sym_async,
sym_identifier,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(310), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
anon_sym_DASH_GT,
[16516] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(288), 5,
anon_sym_async,
sym_identifier,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(286), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 03:26:32 +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_EQ_GT,
anon_sym_DASH_GT,
[16547] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(308), 5,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-15 03:26:32 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(306), 18,
2023-11-15 03:26:32 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 03:26:32 +00:00
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16578] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(280), 5,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(278), 18,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16609] = 6,
2023-11-05 18:54:29 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(270), 1,
anon_sym_EQ,
STATE(46), 1,
sym_assignment_operator,
ACTIONS(272), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(244), 4,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(242), 15,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[16646] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(308), 5,
2023-11-15 00:22:26 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(306), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
[16677] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(300), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(298), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +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_EQ_GT,
anon_sym_DASH_GT,
[16708] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(264), 5,
2023-11-15 00:22:26 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-15 00:22:26 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(262), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
anon_sym_DASH_GT,
[16739] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(284), 5,
2023-11-15 00:22:26 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(282), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
anon_sym_DASH_GT,
[16770] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(292), 5,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(290), 18,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16801] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(284), 5,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(282), 18,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16832] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(276), 5,
2023-11-15 01:00:57 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(274), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
anon_sym_DASH_GT,
[16863] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(280), 5,
2023-11-15 00:22:26 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(278), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
anon_sym_DASH_GT,
[16894] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(312), 5,
anon_sym_EQ,
anon_sym_PLUS,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(310), 18,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[16925] = 3,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 5,
2023-11-15 00:22:26 +00:00
anon_sym_async,
sym_identifier,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(290), 18,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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_EQ_GT,
anon_sym_DASH_GT,
[16956] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(604), 13,
anon_sym_async,
anon_sym_return,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[16985] = 10,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(564), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(334), 4,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
ACTIONS(200), 6,
2023-11-15 01:41:57 +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,
[17028] = 11,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(564), 1,
2023-11-15 01:41:57 +00:00
anon_sym_COLON,
ACTIONS(608), 1,
anon_sym_SEMI,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-15 01:41:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(334), 3,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
ACTIONS(198), 4,
2023-11-15 01:41:57 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17073] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(330), 4,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17116] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(340), 4,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_identifier,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17159] = 12,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-15 01:41:57 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
ACTIONS(610), 1,
2023-11-15 03:26:32 +00:00
anon_sym_async,
ACTIONS(612), 1,
anon_sym_LBRACE,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(328), 1,
2023-11-15 01:41:57 +00:00
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17205] = 12,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
ACTIONS(614), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(255), 1,
2023-11-15 03:26:32 +00:00
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17251] = 12,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
ACTIONS(616), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
ACTIONS(618), 1,
anon_sym_LBRACE,
STATE(162), 1,
2023-11-15 03:26:32 +00:00
sym_block,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17297] = 12,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
ACTIONS(616), 1,
anon_sym_async,
ACTIONS(618), 1,
anon_sym_LBRACE,
STATE(165), 1,
sym_block,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17343] = 12,
2023-11-11 01:44:03 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(172), 1,
anon_sym_LBRACE,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
ACTIONS(620), 1,
anon_sym_async,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(332), 1,
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17389] = 12,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
ACTIONS(614), 1,
anon_sym_async,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(257), 1,
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17435] = 12,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(172), 1,
anon_sym_LBRACE,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
ACTIONS(620), 1,
anon_sym_async,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(337), 1,
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17481] = 12,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 00:22:26 +00:00
anon_sym_COLON,
ACTIONS(610), 1,
anon_sym_async,
ACTIONS(612), 1,
anon_sym_LBRACE,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
STATE(327), 1,
sym_block,
ACTIONS(202), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17527] = 10,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
anon_sym_DASH_GT,
ACTIONS(570), 1,
anon_sym_COLON,
ACTIONS(622), 1,
anon_sym_EQ_GT,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17567] = 10,
2023-11-05 18:54:29 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-16 02:35:40 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-16 02:35:40 +00:00
anon_sym_COLON,
ACTIONS(624), 1,
anon_sym_EQ_GT,
STATE(200), 1,
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17607] = 9,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(196), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
ACTIONS(550), 1,
2023-11-15 03:26:32 +00:00
anon_sym_DASH_GT,
ACTIONS(570), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COLON,
STATE(200), 1,
2023-11-16 02:35:40 +00:00
sym_logic_operator,
STATE(202), 1,
sym_math_operator,
ACTIONS(202), 2,
2023-11-16 02:35:40 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 4,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(200), 6,
2023-11-11 01:44:03 +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,
[17644] = 4,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(626), 1,
2023-11-15 03:26:32 +00:00
anon_sym_RPAREN,
ACTIONS(304), 3,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 12,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[17670] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(628), 1,
2023-11-11 01:44:03 +00:00
anon_sym_RPAREN,
ACTIONS(304), 3,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 12,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[17696] = 4,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(630), 1,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
ACTIONS(304), 3,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 12,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[17722] = 4,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(632), 1,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
ACTIONS(304), 3,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 12,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[17748] = 4,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(634), 1,
2023-11-15 01:00:57 +00:00
anon_sym_RPAREN,
ACTIONS(304), 3,
2023-11-15 03:26:32 +00:00
anon_sym_DASH,
2023-11-15 01:00:57 +00:00
anon_sym_GT,
anon_sym_LT,
ACTIONS(302), 12,
2023-11-15 01:00:57 +00:00
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[17774] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 5,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(596), 9,
2023-11-15 01:41:57 +00:00
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-15 01:41:57 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17796] = 3,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 5,
2023-11-15 03:26:32 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(290), 9,
2023-11-15 03:26:32 +00:00
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-15 03:26:32 +00:00
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17818] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(312), 5,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(310), 9,
2023-11-15 01:41:57 +00:00
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-15 01:41:57 +00:00
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17840] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(636), 5,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(475), 7,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17860] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(638), 5,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(448), 7,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
anon_sym_PIPE,
[17880] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(640), 6,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(642), 6,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17900] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(644), 6,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-16 02:35:40 +00:00
anon_sym_from,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(646), 6,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17920] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(648), 5,
2023-11-15 00:22:26 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(650), 6,
2023-11-15 00:22:26 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17939] = 3,
2023-11-15 00:22:26 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(652), 5,
2023-11-15 01:41:57 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(654), 6,
2023-11-15 01:41:57 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[17958] = 7,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(399), 1,
2023-10-31 19:21:13 +00:00
sym_identifier,
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_elseif,
ACTIONS(658), 1,
2023-11-11 01:44:03 +00:00
anon_sym_else,
STATE(330), 1,
2023-11-11 01:44:03 +00:00
sym_else,
STATE(323), 2,
2023-11-11 01:44:03 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(397), 3,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
[17983] = 7,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(407), 1,
2023-11-10 23:44:56 +00:00
sym_identifier,
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_elseif,
ACTIONS(658), 1,
2023-11-11 01:44:03 +00:00
anon_sym_else,
STATE(331), 1,
2023-11-11 01:44:03 +00:00
sym_else,
STATE(324), 2,
2023-11-11 01:44:03 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(405), 3,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
[18008] = 5,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(660), 1,
2023-11-11 01:44:03 +00:00
anon_sym_elseif,
ACTIONS(411), 2,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
STATE(324), 2,
2023-11-11 01:44:03 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(409), 3,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
[18028] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 2,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
ACTIONS(290), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
anon_sym_elseif,
[18042] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(312), 2,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
ACTIONS(310), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
anon_sym_elseif,
[18056] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(502), 2,
2023-10-31 19:21:13 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
ACTIONS(500), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
anon_sym_elseif,
[18070] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(506), 2,
2023-11-12 18:20:41 +00:00
sym_identifier,
anon_sym_else,
ACTIONS(504), 4,
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
2023-11-16 02:35:40 +00:00
anon_sym_elseif,
[18084] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(572), 4,
2023-11-15 01:41:57 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-15 01:00:57 +00:00
anon_sym_COMMA,
sym_identifier,
[18094] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(405), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18104] = 2,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(580), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18114] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(592), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18124] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(566), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
2023-11-04 10:02:27 +00:00
sym_identifier,
[18134] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(588), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18144] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(608), 1,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
ACTIONS(334), 3,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18156] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(334), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
2023-10-31 19:21:13 +00:00
sym_identifier,
[18166] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(584), 4,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18176] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(600), 4,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
2023-11-04 10:02:27 +00:00
sym_identifier,
[18186] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-16 02:35:40 +00:00
ACTIONS(576), 4,
2023-11-15 01:41:57 +00:00
anon_sym_SEMI,
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
[18196] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 1,
sym_identifier,
ACTIONS(665), 1,
anon_sym_PIPE,
STATE(346), 1,
aux_sym_identifier_list_repeat1,
[18209] = 4,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(667), 1,
2023-11-16 02:35:40 +00:00
anon_sym_async,
ACTIONS(669), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
STATE(313), 1,
2023-11-16 02:35:40 +00:00
sym_block,
[18222] = 4,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(9), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
ACTIONS(614), 1,
anon_sym_async,
STATE(241), 1,
2023-11-12 18:20:41 +00:00
sym_block,
[18235] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(673), 1,
anon_sym_RPAREN,
STATE(348), 1,
aux_sym_map_repeat1,
[18248] = 3,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(677), 1,
2023-11-15 03:26:32 +00:00
anon_sym_COMMA,
ACTIONS(675), 2,
sym_identifier,
anon_sym_PIPE,
[18259] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(679), 1,
anon_sym_RPAREN,
STATE(348), 1,
aux_sym_map_repeat1,
[18272] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 1,
2023-11-15 01:00:57 +00:00
sym_identifier,
ACTIONS(681), 1,
2023-11-16 02:35:40 +00:00
anon_sym_PIPE,
STATE(355), 1,
2023-11-16 02:35:40 +00:00
aux_sym_identifier_list_repeat1,
[18285] = 4,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(683), 1,
anon_sym_async,
ACTIONS(685), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_block,
[18298] = 4,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(687), 1,
2023-11-15 03:26:32 +00:00
sym_identifier,
ACTIONS(690), 1,
anon_sym_RPAREN,
STATE(348), 1,
aux_sym_map_repeat1,
[18311] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(172), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
ACTIONS(620), 1,
anon_sym_async,
STATE(333), 1,
2023-11-12 18:20:41 +00:00
sym_block,
[18324] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(172), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
ACTIONS(620), 1,
2023-11-16 02:35:40 +00:00
anon_sym_async,
STATE(272), 1,
2023-11-16 02:35:40 +00:00
sym_block,
[18337] = 4,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(172), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
ACTIONS(620), 1,
anon_sym_async,
STATE(284), 1,
2023-11-16 02:35:40 +00:00
sym_block,
[18350] = 4,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
sym_identifier,
ACTIONS(692), 1,
anon_sym_RPAREN,
STATE(348), 1,
aux_sym_map_repeat1,
[18363] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(694), 1,
anon_sym_async,
ACTIONS(696), 1,
anon_sym_LBRACE,
STATE(276), 1,
sym_block,
[18376] = 4,
2023-11-16 02:35:40 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
ACTIONS(698), 1,
anon_sym_RPAREN,
STATE(348), 1,
2023-11-16 02:35:40 +00:00
aux_sym_map_repeat1,
[18389] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(700), 1,
2023-11-04 10:02:27 +00:00
sym_identifier,
ACTIONS(703), 1,
anon_sym_PIPE,
STATE(355), 1,
aux_sym_identifier_list_repeat1,
[18402] = 4,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(683), 1,
2023-11-15 00:22:26 +00:00
anon_sym_async,
ACTIONS(685), 1,
anon_sym_LBRACE,
STATE(97), 1,
2023-11-15 00:22:26 +00:00
sym_block,
[18415] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(707), 1,
anon_sym_COMMA,
ACTIONS(705), 2,
anon_sym_RPAREN,
sym_identifier,
[18426] = 4,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(709), 1,
2023-11-15 03:26:32 +00:00
anon_sym_async,
ACTIONS(711), 1,
2023-11-15 03:26:32 +00:00
anon_sym_LBRACE,
STATE(61), 1,
2023-11-15 03:26:32 +00:00
sym_block,
[18439] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(9), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
ACTIONS(614), 1,
2023-11-15 03:26:32 +00:00
anon_sym_async,
STATE(258), 1,
2023-11-15 01:41:57 +00:00
sym_block,
[18452] = 4,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(713), 1,
anon_sym_async,
ACTIONS(715), 1,
anon_sym_LBRACE,
STATE(139), 1,
sym_block,
[18465] = 4,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(671), 1,
2023-11-15 01:41:57 +00:00
sym_identifier,
ACTIONS(717), 1,
anon_sym_RPAREN,
STATE(348), 1,
2023-11-15 03:26:32 +00:00
aux_sym_map_repeat1,
[18478] = 4,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(713), 1,
anon_sym_async,
ACTIONS(715), 1,
anon_sym_LBRACE,
STATE(130), 1,
sym_block,
[18491] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(709), 1,
anon_sym_async,
ACTIONS(711), 1,
anon_sym_LBRACE,
STATE(63), 1,
sym_block,
[18504] = 4,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(694), 1,
anon_sym_async,
ACTIONS(696), 1,
anon_sym_LBRACE,
STATE(271), 1,
sym_block,
[18517] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
STATE(166), 1,
2023-11-16 02:35:40 +00:00
sym_identifier_list,
[18527] = 3,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
STATE(183), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
[18537] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
STATE(184), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
[18547] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
STATE(193), 1,
sym_identifier_list,
[18557] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(719), 2,
anon_sym_RPAREN,
2023-11-16 02:35:40 +00:00
sym_identifier,
[18565] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
STATE(212), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
[18575] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(39), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
STATE(201), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
[18585] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
STATE(393), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
[18595] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
STATE(228), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
[18605] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(703), 2,
sym_identifier,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
[18613] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
2023-11-15 01:00:57 +00:00
anon_sym_PIPE,
2023-11-16 02:35:40 +00:00
STATE(210), 1,
2023-11-15 01:00:57 +00:00
sym_identifier_list,
[18623] = 3,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
STATE(206), 1,
sym_identifier_list,
[18633] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
STATE(204), 1,
sym_identifier_list,
[18643] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(39), 1,
anon_sym_PIPE,
STATE(391), 1,
sym_identifier_list,
[18653] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(721), 1,
2023-11-16 02:35:40 +00:00
anon_sym_EQ_GT,
[18660] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(723), 1,
anon_sym_EQ,
[18667] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(725), 1,
anon_sym_EQ_GT,
[18674] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(727), 1,
anon_sym_EQ_GT,
[18681] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(729), 1,
anon_sym_LPAREN,
[18688] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(731), 1,
2023-11-15 03:26:32 +00:00
anon_sym_RPAREN,
[18695] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(733), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
[18702] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(735), 1,
2023-11-15 01:41:57 +00:00
anon_sym_in,
[18709] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(737), 1,
2023-11-16 02:35:40 +00:00
anon_sym_RPAREN,
[18716] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(739), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
[18723] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(741), 1,
anon_sym_LBRACE,
[18730] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(743), 1,
anon_sym_RPAREN,
[18737] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(745), 1,
anon_sym_from,
[18744] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(747), 1,
sym_identifier,
[18751] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(749), 1,
anon_sym_from,
[18758] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(751), 1,
anon_sym_in,
[18765] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(753), 1,
anon_sym_EQ_GT,
[18772] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(755), 1,
2023-11-16 02:35:40 +00:00
anon_sym_RPAREN,
[18779] = 2,
2023-11-15 03:26:32 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(757), 1,
2023-11-16 02:35:40 +00:00
anon_sym_EQ_GT,
[18786] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(759), 1,
ts_builtin_sym_end,
[18793] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(761), 1,
anon_sym_into,
[18800] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(763), 1,
sym_identifier,
[18807] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(765), 1,
anon_sym_into,
[18814] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(767), 1,
anon_sym_RPAREN,
[18821] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(769), 1,
sym_identifier,
[18828] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(771), 1,
anon_sym_RPAREN,
[18835] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(773), 1,
anon_sym_RPAREN,
[18842] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(775), 1,
anon_sym_RPAREN,
[18849] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(777), 1,
anon_sym_RPAREN,
[18856] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(779), 1,
2023-11-15 01:41:57 +00:00
anon_sym_LBRACE,
[18863] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(781), 1,
anon_sym_LPAREN,
[18870] = 2,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(783), 1,
anon_sym_LBRACE,
[18877] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(785), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
[18884] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(787), 1,
anon_sym_LBRACE,
[18891] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(789), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LPAREN,
[18898] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
ACTIONS(791), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
[18905] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(793), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
[18912] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(795), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
[18919] = 2,
2023-11-15 01:00:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(797), 1,
2023-11-16 02:35:40 +00:00
anon_sym_LBRACE,
[18926] = 2,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(799), 1,
2023-11-16 02:35:40 +00:00
sym_identifier,
[18933] = 2,
2023-11-15 01:41:57 +00:00
ACTIONS(3), 1,
sym__comment,
ACTIONS(801), 1,
anon_sym_RPAREN,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-11-15 00:22:26 +00:00
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 101,
[SMALL_STATE(4)] = 202,
[SMALL_STATE(5)] = 303,
[SMALL_STATE(6)] = 404,
[SMALL_STATE(7)] = 505,
[SMALL_STATE(8)] = 615,
[SMALL_STATE(9)] = 724,
[SMALL_STATE(10)] = 833,
[SMALL_STATE(11)] = 942,
[SMALL_STATE(12)] = 1051,
[SMALL_STATE(13)] = 1160,
[SMALL_STATE(14)] = 1269,
[SMALL_STATE(15)] = 1378,
[SMALL_STATE(16)] = 1487,
[SMALL_STATE(17)] = 1596,
[SMALL_STATE(18)] = 1705,
[SMALL_STATE(19)] = 1814,
[SMALL_STATE(20)] = 1923,
[SMALL_STATE(21)] = 2032,
[SMALL_STATE(22)] = 2141,
[SMALL_STATE(23)] = 2250,
[SMALL_STATE(24)] = 2359,
[SMALL_STATE(25)] = 2468,
[SMALL_STATE(26)] = 2577,
[SMALL_STATE(27)] = 2686,
[SMALL_STATE(28)] = 2792,
[SMALL_STATE(29)] = 2898,
[SMALL_STATE(30)] = 3004,
[SMALL_STATE(31)] = 3110,
[SMALL_STATE(32)] = 3216,
[SMALL_STATE(33)] = 3322,
[SMALL_STATE(34)] = 3428,
[SMALL_STATE(35)] = 3534,
[SMALL_STATE(36)] = 3640,
[SMALL_STATE(37)] = 3746,
[SMALL_STATE(38)] = 3852,
[SMALL_STATE(39)] = 3958,
[SMALL_STATE(40)] = 4064,
[SMALL_STATE(41)] = 4170,
[SMALL_STATE(42)] = 4276,
[SMALL_STATE(43)] = 4382,
[SMALL_STATE(44)] = 4488,
[SMALL_STATE(45)] = 4594,
[SMALL_STATE(46)] = 4699,
[SMALL_STATE(47)] = 4804,
[SMALL_STATE(48)] = 4909,
[SMALL_STATE(49)] = 5014,
[SMALL_STATE(50)] = 5119,
[SMALL_STATE(51)] = 5188,
[SMALL_STATE(52)] = 5247,
[SMALL_STATE(53)] = 5304,
[SMALL_STATE(54)] = 5361,
[SMALL_STATE(55)] = 5420,
[SMALL_STATE(56)] = 5489,
[SMALL_STATE(57)] = 5547,
[SMALL_STATE(58)] = 5615,
[SMALL_STATE(59)] = 5683,
[SMALL_STATE(60)] = 5739,
[SMALL_STATE(61)] = 5822,
[SMALL_STATE(62)] = 5873,
[SMALL_STATE(63)] = 5964,
[SMALL_STATE(64)] = 6015,
[SMALL_STATE(65)] = 6066,
[SMALL_STATE(66)] = 6123,
[SMALL_STATE(67)] = 6174,
[SMALL_STATE(68)] = 6225,
[SMALL_STATE(69)] = 6316,
[SMALL_STATE(70)] = 6367,
[SMALL_STATE(71)] = 6418,
[SMALL_STATE(72)] = 6469,
[SMALL_STATE(73)] = 6520,
[SMALL_STATE(74)] = 6571,
[SMALL_STATE(75)] = 6622,
[SMALL_STATE(76)] = 6673,
[SMALL_STATE(77)] = 6724,
[SMALL_STATE(78)] = 6781,
[SMALL_STATE(79)] = 6832,
[SMALL_STATE(80)] = 6888,
[SMALL_STATE(81)] = 6954,
[SMALL_STATE(82)] = 7008,
[SMALL_STATE(83)] = 7080,
[SMALL_STATE(84)] = 7146,
[SMALL_STATE(85)] = 7202,
[SMALL_STATE(86)] = 7256,
[SMALL_STATE(87)] = 7321,
[SMALL_STATE(88)] = 7374,
[SMALL_STATE(89)] = 7439,
[SMALL_STATE(90)] = 7506,
[SMALL_STATE(91)] = 7571,
[SMALL_STATE(92)] = 7626,
[SMALL_STATE(93)] = 7691,
[SMALL_STATE(94)] = 7756,
[SMALL_STATE(95)] = 7804,
[SMALL_STATE(96)] = 7852,
[SMALL_STATE(97)] = 7900,
[SMALL_STATE(98)] = 7948,
[SMALL_STATE(99)] = 7996,
[SMALL_STATE(100)] = 8044,
[SMALL_STATE(101)] = 8092,
[SMALL_STATE(102)] = 8140,
[SMALL_STATE(103)] = 8188,
[SMALL_STATE(104)] = 8236,
[SMALL_STATE(105)] = 8284,
[SMALL_STATE(106)] = 8332,
[SMALL_STATE(107)] = 8380,
[SMALL_STATE(108)] = 8428,
[SMALL_STATE(109)] = 8503,
[SMALL_STATE(110)] = 8578,
[SMALL_STATE(111)] = 8625,
[SMALL_STATE(112)] = 8672,
[SMALL_STATE(113)] = 8719,
[SMALL_STATE(114)] = 8766,
[SMALL_STATE(115)] = 8813,
[SMALL_STATE(116)] = 8859,
[SMALL_STATE(117)] = 8915,
[SMALL_STATE(118)] = 8959,
[SMALL_STATE(119)] = 9005,
[SMALL_STATE(120)] = 9049,
[SMALL_STATE(121)] = 9105,
[SMALL_STATE(122)] = 9160,
[SMALL_STATE(123)] = 9215,
[SMALL_STATE(124)] = 9258,
[SMALL_STATE(125)] = 9303,
[SMALL_STATE(126)] = 9359,
[SMALL_STATE(127)] = 9397,
[SMALL_STATE(128)] = 9435,
[SMALL_STATE(129)] = 9473,
[SMALL_STATE(130)] = 9511,
[SMALL_STATE(131)] = 9549,
[SMALL_STATE(132)] = 9587,
[SMALL_STATE(133)] = 9625,
[SMALL_STATE(134)] = 9663,
[SMALL_STATE(135)] = 9701,
[SMALL_STATE(136)] = 9739,
[SMALL_STATE(137)] = 9795,
[SMALL_STATE(138)] = 9833,
[SMALL_STATE(139)] = 9871,
[SMALL_STATE(140)] = 9909,
[SMALL_STATE(141)] = 9947,
[SMALL_STATE(142)] = 10010,
[SMALL_STATE(143)] = 10055,
[SMALL_STATE(144)] = 10118,
[SMALL_STATE(145)] = 10163,
[SMALL_STATE(146)] = 10203,
[SMALL_STATE(147)] = 10264,
[SMALL_STATE(148)] = 10325,
[SMALL_STATE(149)] = 10386,
[SMALL_STATE(150)] = 10447,
[SMALL_STATE(151)] = 10508,
[SMALL_STATE(152)] = 10569,
[SMALL_STATE(153)] = 10630,
[SMALL_STATE(154)] = 10691,
[SMALL_STATE(155)] = 10752,
[SMALL_STATE(156)] = 10813,
[SMALL_STATE(157)] = 10874,
[SMALL_STATE(158)] = 10935,
[SMALL_STATE(159)] = 10996,
[SMALL_STATE(160)] = 11057,
[SMALL_STATE(161)] = 11118,
[SMALL_STATE(162)] = 11179,
[SMALL_STATE(163)] = 11213,
[SMALL_STATE(164)] = 11247,
[SMALL_STATE(165)] = 11281,
[SMALL_STATE(166)] = 11315,
[SMALL_STATE(167)] = 11370,
[SMALL_STATE(168)] = 11425,
[SMALL_STATE(169)] = 11480,
[SMALL_STATE(170)] = 11535,
[SMALL_STATE(171)] = 11590,
[SMALL_STATE(172)] = 11645,
[SMALL_STATE(173)] = 11700,
[SMALL_STATE(174)] = 11755,
[SMALL_STATE(175)] = 11810,
[SMALL_STATE(176)] = 11865,
[SMALL_STATE(177)] = 11920,
[SMALL_STATE(178)] = 11969,
[SMALL_STATE(179)] = 12024,
[SMALL_STATE(180)] = 12063,
[SMALL_STATE(181)] = 12112,
[SMALL_STATE(182)] = 12167,
[SMALL_STATE(183)] = 12222,
[SMALL_STATE(184)] = 12277,
[SMALL_STATE(185)] = 12332,
[SMALL_STATE(186)] = 12387,
[SMALL_STATE(187)] = 12442,
[SMALL_STATE(188)] = 12479,
[SMALL_STATE(189)] = 12534,
[SMALL_STATE(190)] = 12589,
[SMALL_STATE(191)] = 12644,
[SMALL_STATE(192)] = 12683,
[SMALL_STATE(193)] = 12738,
[SMALL_STATE(194)] = 12793,
[SMALL_STATE(195)] = 12848,
[SMALL_STATE(196)] = 12903,
[SMALL_STATE(197)] = 12958,
[SMALL_STATE(198)] = 13013,
[SMALL_STATE(199)] = 13068,
[SMALL_STATE(200)] = 13123,
[SMALL_STATE(201)] = 13178,
[SMALL_STATE(202)] = 13233,
[SMALL_STATE(203)] = 13288,
[SMALL_STATE(204)] = 13343,
[SMALL_STATE(205)] = 13398,
[SMALL_STATE(206)] = 13453,
[SMALL_STATE(207)] = 13508,
[SMALL_STATE(208)] = 13563,
[SMALL_STATE(209)] = 13618,
[SMALL_STATE(210)] = 13673,
[SMALL_STATE(211)] = 13728,
[SMALL_STATE(212)] = 13765,
[SMALL_STATE(213)] = 13820,
[SMALL_STATE(214)] = 13875,
[SMALL_STATE(215)] = 13930,
[SMALL_STATE(216)] = 13985,
[SMALL_STATE(217)] = 14040,
[SMALL_STATE(218)] = 14095,
[SMALL_STATE(219)] = 14150,
[SMALL_STATE(220)] = 14205,
[SMALL_STATE(221)] = 14260,
[SMALL_STATE(222)] = 14315,
[SMALL_STATE(223)] = 14370,
[SMALL_STATE(224)] = 14425,
[SMALL_STATE(225)] = 14480,
[SMALL_STATE(226)] = 14535,
[SMALL_STATE(227)] = 14590,
[SMALL_STATE(228)] = 14627,
[SMALL_STATE(229)] = 14682,
[SMALL_STATE(230)] = 14737,
[SMALL_STATE(231)] = 14792,
[SMALL_STATE(232)] = 14847,
[SMALL_STATE(233)] = 14902,
[SMALL_STATE(234)] = 14939,
[SMALL_STATE(235)] = 14978,
[SMALL_STATE(236)] = 15033,
[SMALL_STATE(237)] = 15082,
[SMALL_STATE(238)] = 15131,
[SMALL_STATE(239)] = 15170,
[SMALL_STATE(240)] = 15202,
[SMALL_STATE(241)] = 15250,
[SMALL_STATE(242)] = 15282,
[SMALL_STATE(243)] = 15318,
[SMALL_STATE(244)] = 15352,
[SMALL_STATE(245)] = 15400,
[SMALL_STATE(246)] = 15432,
[SMALL_STATE(247)] = 15468,
[SMALL_STATE(248)] = 15506,
[SMALL_STATE(249)] = 15554,
[SMALL_STATE(250)] = 15586,
[SMALL_STATE(251)] = 15624,
[SMALL_STATE(252)] = 15656,
[SMALL_STATE(253)] = 15704,
[SMALL_STATE(254)] = 15736,
[SMALL_STATE(255)] = 15768,
[SMALL_STATE(256)] = 15800,
[SMALL_STATE(257)] = 15832,
[SMALL_STATE(258)] = 15864,
[SMALL_STATE(259)] = 15896,
[SMALL_STATE(260)] = 15928,
[SMALL_STATE(261)] = 15960,
[SMALL_STATE(262)] = 16014,
[SMALL_STATE(263)] = 16045,
[SMALL_STATE(264)] = 16076,
[SMALL_STATE(265)] = 16107,
[SMALL_STATE(266)] = 16138,
[SMALL_STATE(267)] = 16169,
[SMALL_STATE(268)] = 16200,
[SMALL_STATE(269)] = 16231,
[SMALL_STATE(270)] = 16262,
[SMALL_STATE(271)] = 16293,
[SMALL_STATE(272)] = 16324,
[SMALL_STATE(273)] = 16355,
[SMALL_STATE(274)] = 16386,
[SMALL_STATE(275)] = 16423,
[SMALL_STATE(276)] = 16454,
[SMALL_STATE(277)] = 16485,
[SMALL_STATE(278)] = 16516,
[SMALL_STATE(279)] = 16547,
[SMALL_STATE(280)] = 16578,
[SMALL_STATE(281)] = 16609,
[SMALL_STATE(282)] = 16646,
[SMALL_STATE(283)] = 16677,
[SMALL_STATE(284)] = 16708,
[SMALL_STATE(285)] = 16739,
[SMALL_STATE(286)] = 16770,
[SMALL_STATE(287)] = 16801,
[SMALL_STATE(288)] = 16832,
[SMALL_STATE(289)] = 16863,
[SMALL_STATE(290)] = 16894,
[SMALL_STATE(291)] = 16925,
[SMALL_STATE(292)] = 16956,
[SMALL_STATE(293)] = 16985,
[SMALL_STATE(294)] = 17028,
[SMALL_STATE(295)] = 17073,
[SMALL_STATE(296)] = 17116,
[SMALL_STATE(297)] = 17159,
[SMALL_STATE(298)] = 17205,
[SMALL_STATE(299)] = 17251,
[SMALL_STATE(300)] = 17297,
[SMALL_STATE(301)] = 17343,
[SMALL_STATE(302)] = 17389,
[SMALL_STATE(303)] = 17435,
[SMALL_STATE(304)] = 17481,
[SMALL_STATE(305)] = 17527,
[SMALL_STATE(306)] = 17567,
[SMALL_STATE(307)] = 17607,
[SMALL_STATE(308)] = 17644,
[SMALL_STATE(309)] = 17670,
[SMALL_STATE(310)] = 17696,
[SMALL_STATE(311)] = 17722,
[SMALL_STATE(312)] = 17748,
[SMALL_STATE(313)] = 17774,
[SMALL_STATE(314)] = 17796,
[SMALL_STATE(315)] = 17818,
[SMALL_STATE(316)] = 17840,
[SMALL_STATE(317)] = 17860,
[SMALL_STATE(318)] = 17880,
[SMALL_STATE(319)] = 17900,
[SMALL_STATE(320)] = 17920,
[SMALL_STATE(321)] = 17939,
[SMALL_STATE(322)] = 17958,
[SMALL_STATE(323)] = 17983,
[SMALL_STATE(324)] = 18008,
[SMALL_STATE(325)] = 18028,
[SMALL_STATE(326)] = 18042,
[SMALL_STATE(327)] = 18056,
[SMALL_STATE(328)] = 18070,
[SMALL_STATE(329)] = 18084,
[SMALL_STATE(330)] = 18094,
[SMALL_STATE(331)] = 18104,
[SMALL_STATE(332)] = 18114,
[SMALL_STATE(333)] = 18124,
[SMALL_STATE(334)] = 18134,
[SMALL_STATE(335)] = 18144,
[SMALL_STATE(336)] = 18156,
[SMALL_STATE(337)] = 18166,
[SMALL_STATE(338)] = 18176,
[SMALL_STATE(339)] = 18186,
[SMALL_STATE(340)] = 18196,
[SMALL_STATE(341)] = 18209,
[SMALL_STATE(342)] = 18222,
[SMALL_STATE(343)] = 18235,
[SMALL_STATE(344)] = 18248,
[SMALL_STATE(345)] = 18259,
[SMALL_STATE(346)] = 18272,
[SMALL_STATE(347)] = 18285,
[SMALL_STATE(348)] = 18298,
[SMALL_STATE(349)] = 18311,
[SMALL_STATE(350)] = 18324,
[SMALL_STATE(351)] = 18337,
[SMALL_STATE(352)] = 18350,
[SMALL_STATE(353)] = 18363,
[SMALL_STATE(354)] = 18376,
[SMALL_STATE(355)] = 18389,
[SMALL_STATE(356)] = 18402,
[SMALL_STATE(357)] = 18415,
[SMALL_STATE(358)] = 18426,
[SMALL_STATE(359)] = 18439,
[SMALL_STATE(360)] = 18452,
[SMALL_STATE(361)] = 18465,
[SMALL_STATE(362)] = 18478,
[SMALL_STATE(363)] = 18491,
[SMALL_STATE(364)] = 18504,
[SMALL_STATE(365)] = 18517,
[SMALL_STATE(366)] = 18527,
[SMALL_STATE(367)] = 18537,
[SMALL_STATE(368)] = 18547,
[SMALL_STATE(369)] = 18557,
[SMALL_STATE(370)] = 18565,
[SMALL_STATE(371)] = 18575,
[SMALL_STATE(372)] = 18585,
[SMALL_STATE(373)] = 18595,
[SMALL_STATE(374)] = 18605,
[SMALL_STATE(375)] = 18613,
[SMALL_STATE(376)] = 18623,
[SMALL_STATE(377)] = 18633,
[SMALL_STATE(378)] = 18643,
[SMALL_STATE(379)] = 18653,
[SMALL_STATE(380)] = 18660,
[SMALL_STATE(381)] = 18667,
[SMALL_STATE(382)] = 18674,
[SMALL_STATE(383)] = 18681,
[SMALL_STATE(384)] = 18688,
[SMALL_STATE(385)] = 18695,
[SMALL_STATE(386)] = 18702,
[SMALL_STATE(387)] = 18709,
[SMALL_STATE(388)] = 18716,
[SMALL_STATE(389)] = 18723,
[SMALL_STATE(390)] = 18730,
[SMALL_STATE(391)] = 18737,
[SMALL_STATE(392)] = 18744,
[SMALL_STATE(393)] = 18751,
[SMALL_STATE(394)] = 18758,
[SMALL_STATE(395)] = 18765,
[SMALL_STATE(396)] = 18772,
[SMALL_STATE(397)] = 18779,
[SMALL_STATE(398)] = 18786,
[SMALL_STATE(399)] = 18793,
[SMALL_STATE(400)] = 18800,
[SMALL_STATE(401)] = 18807,
[SMALL_STATE(402)] = 18814,
[SMALL_STATE(403)] = 18821,
[SMALL_STATE(404)] = 18828,
[SMALL_STATE(405)] = 18835,
[SMALL_STATE(406)] = 18842,
[SMALL_STATE(407)] = 18849,
[SMALL_STATE(408)] = 18856,
[SMALL_STATE(409)] = 18863,
[SMALL_STATE(410)] = 18870,
[SMALL_STATE(411)] = 18877,
[SMALL_STATE(412)] = 18884,
[SMALL_STATE(413)] = 18891,
[SMALL_STATE(414)] = 18898,
[SMALL_STATE(415)] = 18905,
[SMALL_STATE(416)] = 18912,
[SMALL_STATE(417)] = 18919,
[SMALL_STATE(418)] = 18926,
[SMALL_STATE(419)] = 18933,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-31 07:17:58 +00:00
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403),
[33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60),
[45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275),
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377),
[61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
[63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(65),
[76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(389),
[79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40),
[82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(170),
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(5),
[88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(96),
[91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(96),
[94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(99),
[97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(155),
[100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171),
[103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(173),
[106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(356),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(178),
[112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(403),
[115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(403),
[118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(372),
[121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(401),
[124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(340),
[127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(370),
[130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274),
[170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226),
[176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217),
[178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221),
[182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378),
[188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399),
[190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320),
[198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321),
[204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
[206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3),
[222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3),
[224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127),
[228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1),
[232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
[234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
[238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
[248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340),
[250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367),
[252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2),
[254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2),
[256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270),
[258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
[262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1),
[264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1),
[266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383),
[324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4),
[326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4),
[328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(270),
[349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(6),
[354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(275),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(275),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(278),
[363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(150),
[366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(351),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(340),
[372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(377),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148),
[381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342),
[405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(223),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2),
[428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2),
[430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(127),
[433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(3),
[436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(128),
[439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(128),
[442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(132),
[445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(146),
[448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(362),
[453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(340),
[456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(367),
[459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1),
[465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(127),
[472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(3),
[475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(128),
[480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(128),
[483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(132),
[486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(146),
[489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(362),
[492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(340),
[495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(367),
[498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365),
[524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
[526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375),
[528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373),
[544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366),
[546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368),
[548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
[552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3),
[642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3),
[644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2),
[646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2),
[648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349),
[660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(224),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(380),
[690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
[696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(344),
[703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
[709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
[711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410),
[715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
[727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
[729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
[759] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
[763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392),
[767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
[771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
[801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
};
#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,
2023-10-31 05:09:29 +00:00
.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