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

16462 lines
374 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2023-11-15 00:22:26 +00:00
#define STATE_COUNT 360
#define LARGE_STATE_COUNT 2
2023-11-12 18:20:41 +00:00
#define SYMBOL_COUNT 131
#define ALIAS_COUNT 0
2023-11-12 18:20:41 +00:00
#define TOKEN_COUNT 87
#define EXTERNAL_TOKEN_COUNT 0
2023-10-31 22:18:39 +00:00
#define FIELD_COUNT 6
2023-10-31 13:31:10 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 7
2023-10-31 22:18:39 +00:00
#define PRODUCTION_ID_COUNT 5
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_LPAREN = 7,
anon_sym_RPAREN = 8,
anon_sym_COMMA = 9,
sym_integer = 10,
sym_float = 11,
sym_string = 12,
anon_sym_true = 13,
anon_sym_false = 14,
anon_sym_LBRACK = 15,
anon_sym_RBRACK = 16,
anon_sym_EQ = 17,
anon_sym_COLON = 18,
anon_sym_DOT_DOT = 19,
anon_sym_PLUS = 20,
anon_sym_DASH = 21,
anon_sym_STAR = 22,
anon_sym_SLASH = 23,
anon_sym_PERCENT = 24,
anon_sym_EQ_EQ = 25,
anon_sym_BANG_EQ = 26,
anon_sym_AMP_AMP = 27,
anon_sym_PIPE_PIPE = 28,
anon_sym_GT = 29,
anon_sym_LT = 30,
anon_sym_GT_EQ = 31,
anon_sym_LT_EQ = 32,
anon_sym_PLUS_EQ = 33,
anon_sym_DASH_EQ = 34,
anon_sym_if = 35,
anon_sym_elseif = 36,
anon_sym_else = 37,
anon_sym_match = 38,
anon_sym_EQ_GT = 39,
anon_sym_while = 40,
anon_sym_for = 41,
anon_sym_asyncfor = 42,
anon_sym_in = 43,
anon_sym_transform = 44,
anon_sym_filter = 45,
anon_sym_find = 46,
anon_sym_remove = 47,
anon_sym_from = 48,
anon_sym_reduce = 49,
anon_sym_to = 50,
anon_sym_select = 51,
anon_sym_insert = 52,
anon_sym_into = 53,
2023-11-04 10:02:27 +00:00
anon_sym_PIPE = 54,
anon_sym_table = 55,
2023-11-12 18:20:41 +00:00
anon_sym_assert = 56,
anon_sym_assert_equal = 57,
anon_sym_context = 58,
anon_sym_download = 59,
anon_sym_help = 60,
anon_sym_length = 61,
anon_sym_output = 62,
anon_sym_output_error = 63,
anon_sym_type = 64,
anon_sym_append = 65,
anon_sym_metadata = 66,
anon_sym_move = 67,
anon_sym_read = 68,
anon_sym_workdir = 69,
anon_sym_write = 70,
anon_sym_from_json = 71,
anon_sym_to_json = 72,
anon_sym_to_string = 73,
anon_sym_to_float = 74,
anon_sym_bash = 75,
anon_sym_fish = 76,
anon_sym_raw = 77,
anon_sym_sh = 78,
anon_sym_zsh = 79,
anon_sym_random = 80,
anon_sym_random_boolean = 81,
anon_sym_random_float = 82,
anon_sym_random_integer = 83,
anon_sym_columns = 84,
anon_sym_rows = 85,
anon_sym_reverse = 86,
sym_root = 87,
sym_block = 88,
sym_statement = 89,
sym_expression = 90,
sym__expression_kind = 91,
aux_sym__expression_list = 92,
sym_value = 93,
sym_boolean = 94,
sym_list = 95,
sym_map = 96,
sym_index = 97,
sym_math = 98,
sym_math_operator = 99,
sym_logic = 100,
sym_logic_operator = 101,
sym_assignment = 102,
sym_assignment_operator = 103,
sym_if_else = 104,
sym_if = 105,
sym_else_if = 106,
sym_else = 107,
sym_match = 108,
sym_while = 109,
sym_for = 110,
sym_transform = 111,
sym_filter = 112,
sym_find = 113,
sym_remove = 114,
sym_reduce = 115,
sym_select = 116,
sym_insert = 117,
sym_identifier_list = 118,
sym_table = 119,
sym_function = 120,
sym_function_call = 121,
sym__context_defined_function = 122,
sym_built_in_function = 123,
sym__built_in_function_name = 124,
aux_sym_root_repeat1 = 125,
aux_sym_list_repeat1 = 126,
aux_sym_map_repeat1 = 127,
aux_sym_if_else_repeat1 = 128,
aux_sym_match_repeat1 = 129,
aux_sym_identifier_list_repeat1 = 130,
};
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_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",
[anon_sym_transform] = "transform",
[anon_sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[anon_sym_find] = "find",
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = "remove",
[anon_sym_from] = "from",
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = "reduce",
[anon_sym_to] = "to",
[anon_sym_select] = "select",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
2023-10-31 22:18:39 +00:00
[anon_sym_PIPE] = "|",
[anon_sym_table] = "table",
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_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-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_transform] = "transform",
[sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[sym_find] = "find",
2023-10-19 01:50:45 +00:00
[sym_remove] = "remove",
2023-10-31 05:09:29 +00:00
[sym_reduce] = "reduce",
[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",
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_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,
[anon_sym_transform] = anon_sym_transform,
[anon_sym_filter] = anon_sym_filter,
2023-10-18 22:18:41 +00:00
[anon_sym_find] = anon_sym_find,
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = anon_sym_remove,
[anon_sym_from] = anon_sym_from,
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = anon_sym_reduce,
[anon_sym_to] = anon_sym_to,
[anon_sym_select] = anon_sym_select,
[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,
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_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-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_transform] = sym_transform,
[sym_filter] = sym_filter,
2023-10-18 22:18:41 +00:00
[sym_find] = sym_find,
2023-10-19 01:50:45 +00:00
[sym_remove] = sym_remove,
2023-10-31 05:09:29 +00:00
[sym_reduce] = sym_reduce,
[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,
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_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_transform] = {
.visible = true,
.named = false,
},
[anon_sym_filter] = {
.visible = true,
.named = false,
},
2023-10-18 22:18:41 +00:00
[anon_sym_find] = {
.visible = true,
.named = false,
},
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_from] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = {
.visible = true,
.named = false,
},
[anon_sym_to] = {
.visible = true,
.named = false,
},
[anon_sym_select] = {
.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,
},
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_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-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_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
2023-10-18 22:18:41 +00:00
[sym_find] = {
.visible = true,
.named = true,
},
2023-10-19 01:50:45 +00:00
[sym_remove] = {
.visible = true,
.named = true,
},
2023-10-31 05:09:29 +00:00
[sym_reduce] = {
.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,
},
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_collection = 2,
field_count = 3,
2023-11-04 10:02:27 +00:00
field_item_id = 4,
field_parameters = 5,
field_predicate = 6,
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",
2023-10-31 05:09:29 +00:00
[field_collection] = "collection",
[field_count] = "count",
2023-11-04 10:02:27 +00:00
[field_item_id] = "item_id",
2023-10-31 22:18:39 +00:00
[field_parameters] = "parameters",
2023-10-31 05:09:29 +00:00
[field_predicate] = "predicate",
};
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},
[3] = {.index = 3, .length = 3},
[4] = {.index = 6, .length = 4},
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},
[3] =
2023-10-31 05:09:29 +00:00
{field_collection, 3},
2023-11-04 10:02:27 +00:00
{field_item_id, 1},
2023-10-31 13:31:10 +00:00
{field_predicate, 4},
2023-10-31 22:18:39 +00:00
[6] =
2023-10-31 05:09:29 +00:00
{field_collection, 4},
{field_count, 1},
2023-11-04 10:02:27 +00:00
{field_item_id, 2},
2023-10-31 13:31:10 +00:00
{field_predicate, 5},
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-11 01:44:03 +00:00
[5] = 5,
2023-11-15 00:22:26 +00:00
[6] = 5,
2023-11-11 01:44:03 +00:00
[7] = 7,
2023-11-14 23:56:44 +00:00
[8] = 8,
2023-11-15 00:22:26 +00:00
[9] = 8,
[10] = 8,
[11] = 11,
[12] = 8,
[13] = 11,
[14] = 11,
[15] = 15,
[16] = 11,
[17] = 11,
[18] = 8,
[19] = 8,
[20] = 11,
[21] = 11,
[22] = 8,
[23] = 23,
2023-11-14 23:56:44 +00:00
[24] = 24,
2023-11-15 00:22:26 +00:00
[25] = 23,
[26] = 23,
[27] = 24,
[28] = 23,
[29] = 23,
[30] = 24,
[31] = 24,
[32] = 23,
[33] = 24,
[34] = 23,
2023-11-14 23:56:44 +00:00
[35] = 24,
2023-11-15 00:22:26 +00:00
[36] = 24,
[37] = 37,
[38] = 38,
2023-11-14 23:56:44 +00:00
[39] = 39,
2023-11-15 00:22:26 +00:00
[40] = 37,
2023-11-14 23:56:44 +00:00
[41] = 41,
2023-11-15 00:22:26 +00:00
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 43,
[46] = 46,
[47] = 47,
[48] = 48,
[49] = 49,
[50] = 50,
[51] = 42,
[52] = 48,
2023-11-12 18:20:41 +00:00
[53] = 53,
2023-11-15 00:22:26 +00:00
[54] = 49,
[55] = 46,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[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] = 68,
[69] = 69,
[70] = 70,
2023-11-12 18:20:41 +00:00
[71] = 71,
2023-11-15 00:22:26 +00:00
[72] = 70,
2023-11-12 18:20:41 +00:00
[73] = 73,
[74] = 74,
2023-11-15 00:22:26 +00:00
[75] = 75,
[76] = 43,
2023-11-12 18:20:41 +00:00
[77] = 77,
2023-11-15 00:22:26 +00:00
[78] = 43,
[79] = 49,
[80] = 42,
[81] = 46,
[82] = 48,
[83] = 48,
[84] = 46,
[85] = 42,
[86] = 49,
[87] = 87,
[88] = 59,
[89] = 89,
2023-11-12 18:20:41 +00:00
[90] = 90,
2023-11-15 00:22:26 +00:00
[91] = 57,
[92] = 64,
[93] = 93,
[94] = 58,
[95] = 58,
[96] = 62,
[97] = 63,
[98] = 68,
[99] = 67,
[100] = 61,
[101] = 60,
[102] = 56,
[103] = 65,
[104] = 66,
[105] = 64,
[106] = 71,
[107] = 69,
[108] = 108,
[109] = 109,
[110] = 58,
2023-11-14 23:56:44 +00:00
[111] = 111,
2023-11-15 00:22:26 +00:00
[112] = 112,
2023-11-12 18:20:41 +00:00
[113] = 113,
2023-11-14 23:56:44 +00:00
[114] = 114,
2023-11-15 00:22:26 +00:00
[115] = 115,
[116] = 64,
2023-11-12 18:20:41 +00:00
[117] = 117,
2023-11-11 01:44:03 +00:00
[118] = 118,
[119] = 119,
2023-11-15 00:22:26 +00:00
[120] = 120,
2023-11-12 18:20:41 +00:00
[121] = 121,
2023-11-15 00:22:26 +00:00
[122] = 122,
2023-11-11 01:44:03 +00:00
[123] = 123,
2023-11-15 00:22:26 +00:00
[124] = 124,
2023-11-12 18:20:41 +00:00
[125] = 125,
2023-11-14 23:56:44 +00:00
[126] = 126,
2023-11-12 18:20:41 +00:00
[127] = 127,
[128] = 128,
2023-11-15 00:22:26 +00:00
[129] = 129,
[130] = 130,
[131] = 131,
[132] = 132,
[133] = 126,
[134] = 126,
[135] = 131,
[136] = 131,
[137] = 49,
[138] = 138,
[139] = 139,
[140] = 140,
[141] = 141,
[142] = 142,
[143] = 141,
[144] = 141,
[145] = 145,
[146] = 146,
2023-11-14 23:56:44 +00:00
[147] = 147,
2023-11-15 00:22:26 +00:00
[148] = 148,
[149] = 149,
[150] = 150,
[151] = 151,
[152] = 152,
[153] = 139,
[154] = 150,
[155] = 155,
[156] = 156,
[157] = 42,
[158] = 141,
[159] = 159,
[160] = 156,
[161] = 46,
[162] = 138,
[163] = 141,
[164] = 150,
[165] = 150,
[166] = 156,
[167] = 142,
[168] = 150,
[169] = 141,
[170] = 138,
[171] = 147,
[172] = 156,
[173] = 155,
[174] = 152,
[175] = 149,
[176] = 159,
2023-11-14 23:56:44 +00:00
[177] = 177,
2023-11-15 00:22:26 +00:00
[178] = 177,
[179] = 43,
[180] = 180,
[181] = 43,
[182] = 148,
[183] = 183,
[184] = 180,
[185] = 140,
[186] = 150,
[187] = 156,
[188] = 138,
[189] = 156,
[190] = 140,
[191] = 151,
[192] = 146,
[193] = 145,
2023-11-14 23:56:44 +00:00
[194] = 194,
2023-11-15 00:22:26 +00:00
[195] = 138,
[196] = 48,
[197] = 138,
[198] = 183,
[199] = 49,
[200] = 42,
[201] = 48,
[202] = 46,
[203] = 63,
[204] = 57,
[205] = 59,
[206] = 64,
[207] = 62,
[208] = 44,
[209] = 68,
[210] = 67,
[211] = 58,
[212] = 61,
[213] = 60,
[214] = 56,
[215] = 65,
[216] = 66,
[217] = 41,
[218] = 50,
[219] = 53,
2023-11-14 23:56:44 +00:00
[220] = 220,
2023-11-15 00:22:26 +00:00
[221] = 221,
[222] = 222,
[223] = 223,
2023-11-14 23:56:44 +00:00
[224] = 224,
2023-11-15 00:22:26 +00:00
[225] = 225,
[226] = 226,
[227] = 223,
[228] = 228,
[229] = 222,
[230] = 230,
[231] = 231,
[232] = 221,
[233] = 220,
[234] = 226,
[235] = 225,
[236] = 231,
[237] = 228,
[238] = 230,
[239] = 224,
2023-11-12 18:20:41 +00:00
[240] = 240,
2023-11-15 00:22:26 +00:00
[241] = 240,
[242] = 242,
[243] = 242,
[244] = 244,
[245] = 245,
[246] = 244,
2023-11-12 18:20:41 +00:00
[247] = 247,
2023-11-15 00:22:26 +00:00
[248] = 247,
[249] = 118,
[250] = 247,
[251] = 64,
[252] = 58,
[253] = 253,
[254] = 254,
[255] = 255,
[256] = 256,
[257] = 257,
[258] = 258,
[259] = 75,
[260] = 74,
[261] = 77,
[262] = 58,
[263] = 89,
[264] = 87,
[265] = 64,
[266] = 109,
[267] = 125,
[268] = 113,
[269] = 123,
[270] = 122,
[271] = 120,
[272] = 121,
[273] = 112,
[274] = 117,
[275] = 115,
[276] = 111,
[277] = 124,
[278] = 119,
[279] = 108,
[280] = 114,
[281] = 281,
2023-11-14 23:56:44 +00:00
[282] = 282,
2023-11-15 00:22:26 +00:00
[283] = 283,
[284] = 284,
2023-11-14 23:56:44 +00:00
[285] = 285,
2023-11-15 00:22:26 +00:00
[286] = 281,
2023-11-14 23:56:44 +00:00
[287] = 287,
2023-11-15 00:22:26 +00:00
[288] = 284,
[289] = 281,
[290] = 290,
[291] = 284,
[292] = 292,
[293] = 282,
[294] = 294,
[295] = 294,
2023-11-14 23:56:44 +00:00
[296] = 296,
[297] = 297,
2023-11-15 00:22:26 +00:00
[298] = 290,
[299] = 285,
[300] = 282,
[301] = 301,
[302] = 290,
2023-11-14 23:56:44 +00:00
[303] = 303,
2023-11-15 00:22:26 +00:00
[304] = 304,
[305] = 304,
[306] = 303,
[307] = 304,
[308] = 308,
[309] = 304,
[310] = 304,
[311] = 311,
[312] = 304,
2023-11-14 23:56:44 +00:00
[313] = 313,
2023-11-15 00:22:26 +00:00
[314] = 314,
[315] = 315,
[316] = 315,
[317] = 317,
[318] = 318,
[319] = 319,
[320] = 318,
[321] = 321,
[322] = 322,
[323] = 323,
[324] = 322,
[325] = 325,
2023-11-11 01:44:03 +00:00
[326] = 326,
2023-11-15 00:22:26 +00:00
[327] = 322,
[328] = 328,
[329] = 329,
[330] = 319,
2023-11-12 18:20:41 +00:00
[331] = 331,
[332] = 332,
[333] = 333,
[334] = 334,
2023-11-15 00:22:26 +00:00
[335] = 318,
[336] = 317,
[337] = 337,
[338] = 314,
[339] = 332,
[340] = 331,
[341] = 341,
[342] = 341,
[343] = 343,
[344] = 344,
[345] = 343,
[346] = 334,
[347] = 334,
[348] = 334,
[349] = 334,
[350] = 334,
[351] = 329,
[352] = 328,
[353] = 337,
[354] = 326,
[355] = 325,
[356] = 334,
[357] = 344,
[358] = 313,
[359] = 323,
};
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);
2023-11-15 00:22:26 +00:00
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
if (lookahead == ')') ADVANCE(34);
2023-11-15 00:22:26 +00:00
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(58);
2023-11-11 01:44:03 +00:00
if (lookahead == ',') ADVANCE(35);
2023-11-15 00:22:26 +00:00
if (lookahead == '-') ADVANCE(62);
2023-11-05 18:54:29 +00:00
if (lookahead == '.') ADVANCE(9);
2023-11-15 00:22:26 +00:00
if (lookahead == '/') ADVANCE(64);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-15 00:22:26 +00:00
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
2023-11-15 00:22:26 +00:00
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(53);
if (lookahead == '>') ADVANCE(70);
2023-11-11 01:44:03 +00:00
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 == 'a') ADVANCE(43);
if (lookahead == 'e') ADVANCE(41);
if (lookahead == '{') ADVANCE(30);
2023-11-15 00:22:26 +00:00
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') ||
2023-11-11 01:44:03 +00:00
('_' <= 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);
2023-11-15 00:22:26 +00:00
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
if (lookahead == ')') ADVANCE(34);
2023-11-15 00:22:26 +00:00
if (lookahead == '*') ADVANCE(63);
2023-11-14 23:56:44 +00:00
if (lookahead == '+') ADVANCE(57);
2023-11-11 01:44:03 +00:00
if (lookahead == ',') ADVANCE(35);
2023-11-15 00:22:26 +00:00
if (lookahead == '-') ADVANCE(61);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(64);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-15 00:22:26 +00:00
if (lookahead == ':') ADVANCE(55);
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(11);
if (lookahead == '>') ADVANCE(70);
2023-11-11 01:44:03 +00:00
if (lookahead == '[') ADVANCE(50);
2023-11-15 00:22:26 +00:00
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);
2023-11-15 00:22:26 +00:00
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') ||
2023-11-11 01:44:03 +00:00
('_' <= 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);
2023-11-15 00:22:26 +00:00
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
2023-11-14 23:56:44 +00:00
if (lookahead == ')') ADVANCE(34);
2023-11-15 00:22:26 +00:00
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(57);
2023-11-11 01:44:03 +00:00
if (lookahead == ',') ADVANCE(35);
2023-11-14 23:56:44 +00:00
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(9);
2023-11-15 00:22:26 +00:00
if (lookahead == '/') ADVANCE(64);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
2023-11-15 00:22:26 +00:00
if (lookahead == '<') ADVANCE(71);
2023-11-14 23:56:44 +00:00
if (lookahead == '=') ADVANCE(11);
2023-11-15 00:22:26 +00:00
if (lookahead == '>') ADVANCE(70);
2023-11-11 01:44:03 +00:00
if (lookahead == '{') ADVANCE(30);
2023-11-15 00:22:26 +00:00
if (lookahead == '|') ADVANCE(20);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
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);
2023-11-15 00:22:26 +00:00
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
2023-11-15 00:22:26 +00:00
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(58);
2023-11-11 01:44:03 +00:00
if (lookahead == ',') ADVANCE(35);
2023-11-15 00:22:26 +00:00
if (lookahead == '-') ADVANCE(60);
if (lookahead == '/') ADVANCE(64);
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
2023-11-15 00:22:26 +00:00
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(52);
if (lookahead == '>') ADVANCE(70);
2023-11-05 18:54:29 +00:00
if (lookahead == '|') ADVANCE(20);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
2023-11-04 10:02:27 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
2023-11-14 23:56:44 +00:00
if (lookahead == ')') ADVANCE(34);
2023-11-11 01:44:03 +00:00
if (lookahead == ',') ADVANCE(35);
2023-11-05 18:54:29 +00:00
if (lookahead == '-') ADVANCE(21);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ';') ADVANCE(32);
2023-11-05 18:54:29 +00:00
if (lookahead == '=') ADVANCE(12);
2023-11-11 01:44:03 +00:00
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);
2023-11-15 00:22:26 +00:00
if (lookahead == '|') ADVANCE(79);
2023-11-11 01:44:03 +00:00
if (lookahead == '}') ADVANCE(31);
2023-11-04 10:02:27 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-11-11 01:44:03 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 5:
2023-11-11 01:44:03 +00:00
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);
2023-11-11 01:44:03 +00:00
if (lookahead == ',') ADVANCE(35);
if (lookahead == ';') ADVANCE(32);
if (lookahead == 'e') ADVANCE(41);
if (lookahead == '}') ADVANCE(31);
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 == '_' ||
2023-11-11 01:44:03 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-05 18:54:29 +00:00
END_STATE();
case 7:
2023-11-15 00:22:26 +00:00
if (lookahead == '&') ADVANCE(68);
END_STATE();
case 8:
2023-11-11 01:44:03 +00:00
if (lookahead == '\'') ADVANCE(49);
2023-11-05 18:54:29 +00:00
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
2023-11-15 00:22:26 +00:00
if (lookahead == '.') ADVANCE(56);
END_STATE();
case 10:
2023-11-15 00:22:26 +00:00
if (lookahead == '=') ADVANCE(67);
END_STATE();
case 11:
2023-11-15 00:22:26 +00:00
if (lookahead == '=') ADVANCE(66);
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 12:
2023-11-15 00:22:26 +00:00
if (lookahead == '>') ADVANCE(77);
END_STATE();
case 13:
2023-11-11 01:44:03 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
if (lookahead == '|') ADVANCE(69);
2023-11-04 10:02:27 +00:00
END_STATE();
case 21:
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-04 10:02:27 +00:00
END_STATE();
case 22:
2023-11-11 01:44:03 +00:00
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);
2023-11-15 00:22:26 +00:00
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
2023-11-15 00:22:26 +00:00
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(58);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '/') ADVANCE(64);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-15 00:22:26 +00:00
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
2023-11-15 00:22:26 +00:00
if (lookahead == '<') ADVANCE(71);
if (lookahead == '=') ADVANCE(53);
if (lookahead == '>') ADVANCE(70);
2023-11-11 01:44:03 +00:00
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
2023-11-11 01:44:03 +00:00
if (lookahead == 'a') ADVANCE(43);
if (lookahead == '{') ADVANCE(30);
2023-11-15 00:22:26 +00:00
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') ||
2023-11-11 01:44:03 +00:00
('_' <= 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);
2023-11-15 00:22:26 +00:00
if (lookahead == '%') ADVANCE(65);
2023-11-05 18:54:29 +00:00
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
2023-11-15 00:22:26 +00:00
if (lookahead == '*') ADVANCE(63);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(61);
2023-11-05 18:54:29 +00:00
if (lookahead == '.') ADVANCE(9);
2023-11-15 00:22:26 +00:00
if (lookahead == '/') ADVANCE(64);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
2023-11-15 00:22:26 +00:00
if (lookahead == ':') ADVANCE(55);
2023-11-11 01:44:03 +00:00
if (lookahead == ';') ADVANCE(32);
2023-11-15 00:22:26 +00:00
if (lookahead == '<') ADVANCE(71);
2023-11-05 18:54:29 +00:00
if (lookahead == '=') ADVANCE(11);
2023-11-15 00:22:26 +00:00
if (lookahead == '>') ADVANCE(70);
2023-11-11 01:44:03 +00:00
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
2023-11-11 01:44:03 +00:00
if (lookahead == 'a') ADVANCE(43);
if (lookahead == '{') ADVANCE(30);
2023-11-15 00:22:26 +00:00
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') ||
2023-11-11 01:44:03 +00:00
('_' <= 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);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ';') ADVANCE(32);
2023-11-15 00:22:26 +00:00
if (lookahead == '=') ADVANCE(54);
2023-11-11 01:44:03 +00:00
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
2023-11-11 01:44:03 +00:00
if (lookahead == 'a') ADVANCE(43);
if (lookahead == '{') ADVANCE(30);
2023-11-15 00:22:26 +00:00
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') ||
2023-11-11 01:44:03 +00:00
('_' <= 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);
2023-11-11 01:44:03 +00:00
if (lookahead == '(') ADVANCE(33);
2023-11-05 18:54:29 +00:00
if (lookahead == '-') ADVANCE(21);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '[') ADVANCE(50);
2023-11-05 18:54:29 +00:00
if (lookahead == '`') ADVANCE(13);
2023-11-11 01:44:03 +00:00
if (lookahead == 'a') ADVANCE(43);
if (lookahead == 'e') ADVANCE(41);
if (lookahead == '{') ADVANCE(30);
2023-11-15 00:22:26 +00:00
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') ||
2023-11-11 01:44:03 +00:00
('_' <= 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:
2023-11-05 18:54:29 +00:00
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:
2023-11-05 18:54:29 +00:00
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:
2023-11-05 18:54:29 +00:00
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);
END_STATE();
2023-11-04 10:02:27 +00:00
case 37:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-11-11 01:44:03 +00:00
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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('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);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 45:
ACCEPT_TOKEN(sym_identifier);
2023-11-11 01:44:03 +00:00
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 == '_' ||
2023-11-11 01:44:03 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 46:
ACCEPT_TOKEN(sym_identifier);
2023-11-11 01:44:03 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
2023-11-04 10:02:27 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-11-11 01:44:03 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
2023-11-04 10:02:27 +00:00
END_STATE();
case 47:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(22);
2023-11-11 01:44:03 +00:00
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:
2023-11-11 01:44:03 +00:00
ACCEPT_TOKEN(sym_string);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-11-04 10:02:27 +00:00
case 50:
2023-11-11 01:44:03 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-11-04 10:02:27 +00:00
case 51:
2023-11-11 01:44:03 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-11-04 10:02:27 +00:00
case 52:
2023-11-11 01:44:03 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
2023-11-15 00:22:26 +00:00
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);
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
2023-11-04 10:02:27 +00:00
END_STATE();
case 57:
2023-11-05 18:54:29 +00:00
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:
2023-11-05 18:54:29 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
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);
2023-11-15 00:22:26 +00:00
if (lookahead == '=') ADVANCE(75);
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);
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(75);
END_STATE();
2023-11-05 18:54:29 +00:00
case 63:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-11-05 18:54:29 +00:00
case 64:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-11-05 18:54:29 +00:00
case 65:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-11-05 18:54:29 +00:00
case 68:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-11-05 18:54:29 +00:00
case 69:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(73);
END_STATE();
2023-11-05 18:54:29 +00:00
case 72:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-11-05 18:54:29 +00:00
case 77:
2023-11-15 00:22:26 +00:00
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:
2023-11-15 00:22:26 +00:00
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 80:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_PIPE);
2023-11-15 00:22:26 +00:00
if (lookahead == '|') ADVANCE(69);
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:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(57);
if (lookahead == 'n') ADVANCE(58);
if (lookahead == 's') ADVANCE(59);
END_STATE();
case 25:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(60);
END_STATE();
case 26:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(61);
END_STATE();
case 27:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(62);
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);
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(63);
if (lookahead == 't') ADVANCE(64);
END_STATE();
case 30:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(65);
END_STATE();
case 31:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(66);
END_STATE();
case 32:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(67);
END_STATE();
case 33:
2023-11-10 21:24:19 +00:00
if (lookahead == 'v') ADVANCE(68);
END_STATE();
case 34:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(69);
END_STATE();
case 35:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(70);
if (lookahead == 'w') ADVANCE(71);
END_STATE();
case 36:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(72);
if (lookahead == 'd') ADVANCE(73);
if (lookahead == 'm') ADVANCE(74);
if (lookahead == 'v') ADVANCE(75);
END_STATE();
case 37:
2023-11-10 21:24:19 +00:00
if (lookahead == 'w') ADVANCE(76);
END_STATE();
case 38:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(77);
END_STATE();
case 39:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 40:
2023-11-10 21:24:19 +00:00
if (lookahead == 'b') ADVANCE(78);
END_STATE();
case 41:
2023-10-31 22:18:39 +00:00
ACCEPT_TOKEN(anon_sym_to);
2023-11-10 21:24:19 +00:00
if (lookahead == '_') ADVANCE(79);
END_STATE();
case 42:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(80);
if (lookahead == 'u') ADVANCE(81);
END_STATE();
case 43:
2023-11-10 21:24:19 +00:00
if (lookahead == 'p') ADVANCE(82);
END_STATE();
case 44:
2023-11-10 21:24:19 +00:00
if (lookahead == 'i') ADVANCE(83);
END_STATE();
case 45:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(84);
END_STATE();
case 46:
2023-11-10 21:24:19 +00:00
if (lookahead == 'i') ADVANCE(85);
END_STATE();
case 47:
2023-11-10 21:24:19 +00:00
if (lookahead == 'h') ADVANCE(86);
END_STATE();
case 48:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(87);
END_STATE();
case 49:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(88);
END_STATE();
case 50:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(89);
END_STATE();
case 51:
2023-11-10 21:24:19 +00:00
if (lookahead == 'h') ADVANCE(90);
END_STATE();
case 52:
2023-11-10 21:24:19 +00:00
if (lookahead == 'u') ADVANCE(91);
END_STATE();
case 53:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(92);
END_STATE();
case 54:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(93);
END_STATE();
case 55:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(94);
END_STATE();
case 56:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(95);
END_STATE();
case 57:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(96);
END_STATE();
case 58:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(97);
END_STATE();
case 59:
2023-11-10 21:24:19 +00:00
if (lookahead == 'h') ADVANCE(98);
END_STATE();
case 60:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 61:
2023-11-10 21:24:19 +00:00
if (lookahead == 'm') ADVANCE(99);
END_STATE();
case 62:
2023-11-10 21:24:19 +00:00
if (lookahead == 'p') ADVANCE(100);
END_STATE();
case 63:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(101);
END_STATE();
case 64:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(102);
END_STATE();
case 65:
2023-11-10 21:24:19 +00:00
if (lookahead == 'g') ADVANCE(103);
END_STATE();
case 66:
2023-11-10 21:24:19 +00:00
if (lookahead == 'c') ADVANCE(104);
END_STATE();
case 67:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(105);
END_STATE();
case 68:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(106);
END_STATE();
case 69:
2023-11-10 21:24:19 +00:00
if (lookahead == 'p') ADVANCE(107);
END_STATE();
case 70:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(108);
END_STATE();
case 71:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 72:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(109);
END_STATE();
case 73:
2023-11-10 21:24:19 +00:00
if (lookahead == 'u') ADVANCE(110);
END_STATE();
case 74:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(111);
END_STATE();
case 75:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(112);
END_STATE();
case 76:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(113);
END_STATE();
case 77:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(114);
2023-10-21 17:19:01 +00:00
END_STATE();
case 78:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(115);
2023-10-21 17:19:01 +00:00
END_STATE();
case 79:
2023-11-10 21:24:19 +00:00
if (lookahead == 'f') ADVANCE(116);
if (lookahead == 'j') ADVANCE(117);
if (lookahead == 's') ADVANCE(118);
2023-10-21 17:19:01 +00:00
END_STATE();
case 80:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(119);
2023-10-21 17:19:01 +00:00
END_STATE();
case 81:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(120);
2023-10-21 17:19:01 +00:00
END_STATE();
case 82:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(121);
2023-10-21 17:19:01 +00:00
END_STATE();
case 83:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(122);
2023-10-21 17:19:01 +00:00
END_STATE();
case 84:
2023-11-10 21:24:19 +00:00
if (lookahead == 'k') ADVANCE(123);
2023-10-21 17:19:01 +00:00
END_STATE();
case 85:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(124);
2023-10-21 17:19:01 +00:00
END_STATE();
case 86:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
2023-10-21 17:19:01 +00:00
END_STATE();
case 87:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(125);
2023-10-21 17:19:01 +00:00
END_STATE();
case 88:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(126);
2023-10-21 17:19:01 +00:00
END_STATE();
case 89:
2023-11-10 21:24:19 +00:00
if (lookahead == 'c') ADVANCE(127);
2023-10-21 17:19:01 +00:00
END_STATE();
case 90:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_bash);
2023-10-21 17:19:01 +00:00
END_STATE();
case 91:
2023-11-10 21:24:19 +00:00
if (lookahead == 'm') ADVANCE(128);
2023-10-21 17:19:01 +00:00
END_STATE();
case 92:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(129);
2023-10-21 17:19:01 +00:00
END_STATE();
case 93:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(130);
2023-10-21 17:19:01 +00:00
END_STATE();
case 94:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_else);
2023-10-21 17:19:01 +00:00
END_STATE();
case 95:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(131);
2023-10-21 17:19:01 +00:00
END_STATE();
case 96:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(132);
2023-10-21 17:19:01 +00:00
END_STATE();
case 97:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_find);
2023-10-21 17:19:01 +00:00
END_STATE();
case 98:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_fish);
2023-10-21 17:19:01 +00:00
END_STATE();
case 99:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(133);
2023-10-21 17:19:01 +00:00
END_STATE();
case 100:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_help);
2023-10-21 17:19:01 +00:00
END_STATE();
case 101:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(134);
END_STATE();
2023-10-21 17:19:01 +00:00
case 102:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_into);
2023-10-21 17:19:01 +00:00
END_STATE();
case 103:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(135);
2023-10-21 17:19:01 +00:00
END_STATE();
case 104:
2023-11-10 21:24:19 +00:00
if (lookahead == 'h') ADVANCE(136);
2023-10-21 17:19:01 +00:00
END_STATE();
case 105:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(137);
2023-10-21 17:19:01 +00:00
END_STATE();
case 106:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_move);
2023-10-21 17:19:01 +00:00
END_STATE();
case 107:
2023-11-10 21:24:19 +00:00
if (lookahead == 'u') ADVANCE(138);
2023-10-21 20:38:20 +00:00
END_STATE();
case 108:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(139);
2023-10-21 20:38:20 +00:00
END_STATE();
case 109:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_read);
2023-10-21 20:38:20 +00:00
END_STATE();
case 110:
2023-11-10 21:24:19 +00:00
if (lookahead == 'c') ADVANCE(140);
2023-10-21 20:38:20 +00:00
END_STATE();
case 111:
2023-11-10 21:24:19 +00:00
if (lookahead == 'v') ADVANCE(141);
2023-10-21 20:38:20 +00:00
END_STATE();
case 112:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(142);
2023-10-21 20:38:20 +00:00
END_STATE();
case 113:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_rows);
2023-10-21 20:38:20 +00:00
END_STATE();
case 114:
2023-11-10 21:24:19 +00:00
if (lookahead == 'c') ADVANCE(143);
2023-10-21 20:38:20 +00:00
END_STATE();
case 115:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(144);
2023-10-21 20:38:20 +00:00
END_STATE();
case 116:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(145);
2023-10-21 20:38:20 +00:00
END_STATE();
case 117:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(146);
2023-10-21 20:38:20 +00:00
END_STATE();
case 118:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(147);
2023-10-21 20:38:20 +00:00
END_STATE();
case 119:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(148);
2023-10-21 20:38:20 +00:00
END_STATE();
case 120:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_true);
2023-10-21 20:38:20 +00:00
END_STATE();
case 121:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_type);
2023-10-21 20:38:20 +00:00
END_STATE();
case 122:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(149);
2023-10-21 20:38:20 +00:00
END_STATE();
case 123:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(150);
2023-10-21 20:38:20 +00:00
END_STATE();
case 124:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(151);
2023-10-21 20:38:20 +00:00
END_STATE();
case 125:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(152);
2023-10-21 20:38:20 +00:00
END_STATE();
case 126:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(153);
2023-10-21 20:38:20 +00:00
END_STATE();
case 127:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_async);
2023-10-21 20:38:20 +00:00
END_STATE();
case 128:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(154);
2023-10-21 20:38:20 +00:00
END_STATE();
case 129:
2023-11-10 21:24:19 +00:00
if (lookahead == 'x') ADVANCE(155);
2023-10-21 20:38:20 +00:00
END_STATE();
case 130:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(156);
2023-10-21 20:38:20 +00:00
END_STATE();
case 131:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_false);
2023-10-21 20:38:20 +00:00
END_STATE();
case 132:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(157);
2023-10-21 20:38:20 +00:00
END_STATE();
case 133:
2023-11-10 21:24:19 +00:00
if (lookahead == 'j') ADVANCE(158);
2023-10-21 20:38:20 +00:00
END_STATE();
case 134:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(159);
2023-10-21 20:38:20 +00:00
END_STATE();
case 135:
2023-11-10 21:24:19 +00:00
if (lookahead == 'h') ADVANCE(160);
2023-10-21 20:38:20 +00:00
END_STATE();
case 136:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_match);
2023-10-21 20:38:20 +00:00
END_STATE();
case 137:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(161);
2023-10-21 20:38:20 +00:00
END_STATE();
case 138:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(162);
2023-10-21 20:38:20 +00:00
END_STATE();
case 139:
2023-11-10 21:24:19 +00:00
if (lookahead == 'm') ADVANCE(163);
2023-10-21 20:38:20 +00:00
END_STATE();
case 140:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(164);
2023-10-21 20:38:20 +00:00
END_STATE();
case 141:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(165);
2023-10-21 20:38:20 +00:00
END_STATE();
case 142:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(166);
2023-10-21 20:38:20 +00:00
END_STATE();
case 143:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(167);
2023-10-21 20:38:20 +00:00
END_STATE();
case 144:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_table);
2023-10-21 20:38:20 +00:00
END_STATE();
case 145:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(168);
2023-10-21 20:38:20 +00:00
END_STATE();
case 146:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(169);
2023-10-21 20:38:20 +00:00
END_STATE();
case 147:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(170);
2023-10-21 20:38:20 +00:00
END_STATE();
case 148:
2023-11-10 21:24:19 +00:00
if (lookahead == 'f') ADVANCE(171);
2023-10-21 20:38:20 +00:00
END_STATE();
case 149:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_while);
2023-10-21 20:38:20 +00:00
END_STATE();
case 150:
2023-11-10 21:24:19 +00:00
if (lookahead == 'i') ADVANCE(172);
2023-10-21 20:38:20 +00:00
END_STATE();
case 151:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_write);
2023-10-21 20:38:20 +00:00
END_STATE();
case 152:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_append);
2023-10-21 20:38:20 +00:00
END_STATE();
case 153:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(173);
2023-10-22 18:27:18 +00:00
END_STATE();
case 154:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(174);
2023-10-22 18:27:18 +00:00
END_STATE();
case 155:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(175);
2023-10-22 18:27:18 +00:00
END_STATE();
case 156:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(176);
2023-10-22 18:48:34 +00:00
END_STATE();
case 157:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_filter);
2023-10-22 18:48:34 +00:00
END_STATE();
case 158:
2023-11-10 21:24:19 +00:00
if (lookahead == 's') ADVANCE(177);
2023-10-22 18:48:34 +00:00
END_STATE();
case 159:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_insert);
2023-10-22 18:48:34 +00:00
END_STATE();
case 160:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_length);
2023-10-22 18:48:34 +00:00
END_STATE();
case 161:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(178);
2023-10-22 18:48:34 +00:00
END_STATE();
case 162:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(179);
2023-10-22 18:48:34 +00:00
END_STATE();
case 163:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(180);
2023-10-22 18:48:34 +00:00
END_STATE();
case 164:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_reduce);
2023-10-22 18:48:34 +00:00
END_STATE();
case 165:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_remove);
2023-10-22 18:48:34 +00:00
END_STATE();
case 166:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(181);
2023-10-22 18:48:34 +00:00
END_STATE();
case 167:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_select);
2023-10-22 18:48:34 +00:00
END_STATE();
case 168:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(182);
2023-10-22 18:48:34 +00:00
END_STATE();
case 169:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(183);
2023-10-22 18:48:34 +00:00
END_STATE();
case 170:
2023-11-10 21:24:19 +00:00
if (lookahead == 'i') ADVANCE(184);
2023-10-22 18:48:34 +00:00
END_STATE();
case 171:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(185);
2023-10-22 18:48:34 +00:00
END_STATE();
case 172:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(186);
2023-10-22 18:48:34 +00:00
END_STATE();
case 173:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(187);
2023-10-21 17:19:01 +00:00
END_STATE();
2023-10-22 18:48:34 +00:00
case 174:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_columns);
2023-10-22 18:48:34 +00:00
END_STATE();
case 175:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_context);
2023-10-22 18:48:34 +00:00
END_STATE();
case 176:
2023-11-10 21:24:19 +00:00
if (lookahead == 'd') ADVANCE(188);
2023-10-22 18:48:34 +00:00
END_STATE();
case 177:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(189);
2023-10-22 18:48:34 +00:00
END_STATE();
case 178:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(190);
2023-10-22 18:48:34 +00:00
END_STATE();
case 179:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(191);
2023-10-22 18:48:34 +00:00
END_STATE();
case 180:
2023-11-10 21:24:19 +00:00
if (lookahead == 'b') ADVANCE(192);
if (lookahead == 'f') ADVANCE(193);
if (lookahead == 'i') ADVANCE(194);
2023-10-22 20:32:55 +00:00
END_STATE();
case 181:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_reverse);
2023-10-22 20:32:55 +00:00
END_STATE();
case 182:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(195);
2023-10-22 20:32:55 +00:00
END_STATE();
case 183:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
2023-10-22 20:32:55 +00:00
END_STATE();
case 184:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(196);
2023-10-22 20:32:55 +00:00
END_STATE();
case 185:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(197);
2023-10-22 20:32:55 +00:00
END_STATE();
case 186:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_workdir);
2023-10-22 20:32:55 +00:00
END_STATE();
case 187:
2023-11-10 21:24:19 +00:00
if (lookahead == 'q') ADVANCE(198);
2023-10-22 20:32:55 +00:00
END_STATE();
case 188:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_download);
2023-10-22 20:32:55 +00:00
END_STATE();
case 189:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(199);
2023-10-22 20:32:55 +00:00
END_STATE();
case 190:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_metadata);
2023-10-22 20:41:37 +00:00
END_STATE();
case 191:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(200);
2023-10-22 20:41:37 +00:00
END_STATE();
case 192:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(201);
2023-10-22 20:41:37 +00:00
END_STATE();
case 193:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(202);
2023-10-22 20:41:37 +00:00
END_STATE();
case 194:
2023-11-10 21:24:19 +00:00
if (lookahead == 'n') ADVANCE(203);
2023-10-22 20:41:37 +00:00
END_STATE();
case 195:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_to_float);
2023-10-22 20:41:37 +00:00
END_STATE();
case 196:
2023-11-10 21:24:19 +00:00
if (lookahead == 'g') ADVANCE(204);
2023-10-22 20:50:09 +00:00
END_STATE();
case 197:
2023-11-10 21:24:19 +00:00
if (lookahead == 'm') ADVANCE(205);
2023-10-22 20:50:09 +00:00
END_STATE();
case 198:
2023-11-10 21:24:19 +00:00
if (lookahead == 'u') ADVANCE(206);
2023-10-22 20:50:09 +00:00
END_STATE();
case 199:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
2023-10-22 20:50:09 +00:00
END_STATE();
case 200:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(207);
2023-10-22 20:50:09 +00:00
END_STATE();
case 201:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(208);
2023-10-22 20:50:09 +00:00
END_STATE();
case 202:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(209);
2023-10-22 20:50:09 +00:00
END_STATE();
case 203:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(210);
2023-10-22 20:50:09 +00:00
END_STATE();
case 204:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_to_string);
2023-10-28 14:28:43 +00:00
END_STATE();
case 205:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_transform);
2023-10-28 14:28:43 +00:00
END_STATE();
case 206:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(211);
2023-10-28 14:28:43 +00:00
END_STATE();
case 207:
2023-11-10 21:24:19 +00:00
if (lookahead == 'o') ADVANCE(212);
2023-10-28 14:28:43 +00:00
END_STATE();
case 208:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(213);
2023-10-28 14:28:43 +00:00
END_STATE();
case 209:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(214);
2023-10-28 14:28:43 +00:00
END_STATE();
case 210:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(215);
2023-10-28 14:28:43 +00:00
END_STATE();
case 211:
2023-11-10 21:24:19 +00:00
if (lookahead == 'l') ADVANCE(216);
2023-10-28 14:28:43 +00:00
END_STATE();
case 212:
2023-11-10 21:24:19 +00:00
if (lookahead == 'r') ADVANCE(217);
2023-10-28 14:28:43 +00:00
END_STATE();
case 213:
2023-11-10 21:24:19 +00:00
if (lookahead == 'e') ADVANCE(218);
2023-10-28 14:28:43 +00:00
END_STATE();
case 214:
2023-11-10 21:24:19 +00:00
if (lookahead == 't') ADVANCE(219);
2023-10-31 05:09:29 +00:00
END_STATE();
case 215:
2023-11-10 21:24:19 +00:00
if (lookahead == 'g') ADVANCE(220);
2023-10-31 05:09:29 +00:00
END_STATE();
case 216:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_assert_equal);
2023-10-31 05:09:29 +00:00
END_STATE();
case 217:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_output_error);
2023-10-31 05:09:29 +00:00
END_STATE();
case 218:
2023-11-10 21:24:19 +00:00
if (lookahead == 'a') ADVANCE(221);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-10-31 22:18:39 +00:00
case 219:
2023-11-10 21:24:19 +00:00
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 220:
if (lookahead == 'e') ADVANCE(222);
END_STATE();
case 221:
if (lookahead == 'n') ADVANCE(223);
END_STATE();
case 222:
if (lookahead == 'r') ADVANCE(224);
END_STATE();
case 223:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 224:
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},
[5] = {.lex_state = 25},
[6] = {.lex_state = 25},
[7] = {.lex_state = 25},
[8] = {.lex_state = 25},
[9] = {.lex_state = 25},
[10] = {.lex_state = 25},
[11] = {.lex_state = 25},
[12] = {.lex_state = 25},
[13] = {.lex_state = 25},
[14] = {.lex_state = 25},
[15] = {.lex_state = 25},
[16] = {.lex_state = 25},
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 00:22:26 +00:00
[41] = {.lex_state = 23},
[42] = {.lex_state = 24},
[43] = {.lex_state = 24},
[44] = {.lex_state = 24},
[45] = {.lex_state = 24},
[46] = {.lex_state = 24},
[47] = {.lex_state = 23},
[48] = {.lex_state = 24},
[49] = {.lex_state = 24},
[50] = {.lex_state = 24},
[51] = {.lex_state = 24},
[52] = {.lex_state = 24},
[53] = {.lex_state = 24},
[54] = {.lex_state = 24},
[55] = {.lex_state = 24},
[56] = {.lex_state = 24},
[57] = {.lex_state = 24},
[58] = {.lex_state = 24},
[59] = {.lex_state = 24},
[60] = {.lex_state = 24},
[61] = {.lex_state = 24},
[62] = {.lex_state = 24},
[63] = {.lex_state = 24},
[64] = {.lex_state = 24},
[65] = {.lex_state = 24},
[66] = {.lex_state = 24},
[67] = {.lex_state = 24},
[68] = {.lex_state = 24},
[69] = {.lex_state = 25},
[70] = {.lex_state = 1},
[71] = {.lex_state = 25},
[72] = {.lex_state = 1},
[73] = {.lex_state = 1},
[74] = {.lex_state = 26},
[75] = {.lex_state = 26},
[76] = {.lex_state = 1},
[77] = {.lex_state = 26},
[78] = {.lex_state = 1},
[79] = {.lex_state = 1},
[80] = {.lex_state = 1},
[81] = {.lex_state = 1},
[82] = {.lex_state = 1},
[83] = {.lex_state = 1},
[84] = {.lex_state = 1},
[85] = {.lex_state = 1},
[86] = {.lex_state = 1},
[87] = {.lex_state = 26},
[88] = {.lex_state = 1},
[89] = {.lex_state = 26},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
[92] = {.lex_state = 1},
[93] = {.lex_state = 1},
[94] = {.lex_state = 1},
[95] = {.lex_state = 26},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
[104] = {.lex_state = 1},
[105] = {.lex_state = 26},
[106] = {.lex_state = 4},
[107] = {.lex_state = 4},
[108] = {.lex_state = 25},
[109] = {.lex_state = 25},
[110] = {.lex_state = 25},
[111] = {.lex_state = 25},
[112] = {.lex_state = 25},
[113] = {.lex_state = 25},
[114] = {.lex_state = 25},
[115] = {.lex_state = 25},
[116] = {.lex_state = 25},
[117] = {.lex_state = 25},
[118] = {.lex_state = 25},
[119] = {.lex_state = 25},
[120] = {.lex_state = 25},
[121] = {.lex_state = 25},
[122] = {.lex_state = 25},
[123] = {.lex_state = 25},
[124] = {.lex_state = 25},
[125] = {.lex_state = 25},
[126] = {.lex_state = 4},
[127] = {.lex_state = 4},
[128] = {.lex_state = 4},
[129] = {.lex_state = 4},
[130] = {.lex_state = 4},
[131] = {.lex_state = 4},
[132] = {.lex_state = 4},
[133] = {.lex_state = 4},
[134] = {.lex_state = 4},
[135] = {.lex_state = 4},
[136] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[137] = {.lex_state = 2},
2023-11-15 00:22:26 +00:00
[138] = {.lex_state = 4},
[139] = {.lex_state = 4},
[140] = {.lex_state = 4},
[141] = {.lex_state = 4},
[142] = {.lex_state = 4},
[143] = {.lex_state = 4},
[144] = {.lex_state = 4},
[145] = {.lex_state = 4},
[146] = {.lex_state = 4},
[147] = {.lex_state = 4},
[148] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[149] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[150] = {.lex_state = 4},
[151] = {.lex_state = 4},
[152] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[153] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[154] = {.lex_state = 4},
[155] = {.lex_state = 4},
[156] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[157] = {.lex_state = 2},
2023-11-15 00:22:26 +00:00
[158] = {.lex_state = 4},
[159] = {.lex_state = 4},
[160] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[161] = {.lex_state = 2},
2023-11-15 00:22:26 +00:00
[162] = {.lex_state = 4},
[163] = {.lex_state = 4},
[164] = {.lex_state = 4},
[165] = {.lex_state = 4},
[166] = {.lex_state = 4},
[167] = {.lex_state = 4},
[168] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[169] = {.lex_state = 4},
2023-11-12 18:20:41 +00:00
[170] = {.lex_state = 4},
[171] = {.lex_state = 4},
[172] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[173] = {.lex_state = 4},
[174] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[175] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[176] = {.lex_state = 4},
[177] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[178] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[179] = {.lex_state = 2},
[180] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[181] = {.lex_state = 2},
2023-11-15 00:22:26 +00:00
[182] = {.lex_state = 4},
[183] = {.lex_state = 4},
[184] = {.lex_state = 4},
[185] = {.lex_state = 4},
[186] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[187] = {.lex_state = 4},
[188] = {.lex_state = 4},
[189] = {.lex_state = 4},
[190] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[191] = {.lex_state = 4},
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 00:22:26 +00:00
[194] = {.lex_state = 25},
2023-11-11 01:44:03 +00:00
[195] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[196] = {.lex_state = 2},
2023-11-11 01:44:03 +00:00
[197] = {.lex_state = 4},
[198] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[199] = {.lex_state = 2},
[200] = {.lex_state = 2},
[201] = {.lex_state = 2},
[202] = {.lex_state = 2},
[203] = {.lex_state = 2},
[204] = {.lex_state = 2},
[205] = {.lex_state = 2},
[206] = {.lex_state = 2},
[207] = {.lex_state = 2},
[208] = {.lex_state = 2},
[209] = {.lex_state = 2},
[210] = {.lex_state = 2},
[211] = {.lex_state = 2},
[212] = {.lex_state = 2},
[213] = {.lex_state = 2},
[214] = {.lex_state = 2},
[215] = {.lex_state = 2},
[216] = {.lex_state = 2},
[217] = {.lex_state = 3},
[218] = {.lex_state = 2},
[219] = {.lex_state = 2},
[220] = {.lex_state = 2},
[221] = {.lex_state = 2},
[222] = {.lex_state = 2},
[223] = {.lex_state = 2},
[224] = {.lex_state = 2},
[225] = {.lex_state = 2},
[226] = {.lex_state = 2},
[227] = {.lex_state = 2},
[228] = {.lex_state = 2},
[229] = {.lex_state = 2},
[230] = {.lex_state = 2},
[231] = {.lex_state = 2},
[232] = {.lex_state = 2},
[233] = {.lex_state = 2},
[234] = {.lex_state = 2},
[235] = {.lex_state = 2},
[236] = {.lex_state = 2},
[237] = {.lex_state = 2},
[238] = {.lex_state = 2},
[239] = {.lex_state = 2},
[240] = {.lex_state = 2},
[241] = {.lex_state = 2},
[242] = {.lex_state = 2},
[243] = {.lex_state = 2},
[244] = {.lex_state = 2},
[245] = {.lex_state = 2},
[246] = {.lex_state = 2},
[247] = {.lex_state = 2},
[248] = {.lex_state = 2},
2023-11-11 01:44:03 +00:00
[249] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[250] = {.lex_state = 2},
2023-11-11 01:44:03 +00:00
[251] = {.lex_state = 4},
[252] = {.lex_state = 4},
[253] = {.lex_state = 4},
[254] = {.lex_state = 4},
[255] = {.lex_state = 4},
2023-11-12 18:20:41 +00:00
[256] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[257] = {.lex_state = 4},
[258] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[259] = {.lex_state = 6},
[260] = {.lex_state = 6},
[261] = {.lex_state = 6},
[262] = {.lex_state = 6},
[263] = {.lex_state = 6},
[264] = {.lex_state = 6},
[265] = {.lex_state = 6},
2023-11-12 18:20:41 +00:00
[266] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[267] = {.lex_state = 4},
[268] = {.lex_state = 4},
[269] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[270] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[271] = {.lex_state = 4},
2023-11-12 18:20:41 +00:00
[272] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[273] = {.lex_state = 4},
[274] = {.lex_state = 4},
[275] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[276] = {.lex_state = 4},
[277] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[278] = {.lex_state = 4},
[279] = {.lex_state = 4},
[280] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[281] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[282] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[283] = {.lex_state = 4},
[284] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[285] = {.lex_state = 4},
[286] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[287] = {.lex_state = 4},
[288] = {.lex_state = 4},
[289] = {.lex_state = 4},
[290] = {.lex_state = 4},
[291] = {.lex_state = 4},
[292] = {.lex_state = 4},
[293] = {.lex_state = 4},
[294] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[295] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[296] = {.lex_state = 4},
[297] = {.lex_state = 4},
[298] = {.lex_state = 4},
2023-11-11 01:44:03 +00:00
[299] = {.lex_state = 4},
[300] = {.lex_state = 4},
2023-11-12 18:20:41 +00:00
[301] = {.lex_state = 4},
[302] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[303] = {.lex_state = 25},
2023-11-15 00:22:26 +00:00
[304] = {.lex_state = 25},
[305] = {.lex_state = 25},
[306] = {.lex_state = 25},
[307] = {.lex_state = 25},
2023-11-12 18:20:41 +00:00
[308] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[309] = {.lex_state = 25},
[310] = {.lex_state = 25},
[311] = {.lex_state = 4},
[312] = {.lex_state = 25},
[313] = {.lex_state = 4},
2023-11-12 18:20:41 +00:00
[314] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[315] = {.lex_state = 4},
2023-11-14 23:56:44 +00:00
[316] = {.lex_state = 4},
[317] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[318] = {.lex_state = 0},
[319] = {.lex_state = 4},
[320] = {.lex_state = 0},
[321] = {.lex_state = 0},
[322] = {.lex_state = 0},
2023-11-11 01:44:03 +00:00
[323] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[324] = {.lex_state = 0},
2023-11-11 01:44:03 +00:00
[325] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[326] = {.lex_state = 4},
[327] = {.lex_state = 0},
2023-11-12 18:20:41 +00:00
[328] = {.lex_state = 4},
[329] = {.lex_state = 4},
[330] = {.lex_state = 4},
[331] = {.lex_state = 4},
[332] = {.lex_state = 4},
2023-11-15 00:22:26 +00:00
[333] = {.lex_state = 25},
[334] = {.lex_state = 0},
[335] = {.lex_state = 0},
[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 = 0},
[347] = {.lex_state = 0},
[348] = {.lex_state = 0},
[349] = {.lex_state = 0},
[350] = {.lex_state = 0},
[351] = {.lex_state = 4},
[352] = {.lex_state = 4},
[353] = {.lex_state = 4},
[354] = {.lex_state = 4},
[355] = {.lex_state = 4},
[356] = {.lex_state = 0},
[357] = {.lex_state = 4},
[358] = {.lex_state = 4},
[359] = {.lex_state = 4},
};
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_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),
[anon_sym_transform] = ACTIONS(1),
[anon_sym_filter] = ACTIONS(1),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(1),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = ACTIONS(1),
[anon_sym_to] = ACTIONS(1),
[anon_sym_select] = 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),
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] = {
2023-11-15 00:22:26 +00:00
[sym_root] = STATE(321),
[sym_block] = STATE(109),
[sym_statement] = STATE(15),
[sym_expression] = STATE(53),
[sym__expression_kind] = STATE(57),
[sym_value] = STATE(57),
[sym_boolean] = STATE(66),
[sym_list] = STATE(66),
[sym_map] = STATE(66),
[sym_index] = STATE(57),
[sym_math] = STATE(57),
[sym_logic] = STATE(57),
[sym_assignment] = STATE(109),
[sym_if_else] = STATE(109),
[sym_if] = STATE(74),
[sym_match] = STATE(109),
[sym_while] = STATE(109),
[sym_for] = STATE(109),
[sym_transform] = STATE(109),
[sym_filter] = STATE(109),
[sym_find] = STATE(109),
[sym_remove] = STATE(109),
[sym_reduce] = STATE(109),
[sym_select] = STATE(109),
[sym_insert] = STATE(109),
[sym_identifier_list] = STATE(322),
[sym_table] = STATE(66),
[sym_function] = STATE(66),
[sym_function_call] = STATE(57),
[aux_sym_root_repeat1] = STATE(15),
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_LPAREN] = ACTIONS(11),
2023-11-15 00:22:26 +00:00
[sym_integer] = ACTIONS(13),
[sym_float] = ACTIONS(15),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_if] = ACTIONS(21),
[anon_sym_match] = ACTIONS(23),
[anon_sym_EQ_GT] = ACTIONS(25),
[anon_sym_while] = ACTIONS(27),
[anon_sym_for] = ACTIONS(29),
[anon_sym_asyncfor] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_PIPE] = ACTIONS(47),
[anon_sym_table] = ACTIONS(49),
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] = 18,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(128), 1,
2023-11-11 01:44:03 +00:00
sym__built_in_function_name,
2023-11-15 00:22:26 +00:00
STATE(245), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-10 23:44:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(335), 2,
2023-11-11 01:44:03 +00:00
sym__context_defined_function,
sym_built_in_function,
2023-11-15 00:22:26 +00:00
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(248), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
ACTIONS(69), 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,
2023-11-15 00:22:26 +00:00
[97] = 18,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-10 23:44:56 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-10 23:44:56 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(128), 1,
2023-10-31 22:18:39 +00:00
sym__built_in_function_name,
2023-11-15 00:22:26 +00:00
STATE(245), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(320), 2,
2023-10-31 22:18:39 +00:00
sym__context_defined_function,
sym_built_in_function,
2023-11-15 00:22:26 +00:00
STATE(216), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(250), 6,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
ACTIONS(69), 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,
2023-11-15 00:22:26 +00:00
[194] = 18,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(128), 1,
2023-10-31 22:18:39 +00:00
sym__built_in_function_name,
2023-11-15 00:22:26 +00:00
STATE(245), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(318), 2,
2023-10-31 22:18:39 +00:00
sym__context_defined_function,
sym_built_in_function,
2023-11-15 00:22:26 +00:00
STATE(216), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(247), 6,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
ACTIONS(69), 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,
2023-11-15 00:22:26 +00:00
[291] = 33,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(71), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(73), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(291), 1,
aux_sym_map_repeat1,
STATE(322), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[415] = 33,
ACTIONS(3), 1,
sym__comment,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
2023-11-05 18:54:29 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(71), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(75), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-10 23:44:56 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(288), 1,
aux_sym_map_repeat1,
STATE(322), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(21), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[539] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(79), 1,
sym_identifier,
ACTIONS(82), 1,
anon_sym_async,
ACTIONS(85), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(88), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(91), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(100), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(103), 1,
anon_sym_if,
ACTIONS(106), 1,
anon_sym_match,
ACTIONS(109), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(112), 1,
anon_sym_while,
ACTIONS(115), 1,
anon_sym_for,
ACTIONS(118), 1,
anon_sym_asyncfor,
ACTIONS(121), 1,
anon_sym_transform,
ACTIONS(124), 1,
anon_sym_filter,
ACTIONS(127), 1,
anon_sym_find,
ACTIONS(130), 1,
anon_sym_remove,
ACTIONS(133), 1,
anon_sym_reduce,
ACTIONS(136), 1,
anon_sym_select,
ACTIONS(139), 1,
anon_sym_insert,
ACTIONS(142), 1,
anon_sym_PIPE,
ACTIONS(145), 1,
2023-11-10 23:44:56 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-10-31 22:18:39 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(77), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(94), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(97), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[661] = 32,
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,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
2023-11-12 18:20:41 +00:00
anon_sym_if,
2023-11-15 00:22:26 +00:00
ACTIONS(23), 1,
2023-11-12 18:20:41 +00:00
anon_sym_match,
2023-11-15 00:22:26 +00:00
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
2023-11-12 18:20:41 +00:00
anon_sym_while,
2023-11-15 00:22:26 +00:00
ACTIONS(29), 1,
2023-11-12 18:20:41 +00:00
anon_sym_for,
2023-11-15 00:22:26 +00:00
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
2023-11-12 18:20:41 +00:00
anon_sym_transform,
2023-11-15 00:22:26 +00:00
ACTIONS(35), 1,
2023-11-12 18:20:41 +00:00
anon_sym_filter,
2023-11-15 00:22:26 +00:00
ACTIONS(37), 1,
2023-11-12 18:20:41 +00:00
anon_sym_find,
2023-11-15 00:22:26 +00:00
ACTIONS(39), 1,
2023-11-12 18:20:41 +00:00
anon_sym_remove,
2023-11-15 00:22:26 +00:00
ACTIONS(41), 1,
2023-11-12 18:20:41 +00:00
anon_sym_reduce,
2023-11-15 00:22:26 +00:00
ACTIONS(43), 1,
2023-11-12 18:20:41 +00:00
anon_sym_select,
2023-11-15 00:22:26 +00:00
ACTIONS(45), 1,
2023-11-12 18:20:41 +00:00
anon_sym_insert,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(148), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[782] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-10-31 22:18:39 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(150), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-10-31 22:18:39 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-10-31 22:18:39 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-10-31 22:18:39 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-10-31 22:18:39 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[903] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(152), 1,
anon_sym_RBRACE,
STATE(53), 1,
sym_expression,
STATE(74), 1,
sym_if,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1024] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(154), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1145] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-04 10:02:27 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-04 10:02:27 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(156), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-04 10:02:27 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-04 10:02:27 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-04 10:02:27 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-04 10:02:27 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-04 10:02:27 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1266] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-04 10:02:27 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-04 10:02:27 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(158), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-05 18:54:29 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-04 10:02:27 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-04 10:02:27 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-04 10:02:27 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-04 10:02:27 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1387] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
2023-11-04 10:02:27 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(160), 1,
anon_sym_RBRACE,
STATE(53), 1,
sym_expression,
STATE(74), 1,
sym_if,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1508] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-04 10:02:27 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-10 23:44:56 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(162), 1,
ts_builtin_sym_end,
STATE(53), 1,
2023-11-04 10:02:27 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-04 10:02:27 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-04 10:02:27 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-04 10:02:27 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-04 10:02:27 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1629] = 32,
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,
2023-11-04 10:02:27 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(164), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-10 23:44:56 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1750] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(166), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1871] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(168), 1,
anon_sym_RBRACE,
STATE(53), 1,
sym_expression,
STATE(74), 1,
sym_if,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1992] = 32,
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,
2023-11-04 10:02:27 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(170), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-05 18:54:29 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2113] = 32,
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,
2023-11-05 18:54:29 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-05 18:54:29 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(172), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-10 23:44:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2234] = 32,
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,
2023-11-10 23:44:56 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(174), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2355] = 32,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-10-31 22:18:39 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(176), 1,
anon_sym_RBRACE,
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-10 23:44:56 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2476] = 31,
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,
2023-11-10 23:44:56 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-12 18:20:41 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-12 18:20:41 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2594] = 31,
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,
2023-11-04 10:02:27 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-04 10:02:27 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(21), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2712] = 31,
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,
2023-10-31 22:18:39 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-04 10:02:27 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-04 10:02:27 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(22), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2830] = 31,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
anon_sym_table,
STATE(53), 1,
sym_expression,
STATE(74), 1,
sym_if,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2948] = 31,
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,
2023-11-04 10:02:27 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-10 23:44:56 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-10-31 22:18:39 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3066] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(19), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3184] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3302] = 31,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(49), 1,
anon_sym_table,
STATE(53), 1,
sym_expression,
STATE(74), 1,
sym_if,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(14), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3420] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(20), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3538] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(8), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3656] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(16), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-12 18:20:41 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-12 18:20:41 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3774] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
2023-11-15 00:22:26 +00:00
anon_sym_false,
STATE(18), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3892] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-12 18:20:41 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-12 18:20:41 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4010] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(11), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4128] = 31,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_async,
ACTIONS(182), 1,
anon_sym_LBRACE,
ACTIONS(184), 1,
anon_sym_if,
ACTIONS(186), 1,
anon_sym_match,
ACTIONS(188), 1,
anon_sym_while,
ACTIONS(190), 1,
anon_sym_for,
ACTIONS(192), 1,
anon_sym_asyncfor,
ACTIONS(194), 1,
anon_sym_transform,
ACTIONS(196), 1,
anon_sym_filter,
ACTIONS(198), 1,
anon_sym_find,
ACTIONS(200), 1,
anon_sym_remove,
ACTIONS(202), 1,
anon_sym_reduce,
ACTIONS(204), 1,
anon_sym_select,
ACTIONS(206), 1,
anon_sym_insert,
STATE(219), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(260), 1,
sym_if,
STATE(277), 1,
sym_statement,
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(204), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(266), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4245] = 31,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_async,
ACTIONS(182), 1,
anon_sym_LBRACE,
ACTIONS(184), 1,
anon_sym_if,
ACTIONS(186), 1,
anon_sym_match,
ACTIONS(188), 1,
anon_sym_while,
ACTIONS(190), 1,
anon_sym_for,
ACTIONS(192), 1,
anon_sym_asyncfor,
ACTIONS(194), 1,
anon_sym_transform,
ACTIONS(196), 1,
anon_sym_filter,
ACTIONS(198), 1,
anon_sym_find,
ACTIONS(200), 1,
anon_sym_remove,
ACTIONS(202), 1,
anon_sym_reduce,
ACTIONS(204), 1,
anon_sym_select,
ACTIONS(206), 1,
anon_sym_insert,
STATE(219), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(260), 1,
sym_if,
STATE(301), 1,
sym_statement,
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(204), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(266), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4362] = 31,
ACTIONS(3), 1,
sym__comment,
ACTIONS(208), 1,
sym_identifier,
ACTIONS(211), 1,
anon_sym_async,
ACTIONS(214), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(217), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(220), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(229), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(232), 1,
anon_sym_if,
ACTIONS(235), 1,
anon_sym_match,
ACTIONS(238), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(241), 1,
anon_sym_while,
ACTIONS(244), 1,
anon_sym_for,
ACTIONS(247), 1,
anon_sym_asyncfor,
ACTIONS(250), 1,
anon_sym_transform,
ACTIONS(253), 1,
anon_sym_filter,
ACTIONS(256), 1,
anon_sym_find,
ACTIONS(259), 1,
anon_sym_remove,
ACTIONS(262), 1,
anon_sym_reduce,
ACTIONS(265), 1,
anon_sym_select,
ACTIONS(268), 1,
anon_sym_insert,
ACTIONS(271), 1,
anon_sym_PIPE,
ACTIONS(274), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(219), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(260), 1,
sym_if,
STATE(301), 1,
sym_statement,
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(223), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(226), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(204), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(266), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4479] = 31,
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,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(13), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(19), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(53), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(74), 1,
sym_if,
STATE(124), 1,
sym_statement,
STATE(322), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(15), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(17), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(66), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(57), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
STATE(109), 13,
sym_block,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4596] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(281), 1,
anon_sym_EQ,
STATE(40), 1,
sym_assignment_operator,
ACTIONS(283), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(277), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(279), 22,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[4656] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(144), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(287), 21,
anon_sym_async,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(285), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_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,
[4713] = 6,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(293), 1,
anon_sym_DOT_DOT,
STATE(144), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(289), 21,
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_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,
ACTIONS(291), 21,
anon_sym_async,
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 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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[4772] = 13,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(301), 1,
anon_sym_COLON,
ACTIONS(305), 1,
anon_sym_DASH,
STATE(122), 1,
sym_block,
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(295), 9,
ts_builtin_sym_end,
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,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(297), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[4845] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(144), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(291), 21,
anon_sym_async,
2023-11-14 23:56:44 +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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(289), 22,
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,
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_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,
[4902] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(144), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(313), 21,
anon_sym_async,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(311), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_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,
[4959] = 6,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(315), 1,
anon_sym_EQ,
STATE(40), 1,
sym_assignment_operator,
ACTIONS(283), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(277), 19,
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,
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_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_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-12 18:20:41 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(279), 22,
2023-11-12 18:20:41 +00:00
anon_sym_async,
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 00:22:26 +00:00
anon_sym_PLUS,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-14 23:56:44 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[5018] = 10,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(321), 1,
anon_sym_COLON,
STATE(144), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(317), 11,
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_DOT_DOT,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(319), 18,
anon_sym_async,
2023-11-04 10:02:27 +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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5085] = 10,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(321), 1,
anon_sym_COLON,
STATE(144), 1,
sym_math_operator,
STATE(186), 1,
sym_logic_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(323), 11,
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_DOT_DOT,
2023-11-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(325), 18,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5152] = 10,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(301), 1,
anon_sym_COLON,
ACTIONS(305), 1,
anon_sym_DASH,
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(327), 10,
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-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(329), 18,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[5218] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(285), 21,
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_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,
ACTIONS(287), 21,
anon_sym_async,
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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5274] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(301), 1,
anon_sym_COLON,
ACTIONS(305), 1,
anon_sym_DASH,
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(317), 10,
2023-11-14 23:56:44 +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-14 23:56:44 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-14 23:56:44 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(319), 18,
2023-11-14 23:56:44 +00:00
anon_sym_async,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-14 23:56:44 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-14 23:56:44 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-15 00:22:26 +00:00
anon_sym_PIPE,
2023-11-14 23:56:44 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[5340] = 11,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(301), 1,
anon_sym_COLON,
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(335), 1,
anon_sym_SEMI,
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(331), 9,
2023-11-12 18:20:41 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
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-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-12 18:20:41 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
ACTIONS(333), 18,
2023-11-12 18:20:41 +00:00
anon_sym_async,
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-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
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,
2023-11-15 00:22:26 +00:00
[5408] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(301), 1,
anon_sym_COLON,
ACTIONS(305), 1,
anon_sym_DASH,
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(323), 10,
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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
ACTIONS(325), 18,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5474] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(150), 1,
sym_logic_operator,
STATE(158), 1,
sym_math_operator,
ACTIONS(311), 21,
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,
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(313), 21,
anon_sym_async,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[5530] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(339), 21,
anon_sym_async,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
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(337), 22,
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_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-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
[5581] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(343), 21,
anon_sym_async,
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_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(341), 22,
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_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,
[5632] = 3,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(347), 21,
anon_sym_async,
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,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(345), 22,
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,
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_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,
[5683] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(351), 21,
anon_sym_async,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(349), 22,
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_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-12 18:20:41 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
[5734] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(355), 21,
2023-11-12 18:20:41 +00:00
anon_sym_async,
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 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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
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(353), 22,
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,
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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
[5785] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 21,
anon_sym_async,
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 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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(357), 22,
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,
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_asyncfor,
2023-11-15 00:22:26 +00:00
[5836] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 21,
2023-11-12 18:20:41 +00:00
anon_sym_async,
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-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
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,
2023-11-15 00:22:26 +00:00
ACTIONS(361), 22,
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_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-12 18:20:41 +00:00
anon_sym_asyncfor,
2023-11-15 00:22:26 +00:00
[5887] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 21,
2023-11-12 18:20:41 +00:00
anon_sym_async,
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 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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
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(365), 22,
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,
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,
[5938] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 21,
anon_sym_async,
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 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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
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(369), 22,
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_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,
[5989] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 21,
anon_sym_async,
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,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(373), 22,
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_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,
[6040] = 3,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(379), 21,
anon_sym_async,
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,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(377), 22,
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_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,
[6091] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 21,
anon_sym_async,
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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(381), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_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,
[6142] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(387), 21,
anon_sym_async,
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,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(385), 22,
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,
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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
[6193] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(391), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(396), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(399), 1,
anon_sym_LPAREN,
ACTIONS(402), 1,
sym_integer,
ACTIONS(411), 1,
anon_sym_LBRACK,
ACTIONS(414), 1,
anon_sym_EQ_GT,
ACTIONS(417), 1,
anon_sym_PIPE,
ACTIONS(420), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(69), 1,
aux_sym_match_repeat1,
STATE(241), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(405), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(408), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
ACTIONS(389), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(204), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
ACTIONS(394), 12,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
[6273] = 23,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-14 23:56:44 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(423), 1,
sym_identifier,
ACTIONS(425), 1,
anon_sym_COLON,
ACTIONS(427), 1,
anon_sym_PIPE,
STATE(106), 1,
aux_sym_match_repeat1,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
STATE(240), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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(204), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
[6363] = 18,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-14 23:56:44 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(423), 1,
sym_identifier,
STATE(69), 1,
aux_sym_match_repeat1,
STATE(241), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
2023-11-15 00:22:26 +00:00
anon_sym_false,
ACTIONS(429), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(431), 12,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
[6443] = 23,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(423), 1,
sym_identifier,
ACTIONS(425), 1,
anon_sym_COLON,
ACTIONS(427), 1,
anon_sym_PIPE,
STATE(71), 1,
aux_sym_match_repeat1,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
STATE(241), 1,
2023-11-14 23:56:44 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(216), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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(204), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
[6533] = 19,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(427), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(439), 1,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(441), 1,
2023-11-11 01:44:03 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(447), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(449), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(93), 1,
2023-11-11 01:44:03 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(132), 1,
aux_sym__expression_list,
STATE(324), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(443), 2,
2023-11-11 01:44:03 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(445), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
ACTIONS(279), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
STATE(104), 5,
2023-11-11 01:44:03 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(91), 6,
2023-11-11 01:44:03 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
ACTIONS(277), 11,
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,
[6614] = 7,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(457), 1,
anon_sym_elseif,
ACTIONS(459), 1,
anon_sym_else,
STATE(119), 1,
sym_else,
STATE(75), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(453), 11,
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,
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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-12 18:20:41 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(455), 17,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-10 23:44:56 +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-12 18:20:41 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
2023-11-15 00:22:26 +00:00
[6663] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(457), 1,
anon_sym_elseif,
ACTIONS(459), 1,
anon_sym_else,
STATE(113), 1,
sym_else,
STATE(77), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(461), 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(463), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[6712] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(141), 1,
sym_math_operator,
STATE(154), 1,
sym_logic_operator,
ACTIONS(291), 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(289), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6756] = 5,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(469), 1,
anon_sym_elseif,
STATE(77), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(465), 11,
2023-11-14 23:56:44 +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-14 23:56:44 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-14 23:56:44 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(467), 18,
2023-11-14 23:56:44 +00:00
anon_sym_async,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-14 23:56:44 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-14 23:56:44 +00:00
anon_sym_if,
2023-11-15 00:22:26 +00:00
anon_sym_else,
2023-11-14 23:56:44 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
2023-11-15 00:22:26 +00:00
[6800] = 6,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(472), 1,
anon_sym_DOT_DOT,
STATE(141), 1,
sym_math_operator,
STATE(154), 1,
sym_logic_operator,
ACTIONS(291), 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(289), 20,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-14 23:56:44 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
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,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[6846] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(474), 1,
anon_sym_COLON,
STATE(141), 1,
sym_math_operator,
STATE(154), 1,
sym_logic_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(325), 6,
2023-11-14 23:56:44 +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_PIPE,
2023-11-14 23:56:44 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(323), 10,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[6900] = 5,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(141), 1,
sym_math_operator,
STATE(154), 1,
sym_logic_operator,
ACTIONS(287), 9,
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(285), 21,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[6944] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(141), 1,
sym_math_operator,
STATE(154), 1,
sym_logic_operator,
ACTIONS(313), 9,
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_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(311), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
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_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,
[6988] = 10,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(474), 1,
anon_sym_COLON,
STATE(141), 1,
sym_math_operator,
STATE(154), 1,
sym_logic_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(319), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(317), 10,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_RBRACK,
anon_sym_DOT_DOT,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7042] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(425), 1,
anon_sym_COLON,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(319), 6,
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_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(317), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
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_RBRACK,
anon_sym_EQ_GT,
[7095] = 5,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(313), 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(311), 20,
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7138] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(287), 9,
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_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
2023-11-14 23:56:44 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(285), 20,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
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_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,
[7181] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(425), 1,
anon_sym_COLON,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(325), 6,
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_PIPE,
anon_sym_table,
ACTIONS(323), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
[7234] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(476), 12,
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_elseif,
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_PIPE,
ACTIONS(478), 18,
anon_sym_async,
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_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[7272] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(351), 9,
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,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(349), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[7310] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(480), 12,
2023-11-14 23:56:44 +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-14 23:56:44 +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_elseif,
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_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(482), 18,
2023-11-14 23:56:44 +00:00
anon_sym_async,
2023-11-05 18:54:29 +00:00
sym_identifier,
2023-11-14 23:56:44 +00:00
sym_integer,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-14 23:56:44 +00:00
anon_sym_if,
2023-11-15 00:22:26 +00:00
anon_sym_else,
2023-11-14 23:56:44 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
2023-11-15 00:22:26 +00:00
[7348] = 11,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(425), 1,
anon_sym_COLON,
ACTIONS(488), 1,
anon_sym_COMMA,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(484), 6,
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
anon_sym_true,
anon_sym_false,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(486), 7,
anon_sym_LBRACE,
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_RBRACK,
anon_sym_EQ_GT,
[7402] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(343), 9,
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,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(341), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[7440] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(371), 9,
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(369), 21,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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-04 10:02:27 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7478] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(305), 1,
anon_sym_DASH,
ACTIONS(425), 1,
anon_sym_COLON,
ACTIONS(494), 1,
anon_sym_COMMA,
STATE(168), 1,
sym_logic_operator,
STATE(169), 1,
sym_math_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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(490), 6,
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-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
anon_sym_table,
ACTIONS(492), 7,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
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,
2023-11-15 00:22:26 +00:00
[7532] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(347), 9,
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 00:22:26 +00:00
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(345), 21,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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,
[7570] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(345), 12,
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_elseif,
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_PIPE,
ACTIONS(347), 18,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[7608] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(363), 9,
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(361), 21,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7646] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 9,
2023-10-31 22:18:39 +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 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(365), 21,
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7684] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(387), 9,
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 00:22:26 +00:00
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(385), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[7722] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(383), 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(381), 21,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7760] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 9,
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,
anon_sym_PIPE,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(357), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[7798] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(355), 9,
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(353), 21,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
anon_sym_COMMA,
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_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-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[7836] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 9,
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,
anon_sym_PIPE,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(337), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
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_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,
[7874] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 9,
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,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(373), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[7912] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 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(377), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[7950] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(369), 12,
2023-11-11 01:44:03 +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 00:22:26 +00:00
anon_sym_elseif,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-11 01:44:03 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(371), 18,
2023-11-12 18:20:41 +00:00
anon_sym_async,
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,
anon_sym_if,
2023-11-15 00:22:26 +00:00
anon_sym_else,
2023-11-11 01:44:03 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
2023-11-15 00:22:26 +00:00
[7988] = 17,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(53), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(57), 1,
2023-11-14 23:56:44 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(63), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(65), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
2023-11-14 23:56:44 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
ACTIONS(423), 1,
sym_identifier,
STATE(107), 1,
aux_sym_match_repeat1,
STATE(240), 1,
2023-11-14 23:56:44 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-14 23:56:44 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(59), 2,
2023-11-14 23:56:44 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(61), 2,
2023-11-14 23:56:44 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
ACTIONS(429), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(216), 5,
2023-11-14 23:56:44 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(204), 6,
2023-11-14 23:56:44 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
[8053] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(391), 1,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(396), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(399), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(402), 1,
2023-11-12 18:20:41 +00:00
sym_integer,
2023-11-15 00:22:26 +00:00
ACTIONS(411), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(414), 1,
2023-11-10 23:44:56 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(417), 1,
anon_sym_PIPE,
ACTIONS(420), 1,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
STATE(107), 1,
aux_sym_match_repeat1,
STATE(240), 1,
2023-11-12 18:20:41 +00:00
sym_expression,
2023-11-15 00:22:26 +00:00
STATE(327), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
ACTIONS(405), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(408), 2,
2023-11-11 01:44:03 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
ACTIONS(389), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(216), 5,
2023-11-12 18:20:41 +00:00
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
2023-11-15 00:22:26 +00:00
STATE(204), 6,
2023-11-12 18:20:41 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
2023-11-15 00:22:26 +00:00
[8118] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(496), 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(498), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8154] = 4,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(335), 1,
anon_sym_SEMI,
ACTIONS(331), 10,
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-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,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(333), 17,
anon_sym_async,
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,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8192] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(345), 11,
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,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(347), 17,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8228] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(500), 11,
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,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(502), 17,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8264] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(504), 11,
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-11 01:44:03 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(506), 17,
anon_sym_async,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8300] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(508), 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(510), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8336] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(512), 11,
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-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACK,
2023-11-05 18:54:29 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(514), 17,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8372] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(516), 11,
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-11 01:44:03 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-31 22:18:39 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(518), 17,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-11 01:44:03 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8408] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(369), 11,
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-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,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(371), 17,
anon_sym_async,
2023-11-14 23:56:44 +00:00
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8444] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(520), 11,
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,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(522), 17,
anon_sym_async,
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_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8480] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(524), 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,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(526), 17,
anon_sym_async,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8516] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(461), 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,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(463), 17,
anon_sym_async,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
sym_integer,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8552] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(528), 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,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
sym_float,
sym_string,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(530), 17,
anon_sym_async,
2023-11-14 23:56:44 +00:00
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8588] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(532), 11,
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,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(534), 17,
anon_sym_async,
sym_identifier,
sym_integer,
2023-11-12 18:20:41 +00:00
anon_sym_true,
2023-11-15 00:22:26 +00:00
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[8624] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(536), 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,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(538), 17,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-12 18:20:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8660] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(540), 11,
ts_builtin_sym_end,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(542), 17,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8696] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(544), 11,
ts_builtin_sym_end,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(546), 17,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8732] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(548), 11,
ts_builtin_sym_end,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
anon_sym_asyncfor,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(550), 17,
anon_sym_async,
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 00:22:26 +00:00
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-11-12 18:20:41 +00:00
anon_sym_table,
2023-11-15 00:22:26 +00:00
[8768] = 17,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(449), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(552), 1,
anon_sym_RBRACK,
STATE(90), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[8831] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(554), 1,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
STATE(93), 1,
sym_expression,
STATE(129), 1,
aux_sym__expression_list,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(445), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[8894] = 17,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(556), 1,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
STATE(93), 1,
sym_expression,
STATE(127), 1,
aux_sym__expression_list,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
2023-11-12 18:20:41 +00:00
sym_float,
sym_string,
2023-11-15 00:22:26 +00:00
ACTIONS(445), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[8957] = 17,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(558), 1,
sym_identifier,
ACTIONS(561), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(564), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(567), 1,
2023-11-14 23:56:44 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(569), 1,
sym_integer,
ACTIONS(578), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(581), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(584), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(587), 1,
anon_sym_table,
STATE(93), 1,
sym_expression,
STATE(129), 1,
aux_sym__expression_list,
STATE(324), 1,
sym_identifier_list,
ACTIONS(572), 2,
sym_float,
sym_string,
ACTIONS(575), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9020] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(590), 1,
sym_identifier,
ACTIONS(593), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(596), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(599), 1,
sym_integer,
ACTIONS(608), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACK,
2023-11-15 00:22:26 +00:00
ACTIONS(611), 1,
anon_sym_RBRACK,
ACTIONS(613), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(616), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
ACTIONS(619), 1,
anon_sym_table,
STATE(90), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(602), 2,
sym_float,
sym_string,
ACTIONS(605), 2,
2023-11-12 18:20:41 +00:00
anon_sym_true,
anon_sym_false,
2023-11-15 00:22:26 +00:00
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9083] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(622), 1,
anon_sym_RBRACK,
STATE(90), 1,
sym_expression,
STATE(133), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9146] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(624), 1,
anon_sym_RPAREN,
STATE(93), 1,
sym_expression,
STATE(129), 1,
aux_sym__expression_list,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9209] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(626), 1,
anon_sym_RBRACK,
STATE(90), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9272] = 17,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(628), 1,
anon_sym_RBRACK,
STATE(90), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9335] = 17,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(630), 1,
anon_sym_RBRACK,
STATE(90), 1,
sym_expression,
STATE(134), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9398] = 17,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
anon_sym_table,
ACTIONS(632), 1,
anon_sym_RBRACK,
STATE(90), 1,
sym_expression,
STATE(126), 1,
aux_sym_list_repeat1,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9461] = 9,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(634), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
STATE(143), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(165), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(325), 2,
2023-11-14 23:56:44 +00:00
anon_sym_async,
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
ACTIONS(323), 7,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-05 18:54:29 +00:00
anon_sym_RBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_RPAREN,
2023-11-10 23:44:56 +00:00
anon_sym_COMMA,
2023-11-11 01:44:03 +00:00
anon_sym_DOT_DOT,
2023-11-15 00:22:26 +00:00
anon_sym_EQ_GT,
[9506] = 15,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(636), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(638), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(640), 1,
anon_sym_table,
STATE(45), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9563] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(642), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(243), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9620] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(638), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
STATE(51), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9677] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(644), 1,
anon_sym_table,
STATE(81), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9734] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(230), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9791] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(423), 1,
sym_identifier,
ACTIONS(646), 1,
anon_sym_table,
STATE(161), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9848] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(636), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(638), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(640), 1,
anon_sym_table,
STATE(46), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9905] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(236), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9962] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(451), 1,
anon_sym_table,
STATE(72), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10019] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(228), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10076] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-11 01:44:03 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(239), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10133] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(232), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10190] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(636), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(638), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
STATE(54), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10247] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(233), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10304] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
2023-11-12 18:20:41 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(226), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10361] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(648), 1,
sym_identifier,
STATE(242), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10418] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(644), 1,
anon_sym_table,
STATE(79), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10475] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(225), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10532] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(644), 1,
anon_sym_table,
STATE(82), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10589] = 5,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(143), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(165), 1,
sym_logic_operator,
ACTIONS(287), 4,
2023-11-14 23:56:44 +00:00
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(285), 19,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[10626] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(636), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(638), 1,
anon_sym_LBRACE,
STATE(55), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10683] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(636), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(638), 1,
anon_sym_LBRACE,
STATE(44), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10740] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(201), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10797] = 5,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(143), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(165), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(313), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(311), 19,
anon_sym_LBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
anon_sym_RPAREN,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
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_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[10834] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(423), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(646), 1,
anon_sym_table,
STATE(179), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10891] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(202), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[10948] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(199), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11005] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(423), 1,
sym_identifier,
ACTIONS(646), 1,
anon_sym_table,
STATE(137), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11062] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(423), 1,
sym_identifier,
ACTIONS(646), 1,
anon_sym_table,
STATE(196), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11119] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(238), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11176] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
STATE(86), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11233] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
STATE(84), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11290] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(644), 1,
anon_sym_table,
STATE(78), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11347] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(237), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11404] = 15,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
STATE(83), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11461] = 15,
2023-10-31 19:21:13 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(235), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11518] = 15,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(234), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11575] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(221), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11632] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(208), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11689] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(218), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11746] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(638), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
STATE(50), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11803] = 6,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(650), 1,
anon_sym_DOT_DOT,
STATE(143), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(165), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(291), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(289), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[11842] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(222), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11899] = 5,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(143), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(165), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(291), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(289), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
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,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[11936] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(224), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11993] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(227), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12050] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(229), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12107] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
anon_sym_LBRACE,
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
STATE(85), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12164] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(638), 1,
anon_sym_LBRACE,
ACTIONS(640), 1,
anon_sym_table,
STATE(49), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12221] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(638), 1,
anon_sym_LBRACE,
ACTIONS(640), 1,
anon_sym_table,
STATE(48), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12278] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(638), 1,
anon_sym_LBRACE,
ACTIONS(640), 1,
anon_sym_table,
STATE(43), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12335] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(638), 1,
anon_sym_LBRACE,
STATE(52), 1,
sym_expression,
STATE(322), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(66), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(57), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12392] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(200), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12449] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(220), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12506] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
2023-11-11 01:44:03 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(451), 1,
anon_sym_table,
STATE(70), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12563] = 15,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(231), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12620] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(654), 8,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
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(652), 17,
2023-11-14 23:56:44 +00:00
anon_sym_async,
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_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12653] = 15,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(433), 1,
sym_identifier,
ACTIONS(435), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(437), 1,
anon_sym_LPAREN,
ACTIONS(441), 1,
sym_integer,
ACTIONS(447), 1,
anon_sym_LBRACK,
ACTIONS(449), 1,
anon_sym_EQ_GT,
ACTIONS(644), 1,
anon_sym_table,
STATE(76), 1,
sym_expression,
STATE(324), 1,
sym_identifier_list,
ACTIONS(443), 2,
sym_float,
sym_string,
ACTIONS(445), 2,
anon_sym_true,
anon_sym_false,
STATE(104), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(91), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12710] = 9,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(634), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
STATE(143), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(165), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(319), 2,
anon_sym_async,
sym_identifier,
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
ACTIONS(317), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[12755] = 15,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(423), 1,
sym_identifier,
ACTIONS(646), 1,
anon_sym_table,
STATE(181), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12812] = 15,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
2023-11-14 23:56:44 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(423), 1,
sym_identifier,
STATE(223), 1,
sym_expression,
STATE(327), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(216), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(204), 6,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12869] = 9,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(325), 2,
anon_sym_async,
sym_identifier,
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
ACTIONS(323), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_EQ_GT,
[12913] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(287), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(285), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[12949] = 9,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(319), 2,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
sym_identifier,
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
ACTIONS(317), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_EQ_GT,
[12993] = 5,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(313), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(311), 18,
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_RPAREN,
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13029] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(367), 4,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(365), 19,
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_RPAREN,
anon_sym_COMMA,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13060] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(343), 4,
2023-11-14 23:56:44 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(341), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
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,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13091] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(351), 4,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(349), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
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,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13122] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(371), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(369), 19,
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,
anon_sym_RPAREN,
anon_sym_COMMA,
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_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13153] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(363), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(361), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +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,
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
[13184] = 12,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(180), 1,
anon_sym_async,
ACTIONS(297), 1,
sym_identifier,
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(658), 1,
anon_sym_LBRACE,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-14 23:56:44 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(270), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(295), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13233] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(387), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(385), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13264] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(383), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(381), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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-12 18:20:41 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[13295] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(347), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(345), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13326] = 3,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(359), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(357), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-12 18:20:41 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[13357] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(355), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(353), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13388] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(339), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(337), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-14 23:56:44 +00:00
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,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13419] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(375), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(373), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
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_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[13450] = 3,
2023-11-05 18:54:29 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(379), 4,
anon_sym_async,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(377), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
2023-11-14 23:56:44 +00:00
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,
2023-11-12 18:20:41 +00:00
anon_sym_DOT_DOT,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
anon_sym_EQ_GT,
[13481] = 6,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(281), 1,
anon_sym_EQ,
STATE(37), 1,
sym_assignment_operator,
ACTIONS(283), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(279), 4,
anon_sym_PLUS,
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(277), 14,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-12 18:20:41 +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,
2023-11-15 00:22:26 +00:00
[13517] = 8,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(327), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13555] = 9,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(660), 1,
anon_sym_SEMI,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(331), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13595] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
STATE(276), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13636] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-14 23:56:44 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(280), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13677] = 10,
2023-11-05 18:54:29 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(664), 1,
anon_sym_async,
ACTIONS(666), 1,
anon_sym_LBRACE,
STATE(89), 1,
sym_block,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-14 23:56:44 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13718] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
anon_sym_async,
STATE(117), 1,
sym_block,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13759] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
STATE(275), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(307), 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,
[13800] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
anon_sym_async,
STATE(120), 1,
sym_block,
STATE(163), 1,
sym_math_operator,
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13841] = 10,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
anon_sym_async,
STATE(121), 1,
sym_block,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13882] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
STATE(274), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13923] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(668), 1,
anon_sym_async,
STATE(123), 1,
sym_block,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
sym_logic_operator,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[13964] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(670), 1,
anon_sym_async,
ACTIONS(672), 1,
anon_sym_LBRACE,
STATE(163), 1,
2023-11-12 18:20:41 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-14 23:56:44 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(263), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14005] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(668), 1,
anon_sym_async,
STATE(125), 1,
sym_block,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14046] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(670), 1,
anon_sym_async,
ACTIONS(672), 1,
anon_sym_LBRACE,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(264), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 6,
2023-11-11 01:44:03 +00:00
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,
2023-11-15 00:22:26 +00:00
[14087] = 10,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
anon_sym_async,
STATE(114), 1,
sym_block,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-12 18:20:41 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14128] = 10,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
anon_sym_async,
STATE(111), 1,
sym_block,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14169] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(272), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14210] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(271), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14251] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(664), 1,
anon_sym_async,
ACTIONS(666), 1,
anon_sym_LBRACE,
STATE(87), 1,
sym_block,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14292] = 10,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(269), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14333] = 10,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
STATE(267), 1,
sym_block,
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14374] = 10,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(656), 1,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
anon_sym_async,
STATE(115), 1,
sym_block,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-12 18:20:41 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14415] = 8,
2023-11-11 01:44:03 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(674), 1,
anon_sym_EQ_GT,
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-12 18:20:41 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14450] = 8,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-12 18:20:41 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(676), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
STATE(163), 1,
2023-11-14 23:56:44 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14485] = 8,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
2023-11-14 23:56:44 +00:00
anon_sym_COLON,
2023-11-15 00:22:26 +00:00
ACTIONS(678), 1,
sym_identifier,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14520] = 8,
2023-11-10 23:44:56 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
ACTIONS(680), 1,
sym_identifier,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14555] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(682), 1,
anon_sym_in,
ACTIONS(279), 3,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(277), 12,
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
[14581] = 7,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(656), 1,
anon_sym_COLON,
STATE(163), 1,
2023-11-11 01:44:03 +00:00
sym_math_operator,
2023-11-15 00:22:26 +00:00
STATE(164), 1,
2023-11-11 01:44:03 +00:00
sym_logic_operator,
2023-11-15 00:22:26 +00:00
ACTIONS(309), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(303), 5,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
2023-11-11 01:44:03 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-11-15 00:22:26 +00:00
ACTIONS(307), 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,
2023-11-15 00:22:26 +00:00
[14613] = 4,
2023-11-05 18:54:29 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(684), 1,
anon_sym_in,
ACTIONS(279), 3,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(277), 12,
anon_sym_COLON,
2023-11-11 01:44:03 +00:00
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
[14639] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(686), 1,
2023-11-11 01:44:03 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(343), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(341), 12,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
[14664] = 4,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(688), 1,
2023-11-11 01:44:03 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(343), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(341), 12,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
[14689] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(524), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14712] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(690), 1,
2023-11-11 01:44:03 +00:00
anon_sym_RPAREN,
2023-11-15 00:22:26 +00:00
ACTIONS(343), 2,
2023-11-11 01:44:03 +00:00
anon_sym_GT,
anon_sym_LT,
2023-11-15 00:22:26 +00:00
ACTIONS(341), 12,
2023-11-11 01:44:03 +00:00
anon_sym_COLON,
anon_sym_PLUS,
2023-11-12 18:20:41 +00:00
anon_sym_DASH,
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 00:22:26 +00:00
[14737] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(369), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14760] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(347), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(345), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14783] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(692), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
anon_sym_table,
ACTIONS(694), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14804] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(696), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
anon_sym_table,
ACTIONS(698), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14825] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(700), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(567), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14846] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(702), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(611), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14867] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(704), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(706), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14887] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(708), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(710), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[14907] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(463), 1,
2023-10-31 19:21:13 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(712), 1,
2023-11-11 01:44:03 +00:00
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
ACTIONS(714), 1,
2023-11-11 01:44:03 +00:00
anon_sym_else,
2023-11-15 00:22:26 +00:00
STATE(268), 1,
2023-11-11 01:44:03 +00:00
sym_else,
2023-11-15 00:22:26 +00:00
STATE(261), 2,
2023-11-11 01:44:03 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-15 00:22:26 +00:00
ACTIONS(461), 3,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
[14932] = 7,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(455), 1,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(712), 1,
2023-11-11 01:44:03 +00:00
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
ACTIONS(714), 1,
2023-11-11 01:44:03 +00:00
anon_sym_else,
2023-11-15 00:22:26 +00:00
STATE(278), 1,
2023-11-11 01:44:03 +00:00
sym_else,
2023-11-15 00:22:26 +00:00
STATE(259), 2,
2023-11-11 01:44:03 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-15 00:22:26 +00:00
ACTIONS(453), 3,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
[14957] = 5,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(716), 1,
2023-11-11 01:44:03 +00:00
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
ACTIONS(467), 2,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
2023-11-15 00:22:26 +00:00
STATE(261), 2,
2023-11-11 01:44:03 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-11-15 00:22:26 +00:00
ACTIONS(465), 3,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-15 00:22:26 +00:00
[14977] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(347), 2,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
2023-11-15 00:22:26 +00:00
ACTIONS(345), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
[14991] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(482), 2,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
2023-11-15 00:22:26 +00:00
ACTIONS(480), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
[15005] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(478), 2,
2023-10-31 19:21:13 +00:00
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_else,
2023-11-15 00:22:26 +00:00
ACTIONS(476), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
[15019] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(371), 2,
2023-11-12 18:20:41 +00:00
sym_identifier,
anon_sym_else,
2023-11-15 00:22:26 +00:00
ACTIONS(369), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-12 18:20:41 +00:00
anon_sym_elseif,
2023-11-15 00:22:26 +00:00
[15033] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(660), 1,
2023-11-14 23:56:44 +00:00
anon_sym_SEMI,
2023-11-15 00:22:26 +00:00
ACTIONS(331), 3,
anon_sym_RBRACE,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15045] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(548), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-10 23:44:56 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15055] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(508), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15065] = 2,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(540), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15075] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(536), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15085] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(528), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15095] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(532), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15105] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(504), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15115] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(520), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-10-31 19:21:13 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15125] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(516), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15135] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(500), 4,
2023-11-14 23:56:44 +00:00
anon_sym_RBRACE,
2023-11-15 00:22:26 +00:00
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15145] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(544), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15155] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(461), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
2023-11-12 18:20:41 +00:00
anon_sym_SEMI,
2023-11-11 01:44:03 +00:00
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15165] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(496), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15175] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(512), 4,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15185] = 4,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(662), 1,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
STATE(205), 1,
2023-11-12 18:20:41 +00:00
sym_block,
2023-11-15 00:22:26 +00:00
[15198] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(662), 1,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
STATE(212), 1,
2023-11-12 18:20:41 +00:00
sym_block,
2023-11-15 00:22:26 +00:00
[15211] = 4,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(719), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(721), 1,
2023-11-14 23:56:44 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(296), 1,
aux_sym_identifier_list_repeat1,
[15224] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(723), 1,
sym_identifier,
ACTIONS(725), 1,
anon_sym_RBRACE,
STATE(287), 1,
aux_sym_map_repeat1,
[15237] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
ACTIONS(668), 1,
2023-11-14 23:56:44 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
STATE(118), 1,
2023-11-14 23:56:44 +00:00
sym_block,
2023-11-15 00:22:26 +00:00
[15250] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(727), 1,
2023-11-14 23:56:44 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
ACTIONS(729), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
STATE(88), 1,
2023-11-12 18:20:41 +00:00
sym_block,
2023-11-15 00:22:26 +00:00
[15263] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(731), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(734), 1,
anon_sym_RBRACE,
STATE(287), 1,
aux_sym_map_repeat1,
[15276] = 4,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(723), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(736), 1,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
2023-11-15 00:22:26 +00:00
STATE(287), 1,
2023-11-11 01:44:03 +00:00
aux_sym_map_repeat1,
2023-11-15 00:22:26 +00:00
[15289] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(738), 1,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
ACTIONS(740), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
STATE(59), 1,
2023-11-12 18:20:41 +00:00
sym_block,
2023-11-15 00:22:26 +00:00
[15302] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(75), 1,
anon_sym_RBRACE,
ACTIONS(723), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
STATE(288), 1,
aux_sym_map_repeat1,
[15315] = 4,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(723), 1,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(742), 1,
2023-11-11 01:44:03 +00:00
anon_sym_RBRACE,
2023-11-15 00:22:26 +00:00
STATE(287), 1,
2023-11-11 01:44:03 +00:00
aux_sym_map_repeat1,
2023-11-15 00:22:26 +00:00
[15328] = 4,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(744), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(747), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(292), 1,
2023-11-14 23:56:44 +00:00
aux_sym_identifier_list_repeat1,
2023-11-15 00:22:26 +00:00
[15341] = 4,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(738), 1,
2023-11-12 18:20:41 +00:00
anon_sym_async,
2023-11-15 00:22:26 +00:00
ACTIONS(740), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
STATE(61), 1,
2023-11-12 18:20:41 +00:00
sym_block,
2023-11-15 00:22:26 +00:00
[15354] = 4,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(299), 1,
anon_sym_LBRACE,
ACTIONS(668), 1,
anon_sym_async,
STATE(112), 1,
sym_block,
[15367] = 4,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(658), 1,
anon_sym_LBRACE,
ACTIONS(662), 1,
anon_sym_async,
STATE(273), 1,
sym_block,
[15380] = 4,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(719), 1,
2023-10-31 22:18:39 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(749), 1,
anon_sym_PIPE,
STATE(292), 1,
aux_sym_identifier_list_repeat1,
[15393] = 3,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(753), 1,
anon_sym_COMMA,
ACTIONS(751), 2,
2023-11-11 01:44:03 +00:00
sym_identifier,
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
[15404] = 4,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(723), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
ACTIONS(755), 1,
anon_sym_RBRACE,
STATE(284), 1,
aux_sym_map_repeat1,
[15417] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(757), 1,
anon_sym_async,
ACTIONS(759), 1,
anon_sym_LBRACE,
STATE(249), 1,
sym_block,
[15430] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(727), 1,
anon_sym_async,
ACTIONS(729), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_block,
[15443] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(763), 1,
anon_sym_COMMA,
ACTIONS(761), 2,
2023-11-14 23:56:44 +00:00
anon_sym_RBRACE,
sym_identifier,
2023-11-15 00:22:26 +00:00
[15454] = 4,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(73), 1,
anon_sym_RBRACE,
ACTIONS(723), 1,
sym_identifier,
STATE(291), 1,
aux_sym_map_repeat1,
[15467] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(336), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15477] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(166), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15487] = 3,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(156), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15497] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(317), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15507] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(187), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15517] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(747), 2,
sym_identifier,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
[15525] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(189), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15535] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-11 01:44:03 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(160), 1,
2023-11-11 01:44:03 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15545] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(765), 2,
anon_sym_RBRACE,
sym_identifier,
[15553] = 3,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(47), 1,
2023-11-12 18:20:41 +00:00
anon_sym_PIPE,
2023-11-15 00:22:26 +00:00
STATE(172), 1,
2023-11-12 18:20:41 +00:00
sym_identifier_list,
2023-11-15 00:22:26 +00:00
[15563] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(767), 1,
anon_sym_to,
[15570] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(769), 1,
anon_sym_in,
[15577] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(771), 1,
sym_identifier,
[15584] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(773), 1,
sym_identifier,
[15591] = 2,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(775), 1,
2023-11-14 23:56:44 +00:00
anon_sym_from,
2023-11-15 00:22:26 +00:00
[15598] = 2,
2023-11-12 18:20:41 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(777), 1,
anon_sym_RPAREN,
[15605] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(779), 1,
anon_sym_into,
[15612] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(781), 1,
anon_sym_RPAREN,
[15619] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(783), 1,
ts_builtin_sym_end,
[15626] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(785), 1,
anon_sym_EQ_GT,
[15633] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(787), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15640] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(789), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[15647] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(791), 1,
sym_identifier,
[15654] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(793), 1,
sym_identifier,
[15661] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(795), 1,
2023-11-14 23:56:44 +00:00
anon_sym_EQ_GT,
2023-11-15 00:22:26 +00:00
[15668] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(797), 1,
sym_identifier,
[15675] = 2,
2023-11-14 23:56:44 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(799), 1,
2023-11-04 10:02:27 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15682] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(801), 1,
anon_sym_into,
[15689] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(803), 1,
anon_sym_from,
[15696] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(805), 1,
2023-11-14 23:56:44 +00:00
anon_sym_in,
2023-11-15 00:22:26 +00:00
[15703] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(807), 1,
anon_sym_EQ,
[15710] = 2,
2023-10-31 13:31:10 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(809), 1,
anon_sym_LBRACE,
[15717] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(811), 1,
anon_sym_RPAREN,
[15724] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(813), 1,
2023-11-12 18:20:41 +00:00
anon_sym_from,
2023-11-15 00:22:26 +00:00
[15731] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(815), 1,
anon_sym_in,
[15738] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(817), 1,
anon_sym_in,
[15745] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(819), 1,
2023-11-14 23:56:44 +00:00
anon_sym_in,
2023-11-15 00:22:26 +00:00
[15752] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(821), 1,
anon_sym_from,
[15759] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(823), 1,
2023-11-12 18:20:41 +00:00
anon_sym_in,
2023-11-15 00:22:26 +00:00
[15766] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(825), 1,
2023-11-12 18:20:41 +00:00
anon_sym_in,
2023-11-15 00:22:26 +00:00
[15773] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(827), 1,
2023-11-12 18:20:41 +00:00
anon_sym_in,
2023-11-15 00:22:26 +00:00
[15780] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(829), 1,
2023-11-14 23:56:44 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15787] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(831), 1,
2023-11-12 18:20:41 +00:00
anon_sym_in,
2023-11-15 00:22:26 +00:00
[15794] = 2,
2023-11-04 10:02:27 +00:00
ACTIONS(3), 1,
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(833), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
[15801] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(835), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
[15808] = 2,
2023-10-31 17:04:22 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(837), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
[15815] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(839), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
[15822] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(841), 1,
2023-11-12 18:20:41 +00:00
anon_sym_LBRACE,
2023-11-15 00:22:26 +00:00
[15829] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(843), 1,
2023-10-31 22:18:39 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15836] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(845), 1,
2023-11-12 18:20:41 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15843] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(847), 1,
anon_sym_in,
[15850] = 2,
2023-10-31 22:18:39 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(849), 1,
2023-11-11 01:44:03 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15857] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(851), 1,
2023-10-31 13:31:10 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15864] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(853), 1,
anon_sym_LBRACE,
[15871] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(855), 1,
2023-10-31 19:21:13 +00:00
sym_identifier,
2023-11-15 00:22:26 +00:00
[15878] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(857), 1,
2023-11-11 01:44:03 +00:00
anon_sym_to,
2023-11-15 00:22:26 +00:00
[15885] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
2023-11-04 10:02:27 +00:00
sym__comment,
2023-11-15 00:22:26 +00:00
ACTIONS(859), 1,
2023-10-31 17:04:22 +00:00
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-11-15 00:22:26 +00:00
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 97,
[SMALL_STATE(4)] = 194,
[SMALL_STATE(5)] = 291,
[SMALL_STATE(6)] = 415,
[SMALL_STATE(7)] = 539,
[SMALL_STATE(8)] = 661,
[SMALL_STATE(9)] = 782,
[SMALL_STATE(10)] = 903,
[SMALL_STATE(11)] = 1024,
[SMALL_STATE(12)] = 1145,
[SMALL_STATE(13)] = 1266,
[SMALL_STATE(14)] = 1387,
[SMALL_STATE(15)] = 1508,
[SMALL_STATE(16)] = 1629,
[SMALL_STATE(17)] = 1750,
[SMALL_STATE(18)] = 1871,
[SMALL_STATE(19)] = 1992,
[SMALL_STATE(20)] = 2113,
[SMALL_STATE(21)] = 2234,
[SMALL_STATE(22)] = 2355,
[SMALL_STATE(23)] = 2476,
[SMALL_STATE(24)] = 2594,
[SMALL_STATE(25)] = 2712,
[SMALL_STATE(26)] = 2830,
[SMALL_STATE(27)] = 2948,
[SMALL_STATE(28)] = 3066,
[SMALL_STATE(29)] = 3184,
[SMALL_STATE(30)] = 3302,
[SMALL_STATE(31)] = 3420,
[SMALL_STATE(32)] = 3538,
[SMALL_STATE(33)] = 3656,
[SMALL_STATE(34)] = 3774,
[SMALL_STATE(35)] = 3892,
[SMALL_STATE(36)] = 4010,
[SMALL_STATE(37)] = 4128,
[SMALL_STATE(38)] = 4245,
[SMALL_STATE(39)] = 4362,
[SMALL_STATE(40)] = 4479,
[SMALL_STATE(41)] = 4596,
[SMALL_STATE(42)] = 4656,
[SMALL_STATE(43)] = 4713,
[SMALL_STATE(44)] = 4772,
[SMALL_STATE(45)] = 4845,
[SMALL_STATE(46)] = 4902,
[SMALL_STATE(47)] = 4959,
[SMALL_STATE(48)] = 5018,
[SMALL_STATE(49)] = 5085,
[SMALL_STATE(50)] = 5152,
[SMALL_STATE(51)] = 5218,
[SMALL_STATE(52)] = 5274,
[SMALL_STATE(53)] = 5340,
[SMALL_STATE(54)] = 5408,
[SMALL_STATE(55)] = 5474,
[SMALL_STATE(56)] = 5530,
[SMALL_STATE(57)] = 5581,
[SMALL_STATE(58)] = 5632,
[SMALL_STATE(59)] = 5683,
[SMALL_STATE(60)] = 5734,
[SMALL_STATE(61)] = 5785,
[SMALL_STATE(62)] = 5836,
[SMALL_STATE(63)] = 5887,
[SMALL_STATE(64)] = 5938,
[SMALL_STATE(65)] = 5989,
[SMALL_STATE(66)] = 6040,
[SMALL_STATE(67)] = 6091,
[SMALL_STATE(68)] = 6142,
[SMALL_STATE(69)] = 6193,
[SMALL_STATE(70)] = 6273,
[SMALL_STATE(71)] = 6363,
[SMALL_STATE(72)] = 6443,
[SMALL_STATE(73)] = 6533,
[SMALL_STATE(74)] = 6614,
[SMALL_STATE(75)] = 6663,
[SMALL_STATE(76)] = 6712,
[SMALL_STATE(77)] = 6756,
[SMALL_STATE(78)] = 6800,
[SMALL_STATE(79)] = 6846,
[SMALL_STATE(80)] = 6900,
[SMALL_STATE(81)] = 6944,
[SMALL_STATE(82)] = 6988,
[SMALL_STATE(83)] = 7042,
[SMALL_STATE(84)] = 7095,
[SMALL_STATE(85)] = 7138,
[SMALL_STATE(86)] = 7181,
[SMALL_STATE(87)] = 7234,
[SMALL_STATE(88)] = 7272,
[SMALL_STATE(89)] = 7310,
[SMALL_STATE(90)] = 7348,
[SMALL_STATE(91)] = 7402,
[SMALL_STATE(92)] = 7440,
[SMALL_STATE(93)] = 7478,
[SMALL_STATE(94)] = 7532,
[SMALL_STATE(95)] = 7570,
[SMALL_STATE(96)] = 7608,
[SMALL_STATE(97)] = 7646,
[SMALL_STATE(98)] = 7684,
[SMALL_STATE(99)] = 7722,
[SMALL_STATE(100)] = 7760,
[SMALL_STATE(101)] = 7798,
[SMALL_STATE(102)] = 7836,
[SMALL_STATE(103)] = 7874,
[SMALL_STATE(104)] = 7912,
[SMALL_STATE(105)] = 7950,
[SMALL_STATE(106)] = 7988,
[SMALL_STATE(107)] = 8053,
[SMALL_STATE(108)] = 8118,
[SMALL_STATE(109)] = 8154,
[SMALL_STATE(110)] = 8192,
[SMALL_STATE(111)] = 8228,
[SMALL_STATE(112)] = 8264,
[SMALL_STATE(113)] = 8300,
[SMALL_STATE(114)] = 8336,
[SMALL_STATE(115)] = 8372,
[SMALL_STATE(116)] = 8408,
[SMALL_STATE(117)] = 8444,
[SMALL_STATE(118)] = 8480,
[SMALL_STATE(119)] = 8516,
[SMALL_STATE(120)] = 8552,
[SMALL_STATE(121)] = 8588,
[SMALL_STATE(122)] = 8624,
[SMALL_STATE(123)] = 8660,
[SMALL_STATE(124)] = 8696,
[SMALL_STATE(125)] = 8732,
[SMALL_STATE(126)] = 8768,
[SMALL_STATE(127)] = 8831,
[SMALL_STATE(128)] = 8894,
[SMALL_STATE(129)] = 8957,
[SMALL_STATE(130)] = 9020,
[SMALL_STATE(131)] = 9083,
[SMALL_STATE(132)] = 9146,
[SMALL_STATE(133)] = 9209,
[SMALL_STATE(134)] = 9272,
[SMALL_STATE(135)] = 9335,
[SMALL_STATE(136)] = 9398,
[SMALL_STATE(137)] = 9461,
[SMALL_STATE(138)] = 9506,
[SMALL_STATE(139)] = 9563,
[SMALL_STATE(140)] = 9620,
[SMALL_STATE(141)] = 9677,
[SMALL_STATE(142)] = 9734,
[SMALL_STATE(143)] = 9791,
[SMALL_STATE(144)] = 9848,
[SMALL_STATE(145)] = 9905,
[SMALL_STATE(146)] = 9962,
[SMALL_STATE(147)] = 10019,
[SMALL_STATE(148)] = 10076,
[SMALL_STATE(149)] = 10133,
[SMALL_STATE(150)] = 10190,
[SMALL_STATE(151)] = 10247,
[SMALL_STATE(152)] = 10304,
[SMALL_STATE(153)] = 10361,
[SMALL_STATE(154)] = 10418,
[SMALL_STATE(155)] = 10475,
[SMALL_STATE(156)] = 10532,
[SMALL_STATE(157)] = 10589,
[SMALL_STATE(158)] = 10626,
[SMALL_STATE(159)] = 10683,
[SMALL_STATE(160)] = 10740,
[SMALL_STATE(161)] = 10797,
[SMALL_STATE(162)] = 10834,
[SMALL_STATE(163)] = 10891,
[SMALL_STATE(164)] = 10948,
[SMALL_STATE(165)] = 11005,
[SMALL_STATE(166)] = 11062,
[SMALL_STATE(167)] = 11119,
[SMALL_STATE(168)] = 11176,
[SMALL_STATE(169)] = 11233,
[SMALL_STATE(170)] = 11290,
[SMALL_STATE(171)] = 11347,
[SMALL_STATE(172)] = 11404,
[SMALL_STATE(173)] = 11461,
[SMALL_STATE(174)] = 11518,
[SMALL_STATE(175)] = 11575,
[SMALL_STATE(176)] = 11632,
[SMALL_STATE(177)] = 11689,
[SMALL_STATE(178)] = 11746,
[SMALL_STATE(179)] = 11803,
[SMALL_STATE(180)] = 11842,
[SMALL_STATE(181)] = 11899,
[SMALL_STATE(182)] = 11936,
[SMALL_STATE(183)] = 11993,
[SMALL_STATE(184)] = 12050,
[SMALL_STATE(185)] = 12107,
[SMALL_STATE(186)] = 12164,
[SMALL_STATE(187)] = 12221,
[SMALL_STATE(188)] = 12278,
[SMALL_STATE(189)] = 12335,
[SMALL_STATE(190)] = 12392,
[SMALL_STATE(191)] = 12449,
[SMALL_STATE(192)] = 12506,
[SMALL_STATE(193)] = 12563,
[SMALL_STATE(194)] = 12620,
[SMALL_STATE(195)] = 12653,
[SMALL_STATE(196)] = 12710,
[SMALL_STATE(197)] = 12755,
[SMALL_STATE(198)] = 12812,
[SMALL_STATE(199)] = 12869,
[SMALL_STATE(200)] = 12913,
[SMALL_STATE(201)] = 12949,
[SMALL_STATE(202)] = 12993,
[SMALL_STATE(203)] = 13029,
[SMALL_STATE(204)] = 13060,
[SMALL_STATE(205)] = 13091,
[SMALL_STATE(206)] = 13122,
[SMALL_STATE(207)] = 13153,
[SMALL_STATE(208)] = 13184,
[SMALL_STATE(209)] = 13233,
[SMALL_STATE(210)] = 13264,
[SMALL_STATE(211)] = 13295,
[SMALL_STATE(212)] = 13326,
[SMALL_STATE(213)] = 13357,
[SMALL_STATE(214)] = 13388,
[SMALL_STATE(215)] = 13419,
[SMALL_STATE(216)] = 13450,
[SMALL_STATE(217)] = 13481,
[SMALL_STATE(218)] = 13517,
[SMALL_STATE(219)] = 13555,
[SMALL_STATE(220)] = 13595,
[SMALL_STATE(221)] = 13636,
[SMALL_STATE(222)] = 13677,
[SMALL_STATE(223)] = 13718,
[SMALL_STATE(224)] = 13759,
[SMALL_STATE(225)] = 13800,
[SMALL_STATE(226)] = 13841,
[SMALL_STATE(227)] = 13882,
[SMALL_STATE(228)] = 13923,
[SMALL_STATE(229)] = 13964,
[SMALL_STATE(230)] = 14005,
[SMALL_STATE(231)] = 14046,
[SMALL_STATE(232)] = 14087,
[SMALL_STATE(233)] = 14128,
[SMALL_STATE(234)] = 14169,
[SMALL_STATE(235)] = 14210,
[SMALL_STATE(236)] = 14251,
[SMALL_STATE(237)] = 14292,
[SMALL_STATE(238)] = 14333,
[SMALL_STATE(239)] = 14374,
[SMALL_STATE(240)] = 14415,
[SMALL_STATE(241)] = 14450,
[SMALL_STATE(242)] = 14485,
[SMALL_STATE(243)] = 14520,
[SMALL_STATE(244)] = 14555,
[SMALL_STATE(245)] = 14581,
[SMALL_STATE(246)] = 14613,
[SMALL_STATE(247)] = 14639,
[SMALL_STATE(248)] = 14664,
[SMALL_STATE(249)] = 14689,
[SMALL_STATE(250)] = 14712,
[SMALL_STATE(251)] = 14737,
[SMALL_STATE(252)] = 14760,
[SMALL_STATE(253)] = 14783,
[SMALL_STATE(254)] = 14804,
[SMALL_STATE(255)] = 14825,
[SMALL_STATE(256)] = 14846,
[SMALL_STATE(257)] = 14867,
[SMALL_STATE(258)] = 14887,
[SMALL_STATE(259)] = 14907,
[SMALL_STATE(260)] = 14932,
[SMALL_STATE(261)] = 14957,
[SMALL_STATE(262)] = 14977,
[SMALL_STATE(263)] = 14991,
[SMALL_STATE(264)] = 15005,
[SMALL_STATE(265)] = 15019,
[SMALL_STATE(266)] = 15033,
[SMALL_STATE(267)] = 15045,
[SMALL_STATE(268)] = 15055,
[SMALL_STATE(269)] = 15065,
[SMALL_STATE(270)] = 15075,
[SMALL_STATE(271)] = 15085,
[SMALL_STATE(272)] = 15095,
[SMALL_STATE(273)] = 15105,
[SMALL_STATE(274)] = 15115,
[SMALL_STATE(275)] = 15125,
[SMALL_STATE(276)] = 15135,
[SMALL_STATE(277)] = 15145,
[SMALL_STATE(278)] = 15155,
[SMALL_STATE(279)] = 15165,
[SMALL_STATE(280)] = 15175,
[SMALL_STATE(281)] = 15185,
[SMALL_STATE(282)] = 15198,
[SMALL_STATE(283)] = 15211,
[SMALL_STATE(284)] = 15224,
[SMALL_STATE(285)] = 15237,
[SMALL_STATE(286)] = 15250,
[SMALL_STATE(287)] = 15263,
[SMALL_STATE(288)] = 15276,
[SMALL_STATE(289)] = 15289,
[SMALL_STATE(290)] = 15302,
[SMALL_STATE(291)] = 15315,
[SMALL_STATE(292)] = 15328,
[SMALL_STATE(293)] = 15341,
[SMALL_STATE(294)] = 15354,
[SMALL_STATE(295)] = 15367,
[SMALL_STATE(296)] = 15380,
[SMALL_STATE(297)] = 15393,
[SMALL_STATE(298)] = 15404,
[SMALL_STATE(299)] = 15417,
[SMALL_STATE(300)] = 15430,
[SMALL_STATE(301)] = 15443,
[SMALL_STATE(302)] = 15454,
[SMALL_STATE(303)] = 15467,
[SMALL_STATE(304)] = 15477,
[SMALL_STATE(305)] = 15487,
[SMALL_STATE(306)] = 15497,
[SMALL_STATE(307)] = 15507,
[SMALL_STATE(308)] = 15517,
[SMALL_STATE(309)] = 15525,
[SMALL_STATE(310)] = 15535,
[SMALL_STATE(311)] = 15545,
[SMALL_STATE(312)] = 15553,
[SMALL_STATE(313)] = 15563,
[SMALL_STATE(314)] = 15570,
[SMALL_STATE(315)] = 15577,
[SMALL_STATE(316)] = 15584,
[SMALL_STATE(317)] = 15591,
[SMALL_STATE(318)] = 15598,
[SMALL_STATE(319)] = 15605,
[SMALL_STATE(320)] = 15612,
[SMALL_STATE(321)] = 15619,
[SMALL_STATE(322)] = 15626,
[SMALL_STATE(323)] = 15633,
[SMALL_STATE(324)] = 15640,
[SMALL_STATE(325)] = 15647,
[SMALL_STATE(326)] = 15654,
[SMALL_STATE(327)] = 15661,
[SMALL_STATE(328)] = 15668,
[SMALL_STATE(329)] = 15675,
[SMALL_STATE(330)] = 15682,
[SMALL_STATE(331)] = 15689,
[SMALL_STATE(332)] = 15696,
[SMALL_STATE(333)] = 15703,
[SMALL_STATE(334)] = 15710,
[SMALL_STATE(335)] = 15717,
[SMALL_STATE(336)] = 15724,
[SMALL_STATE(337)] = 15731,
[SMALL_STATE(338)] = 15738,
[SMALL_STATE(339)] = 15745,
[SMALL_STATE(340)] = 15752,
[SMALL_STATE(341)] = 15759,
[SMALL_STATE(342)] = 15766,
[SMALL_STATE(343)] = 15773,
[SMALL_STATE(344)] = 15780,
[SMALL_STATE(345)] = 15787,
[SMALL_STATE(346)] = 15794,
[SMALL_STATE(347)] = 15801,
[SMALL_STATE(348)] = 15808,
[SMALL_STATE(349)] = 15815,
[SMALL_STATE(350)] = 15822,
[SMALL_STATE(351)] = 15829,
[SMALL_STATE(352)] = 15836,
[SMALL_STATE(353)] = 15843,
[SMALL_STATE(354)] = 15850,
[SMALL_STATE(355)] = 15857,
[SMALL_STATE(356)] = 15864,
[SMALL_STATE(357)] = 15871,
[SMALL_STATE(358)] = 15878,
[SMALL_STATE(359)] = 15885,
};
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(),
2023-11-15 00:22:26 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146),
[25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309),
[51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73),
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
[59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215),
[63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310),
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
[71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41),
[82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(356),
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(5),
[88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66),
[94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66),
[97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(65),
[100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(131),
[103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(145),
[106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(146),
[109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(293),
[112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(151),
[115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329),
[118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329),
[121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(328),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(153),
[127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(326),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325),
[133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(323),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(303),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(319),
[142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(283),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(309),
[148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217),
[180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
[188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351),
[192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352),
[196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139),
[198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354),
[200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355),
[202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359),
[204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
[206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330),
[208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(217),
[211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(346),
[214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(6),
[217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(4),
[220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(216),
[223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(216),
[226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(215),
[229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(136),
[232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(193),
[235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(192),
[238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(282),
[241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(191),
[244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(351),
[247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(351),
[250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(352),
[253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(139),
[256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(354),
[259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(355),
[262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(359),
[265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(306),
[268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(330),
[271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(283),
[274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(310),
[277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257),
[307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
[311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39),
[317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3),
[319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3),
[321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2),
[353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1),
[359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1),
[361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(204),
[394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(290),
[399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(4),
[402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(216),
[405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(216),
[408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(215),
[411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(136),
[414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282),
[417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(283),
[420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(310),
[423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
[425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283),
[429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1),
[441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
[443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
[447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312),
[453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294),
[461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(180),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3),
[514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3),
[516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5),
[518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5),
[520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5),
[530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5),
[532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5),
[534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5),
[536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4),
[542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4),
[544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7),
[550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1),
[558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(91),
[561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(298),
[564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(3),
[567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104),
[572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104),
[575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103),
[578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(135),
[581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(300),
[584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(283),
[587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(312),
[590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(91),
[593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(298),
[596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(3),
[599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104),
[602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104),
[605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103),
[608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(135),
[611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(300),
[616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(283),
[619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(312),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307),
[642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246),
[644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305),
[646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304),
[648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342),
[682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
[684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3),
[694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3),
[696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2),
[698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2),
[700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295),
[716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(184),
[719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
[729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(333),
[734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(297),
[747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[783] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
[831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
[847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
[853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343),
[857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
};
#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