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

9547 lines
221 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-10-31 07:17:58 +00:00
#define STATE_COUNT 191
2023-10-21 20:38:20 +00:00
#define LARGE_STATE_COUNT 2
2023-10-31 07:17:58 +00:00
#define SYMBOL_COUNT 125
#define ALIAS_COUNT 0
2023-10-31 05:09:29 +00:00
#define TOKEN_COUNT 84
#define EXTERNAL_TOKEN_COUNT 0
2023-10-31 05:09:29 +00:00
#define FIELD_COUNT 4
2023-10-21 17:04:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 9
2023-10-31 05:09:29 +00:00
#define PRODUCTION_ID_COUNT 3
enum {
sym_identifier = 1,
2023-10-31 07:17:58 +00:00
sym_comment = 2,
anon_sym_LBRACE = 3,
anon_sym_RBRACE = 4,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN = 5,
anon_sym_RPAREN = 6,
2023-10-31 07:17:58 +00:00
sym_integer = 7,
sym_float = 8,
2023-10-31 05:09:29 +00:00
sym_string = 9,
anon_sym_true = 10,
anon_sym_false = 11,
anon_sym_LBRACK = 12,
anon_sym_COMMA = 13,
anon_sym_RBRACK = 14,
anon_sym_COLON = 15,
anon_sym_DOT_DOT = 16,
anon_sym_function = 17,
anon_sym_LT = 18,
anon_sym_GT = 19,
anon_sym_table = 20,
anon_sym_PLUS = 21,
anon_sym_DASH = 22,
anon_sym_STAR = 23,
anon_sym_SLASH = 24,
anon_sym_PERCENT = 25,
anon_sym_EQ_EQ = 26,
anon_sym_BANG_EQ = 27,
anon_sym_AMP_AMP = 28,
anon_sym_PIPE_PIPE = 29,
anon_sym_GT_EQ = 30,
anon_sym_LT_EQ = 31,
anon_sym_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_in = 42,
anon_sym_transform = 43,
anon_sym_filter = 44,
anon_sym_find = 45,
anon_sym_remove = 46,
anon_sym_from = 47,
2023-10-31 05:09:29 +00:00
anon_sym_reduce = 48,
anon_sym_to = 49,
anon_sym_select = 50,
anon_sym_insert = 51,
anon_sym_into = 52,
anon_sym_async = 53,
anon_sym_assert = 54,
anon_sym_assert_equal = 55,
anon_sym_download = 56,
anon_sym_help = 57,
anon_sym_length = 58,
anon_sym_output = 59,
anon_sym_output_error = 60,
anon_sym_type = 61,
anon_sym_workdir = 62,
anon_sym_append = 63,
anon_sym_metadata = 64,
anon_sym_move = 65,
anon_sym_read = 66,
anon_sym_write = 67,
anon_sym_from_json = 68,
anon_sym_to_json = 69,
anon_sym_to_string = 70,
anon_sym_to_float = 71,
anon_sym_bash = 72,
anon_sym_fish = 73,
anon_sym_raw = 74,
anon_sym_sh = 75,
anon_sym_zsh = 76,
anon_sym_random = 77,
anon_sym_random_boolean = 78,
anon_sym_random_float = 79,
anon_sym_random_integer = 80,
anon_sym_columns = 81,
anon_sym_rows = 82,
anon_sym_reverse = 83,
sym_root = 84,
sym_statement = 85,
sym__statement_kind = 86,
2023-10-31 07:17:58 +00:00
sym_expression = 87,
sym__expression_kind = 88,
sym_value = 89,
sym_boolean = 90,
sym_list = 91,
sym_map = 92,
sym_index = 93,
sym_function = 94,
sym_table = 95,
sym_math = 96,
sym_math_operator = 97,
sym_logic = 98,
sym_logic_operator = 99,
sym_assignment = 100,
sym_assignment_operator = 101,
sym_if_else = 102,
sym_if = 103,
sym_else_if = 104,
sym_else = 105,
sym_function_call = 106,
sym_match = 107,
sym_while = 108,
sym_for = 109,
sym_transform = 110,
sym_filter = 111,
sym_find = 112,
sym_remove = 113,
sym_reduce = 114,
sym_select = 115,
sym_insert = 116,
sym_async = 117,
sym_tool = 118,
sym__tool_kind = 119,
aux_sym_root_repeat1 = 120,
aux_sym_list_repeat1 = 121,
aux_sym_function_repeat1 = 122,
aux_sym_if_else_repeat1 = 123,
aux_sym_match_repeat1 = 124,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
2023-10-31 07:17:58 +00:00
[sym_comment] = "comment",
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
2023-10-31 07:17:58 +00:00
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
[anon_sym_COLON] = ":",
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = "..",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_table] = "table",
[anon_sym_PLUS] = "+",
2023-10-31 05:09:29 +00:00
[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-10-31 05:09:29 +00:00
[anon_sym_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",
[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",
[anon_sym_async] = "async",
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-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-22 20:41:37 +00:00
[anon_sym_workdir] = "workdir",
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",
[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",
[sym_statement] = "statement",
2023-10-31 05:09:29 +00:00
[sym__statement_kind] = "_statement_kind",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
2023-10-29 23:31:06 +00:00
[sym_map] = "map",
[sym_index] = "index",
[sym_function] = "function",
[sym_table] = "table",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_function_call] = "function_call",
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",
[sym_async] = "async",
2023-10-21 17:19:01 +00:00
[sym_tool] = "tool",
[sym__tool_kind] = "_tool_kind",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
2023-10-31 05:09:29 +00:00
[aux_sym_match_repeat1] = "match_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
2023-10-31 07:17:58 +00:00
[sym_comment] = sym_comment,
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2023-10-31 07:17:58 +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_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_COLON] = anon_sym_COLON,
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_table] = anon_sym_table,
[anon_sym_PLUS] = anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
2023-10-31 05:09:29 +00:00
[anon_sym_EQ] = anon_sym_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,
[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,
[anon_sym_async] = anon_sym_async,
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-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-22 20:41:37 +00:00
[anon_sym_workdir] = anon_sym_workdir,
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,
[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,
[sym_statement] = sym_statement,
2023-10-31 05:09:29 +00:00
[sym__statement_kind] = sym__statement_kind,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[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_function] = sym_function,
[sym_table] = sym_table,
[sym_math] = sym_math,
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_function_call] = sym_function_call,
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,
[sym_async] = sym_async,
2023-10-21 17:19:01 +00:00
[sym_tool] = sym_tool,
[sym__tool_kind] = sym__tool_kind,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = aux_sym_function_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,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
2023-10-31 07:17:58 +00:00
[sym_comment] = {
.visible = true,
.named = true,
},
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2023-10-31 07:17:58 +00:00
[sym_integer] = {
.visible = true,
.named = true,
2023-10-29 23:31:06 +00:00
},
2023-10-31 07:17:58 +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_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.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-29 23:31:06 +00:00
[anon_sym_function] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_LT] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_GT] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_table] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_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,
},
[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-21 17:04:17 +00:00
[anon_sym_async] = {
.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-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-22 20:41:37 +00:00
[anon_sym_workdir] = {
.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,
},
[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 05:09:29 +00:00
[sym_statement] = {
.visible = true,
.named = true,
},
2023-10-31 05:09:29 +00:00
[sym__statement_kind] = {
.visible = false,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[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,
},
2023-10-29 23:31:06 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_table] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.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,
},
[sym_async] = {
.visible = true,
.named = true,
},
2023-10-21 17:19:01 +00:00
[sym_tool] = {
.visible = true,
.named = true,
},
[sym__tool_kind] = {
.visible = false,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 05:09:29 +00:00
[aux_sym_function_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 05:09:29 +00:00
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
};
2023-10-31 05:09:29 +00:00
enum {
field_collection = 1,
field_count = 2,
field_predicate = 3,
field_statement_id = 4,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_collection] = "collection",
[field_count] = "count",
[field_predicate] = "predicate",
[field_statement_id] = "statement_id",
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 3},
[2] = {.index = 3, .length = 4},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_collection, 3},
{field_predicate, 5},
{field_statement_id, 1},
[3] =
{field_collection, 4},
{field_count, 1},
{field_predicate, 6},
{field_statement_id, 2},
};
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-10-31 05:09:29 +00:00
[3] = 3,
[4] = 4,
2023-10-29 23:31:06 +00:00
[5] = 5,
2023-10-22 20:50:09 +00:00
[6] = 6,
2023-10-22 20:41:37 +00:00
[7] = 7,
2023-10-31 07:17:58 +00:00
[8] = 8,
2023-10-22 20:32:55 +00:00
[9] = 9,
[10] = 10,
[11] = 11,
[12] = 12,
2023-10-31 05:09:29 +00:00
[13] = 13,
2023-10-28 14:28:43 +00:00
[14] = 14,
2023-10-21 20:38:20 +00:00
[15] = 15,
2023-10-22 20:32:55 +00:00
[16] = 16,
2023-10-31 05:09:29 +00:00
[17] = 17,
[18] = 18,
2023-10-31 07:17:58 +00:00
[19] = 19,
2023-10-29 23:31:06 +00:00
[20] = 20,
2023-10-31 07:17:58 +00:00
[21] = 21,
[22] = 22,
2023-10-28 14:28:43 +00:00
[23] = 23,
2023-10-31 07:17:58 +00:00
[24] = 24,
2023-10-28 14:28:43 +00:00
[25] = 25,
[26] = 26,
[27] = 27,
2023-10-31 07:17:58 +00:00
[28] = 26,
2023-10-31 05:09:29 +00:00
[29] = 29,
2023-10-31 07:17:58 +00:00
[30] = 30,
2023-10-21 17:04:17 +00:00
[31] = 31,
2023-10-31 07:17:58 +00:00
[32] = 30,
[33] = 31,
[34] = 29,
[35] = 27,
2023-10-31 05:09:29 +00:00
[36] = 36,
[37] = 37,
2023-10-31 05:09:29 +00:00
[38] = 38,
2023-10-31 07:17:58 +00:00
[39] = 39,
2023-10-31 05:09:29 +00:00
[40] = 40,
2023-10-31 07:17:58 +00:00
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
2023-10-29 23:31:06 +00:00
[48] = 48,
[49] = 49,
[50] = 50,
2023-10-19 01:50:45 +00:00
[51] = 51,
2023-10-21 17:19:01 +00:00
[52] = 52,
[53] = 53,
2023-10-21 20:38:20 +00:00
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
2023-10-28 14:28:43 +00:00
[58] = 58,
[59] = 59,
[60] = 60,
2023-10-31 05:09:29 +00:00
[61] = 61,
[62] = 62,
[63] = 63,
2023-10-31 07:17:58 +00:00
[64] = 64,
[65] = 65,
[66] = 66,
2023-10-29 23:31:06 +00:00
[67] = 67,
2023-10-19 01:50:45 +00:00
[68] = 68,
[69] = 69,
2023-10-29 23:31:06 +00:00
[70] = 70,
[71] = 71,
[72] = 72,
2023-10-21 17:04:17 +00:00
[73] = 73,
[74] = 74,
2023-10-31 07:17:58 +00:00
[75] = 75,
2023-10-31 05:09:29 +00:00
[76] = 76,
2023-10-31 07:17:58 +00:00
[77] = 77,
[78] = 78,
2023-10-31 05:09:29 +00:00
[79] = 79,
2023-10-31 07:17:58 +00:00
[80] = 80,
[81] = 81,
[82] = 82,
[83] = 83,
2023-10-31 07:17:58 +00:00
[84] = 84,
2023-10-31 05:09:29 +00:00
[85] = 85,
[86] = 86,
[87] = 87,
2023-10-31 05:09:29 +00:00
[88] = 88,
[89] = 89,
2023-10-31 05:09:29 +00:00
[90] = 90,
[91] = 91,
[92] = 92,
2023-10-31 07:17:58 +00:00
[93] = 93,
[94] = 94,
[95] = 95,
2023-10-31 05:09:29 +00:00
[96] = 96,
2023-10-31 07:17:58 +00:00
[97] = 97,
2023-10-31 05:09:29 +00:00
[98] = 98,
2023-10-31 07:17:58 +00:00
[99] = 99,
[100] = 94,
[101] = 101,
2023-10-31 07:17:58 +00:00
[102] = 102,
[103] = 103,
[104] = 97,
[105] = 105,
2023-10-31 05:09:29 +00:00
[106] = 106,
[107] = 107,
2023-10-31 07:17:58 +00:00
[108] = 102,
[109] = 109,
2023-10-29 23:31:06 +00:00
[110] = 110,
2023-10-31 07:17:58 +00:00
[111] = 91,
2023-10-31 05:09:29 +00:00
[112] = 112,
[113] = 113,
[114] = 114,
[115] = 115,
2023-10-31 07:17:58 +00:00
[116] = 116,
[117] = 117,
2023-10-31 07:17:58 +00:00
[118] = 118,
[119] = 119,
2023-10-31 07:17:58 +00:00
[120] = 120,
2023-10-28 14:28:43 +00:00
[121] = 121,
[122] = 122,
[123] = 123,
2023-10-28 14:28:43 +00:00
[124] = 124,
[125] = 125,
[126] = 126,
[127] = 127,
2023-10-31 07:17:58 +00:00
[128] = 128,
[129] = 129,
2023-10-31 07:17:58 +00:00
[130] = 130,
[131] = 131,
2023-10-31 07:17:58 +00:00
[132] = 132,
2023-10-31 05:09:29 +00:00
[133] = 133,
[134] = 134,
[135] = 135,
[136] = 136,
2023-10-31 07:17:58 +00:00
[137] = 137,
[138] = 138,
[139] = 137,
2023-10-31 05:09:29 +00:00
[140] = 140,
[141] = 141,
[142] = 142,
[143] = 143,
2023-10-31 07:17:58 +00:00
[144] = 144,
[145] = 145,
[146] = 143,
[147] = 147,
[148] = 148,
[149] = 149,
[150] = 150,
[151] = 151,
[152] = 152,
[153] = 153,
[154] = 154,
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
[159] = 159,
[160] = 160,
[161] = 161,
[162] = 162,
[163] = 163,
[164] = 164,
[165] = 165,
[166] = 166,
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 171,
[172] = 172,
[173] = 173,
2023-10-31 05:09:29 +00:00
[174] = 174,
[175] = 175,
[176] = 176,
[177] = 177,
2023-10-31 05:09:29 +00:00
[178] = 178,
2023-10-31 07:17:58 +00:00
[179] = 179,
[180] = 180,
[181] = 181,
[182] = 182,
[183] = 183,
[184] = 184,
2023-10-31 07:17:58 +00:00
[185] = 185,
2023-10-31 05:09:29 +00:00
[186] = 186,
[187] = 187,
[188] = 188,
[189] = 189,
2023-10-31 07:17:58 +00:00
[190] = 185,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-10-31 07:17:58 +00:00
if (eof) ADVANCE(23);
if (lookahead == '!') ADVANCE(5);
if (lookahead == '"') ADVANCE(1);
if (lookahead == '#') ADVANCE(10);
if (lookahead == '%') ADVANCE(58);
if (lookahead == '&') ADVANCE(2);
if (lookahead == '\'') ADVANCE(3);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(56);
if (lookahead == '+') ADVANCE(53);
if (lookahead == ',') ADVANCE(46);
if (lookahead == '-') ADVANCE(55);
if (lookahead == '.') ADVANCE(4);
if (lookahead == '/') ADVANCE(57);
if (lookahead == '0') ADVANCE(36);
if (lookahead == ':') ADVANCE(48);
if (lookahead == '<') ADVANCE(50);
if (lookahead == '=') ADVANCE(66);
if (lookahead == '>') ADVANCE(51);
if (lookahead == '[') ADVANCE(45);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(7);
if (lookahead == 'e') ADVANCE(32);
if (lookahead == '{') ADVANCE(26);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(27);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-31 05:09:29 +00:00
lookahead == ' ') SKIP(0)
2023-10-31 07:17:58 +00:00
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-31 07:17:58 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
case 1:
2023-10-31 07:17:58 +00:00
if (lookahead == '"') ADVANCE(44);
if (lookahead != 0) ADVANCE(1);
END_STATE();
case 2:
2023-10-31 07:17:58 +00:00
if (lookahead == '&') ADVANCE(61);
END_STATE();
case 3:
2023-10-31 07:17:58 +00:00
if (lookahead == '\'') ADVANCE(44);
if (lookahead != 0) ADVANCE(3);
END_STATE();
case 4:
2023-10-31 07:17:58 +00:00
if (lookahead == '.') ADVANCE(49);
END_STATE();
case 5:
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(60);
END_STATE();
case 6:
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(59);
if (lookahead == '>') ADVANCE(71);
END_STATE();
case 7:
2023-10-31 07:17:58 +00:00
if (lookahead == '`') ADVANCE(44);
if (lookahead != 0) ADVANCE(7);
END_STATE();
case 8:
2023-10-31 07:17:58 +00:00
if (lookahead == 'f') ADVANCE(69);
END_STATE();
case 9:
2023-10-31 07:17:58 +00:00
if (lookahead == 'i') ADVANCE(8);
END_STATE();
case 10:
2023-10-31 07:17:58 +00:00
if (lookahead == '|') ADVANCE(25);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(24);
if (lookahead != 0) ADVANCE(10);
END_STATE();
case 11:
2023-10-31 07:17:58 +00:00
if (lookahead == '|') ADVANCE(62);
END_STATE();
case 12:
2023-10-31 07:17:58 +00:00
if (lookahead == '+' ||
lookahead == '-') ADVANCE(19);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
case 13:
2023-10-31 07:17:58 +00:00
if (lookahead == '0' ||
lookahead == '1') ADVANCE(38);
END_STATE();
case 14:
2023-10-31 07:17:58 +00:00
if (lookahead == '8' ||
lookahead == '9') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(35);
END_STATE();
case 15:
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(39);
END_STATE();
case 16:
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
END_STATE();
case 17:
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42);
END_STATE();
case 18:
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41);
END_STATE();
case 19:
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
case 20:
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(40);
2023-10-28 14:28:43 +00:00
END_STATE();
case 21:
2023-10-31 07:17:58 +00:00
if (eof) ADVANCE(23);
if (lookahead == '!') ADVANCE(5);
if (lookahead == '"') ADVANCE(1);
if (lookahead == '#') ADVANCE(10);
if (lookahead == '%') ADVANCE(58);
if (lookahead == '&') ADVANCE(2);
if (lookahead == '\'') ADVANCE(3);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(56);
if (lookahead == '+') ADVANCE(52);
if (lookahead == ',') ADVANCE(46);
if (lookahead == '-') ADVANCE(54);
if (lookahead == '.') ADVANCE(4);
if (lookahead == '/') ADVANCE(57);
if (lookahead == '0') ADVANCE(36);
if (lookahead == ':') ADVANCE(48);
if (lookahead == '<') ADVANCE(50);
if (lookahead == '=') ADVANCE(6);
if (lookahead == '>') ADVANCE(51);
if (lookahead == '[') ADVANCE(45);
if (lookahead == ']') ADVANCE(47);
if (lookahead == '`') ADVANCE(7);
if (lookahead == '{') ADVANCE(26);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(27);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(21)
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(34);
2023-10-28 14:28:43 +00:00
END_STATE();
case 22:
2023-10-31 07:17:58 +00:00
if (eof) ADVANCE(23);
if (lookahead == '!') ADVANCE(5);
if (lookahead == '"') ADVANCE(1);
if (lookahead == '#') ADVANCE(10);
if (lookahead == '%') ADVANCE(58);
if (lookahead == '&') ADVANCE(2);
if (lookahead == '\'') ADVANCE(3);
if (lookahead == '(') ADVANCE(28);
if (lookahead == '*') ADVANCE(56);
if (lookahead == '+') ADVANCE(53);
if (lookahead == '-') ADVANCE(55);
if (lookahead == '/') ADVANCE(57);
if (lookahead == '0') ADVANCE(36);
if (lookahead == ':') ADVANCE(48);
if (lookahead == '<') ADVANCE(50);
if (lookahead == '=') ADVANCE(65);
if (lookahead == '>') ADVANCE(51);
if (lookahead == '[') ADVANCE(45);
if (lookahead == '`') ADVANCE(7);
if (lookahead == '{') ADVANCE(26);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(27);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(22)
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
case 23:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 24:
ACCEPT_TOKEN(sym_comment);
END_STATE();
case 25:
ACCEPT_TOKEN(sym_comment);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(24);
if (lookahead != 0) ADVANCE(10);
END_STATE();
case 26:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 27:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 29:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 30:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 31:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 07:17:58 +00:00
if (lookahead == 'e') ADVANCE(70);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 07:17:58 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
2023-10-31 07:17:58 +00:00
case 32:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 07:17:58 +00:00
if (lookahead == 'l') ADVANCE(33);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 07:17:58 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
2023-10-31 07:17:58 +00:00
case 33:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 07:17:58 +00:00
if (lookahead == 's') ADVANCE(31);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-31 05:09:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 07:17:58 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
2023-10-31 07:17:58 +00:00
case 34:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 07:17:58 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-31 05:09:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 07:17:58 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
2023-10-31 07:17:58 +00:00
case 35:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(17);
if (lookahead == '_') ADVANCE(14);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(12);
if (lookahead == '8' ||
lookahead == '9') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(35);
END_STATE();
2023-10-31 07:17:58 +00:00
case 36:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(17);
if (lookahead == '_') ADVANCE(16);
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(13);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(18);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(12);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(15);
if (lookahead == 'X' ||
lookahead == 'x') ADVANCE(20);
if (lookahead == '8' ||
lookahead == '9') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(35);
END_STATE();
2023-10-31 07:17:58 +00:00
case 37:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(17);
if (lookahead == '_') ADVANCE(16);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(12);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
END_STATE();
case 38:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '_') ADVANCE(13);
if (lookahead == '0' ||
lookahead == '1') ADVANCE(38);
END_STATE();
case 39:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '_') ADVANCE(15);
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(39);
END_STATE();
case 40:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '_') ADVANCE(20);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(40);
END_STATE();
case 41:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '_') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41);
END_STATE();
case 42:
ACCEPT_TOKEN(sym_float);
if (lookahead == '_') ADVANCE(17);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(12);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42);
END_STATE();
case 43:
ACCEPT_TOKEN(sym_float);
if (lookahead == '_') ADVANCE(19);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43);
END_STATE();
case 44:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-10-31 07:17:58 +00:00
case 45:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-10-31 07:17:58 +00:00
case 46:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-10-31 07:17:58 +00:00
case 47:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-10-31 07:17:58 +00:00
case 48:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_COLON);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-10-31 07:17:58 +00:00
case 49:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-10-31 07:17:58 +00:00
case 50:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_LT);
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(64);
END_STATE();
2023-10-31 07:17:58 +00:00
case 51:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_GT);
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(63);
END_STATE();
2023-10-31 07:17:58 +00:00
case 52:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
2023-10-31 07:17:58 +00:00
case 53:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(67);
END_STATE();
2023-10-31 07:17:58 +00:00
case 54:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
2023-10-31 07:17:58 +00:00
case 55:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(68);
END_STATE();
2023-10-31 07:17:58 +00:00
case 56:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-10-31 07:17:58 +00:00
case 57:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-10-31 07:17:58 +00:00
case 58:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-10-31 07:17:58 +00:00
case 59:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 60:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 61:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-10-31 07:17:58 +00:00
case 62:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
2023-10-31 07:17:58 +00:00
case 63:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 64:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 65:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(59);
END_STATE();
2023-10-31 07:17:58 +00:00
case 66:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
2023-10-31 07:17:58 +00:00
if (lookahead == '=') ADVANCE(59);
if (lookahead == '>') ADVANCE(71);
2023-10-29 23:31:06 +00:00
END_STATE();
2023-10-31 07:17:58 +00:00
case 67:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 68:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 69:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-10-31 07:17:58 +00:00
case 70:
ACCEPT_TOKEN(anon_sym_else);
2023-10-31 07:17:58 +00:00
if (lookahead == ' ') ADVANCE(9);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-31 07:17:58 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
2023-10-31 05:09:29 +00:00
END_STATE();
2023-10-31 07:17:58 +00:00
case 71:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'a') ADVANCE(1);
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);
if (lookahead == 'f') ADVANCE(5);
if (lookahead == 'h') ADVANCE(6);
if (lookahead == 'i') ADVANCE(7);
if (lookahead == 'l') ADVANCE(8);
if (lookahead == 'm') ADVANCE(9);
if (lookahead == 'o') ADVANCE(10);
if (lookahead == 'r') ADVANCE(11);
if (lookahead == 's') ADVANCE(12);
if (lookahead == 't') ADVANCE(13);
if (lookahead == 'w') ADVANCE(14);
if (lookahead == 'z') ADVANCE(15);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-10-22 20:50:09 +00:00
if (lookahead == 'p') ADVANCE(16);
if (lookahead == 's') ADVANCE(17);
END_STATE();
case 2:
2023-10-22 20:50:09 +00:00
if (lookahead == 'a') ADVANCE(18);
END_STATE();
case 3:
2023-10-22 20:50:09 +00:00
if (lookahead == 'o') ADVANCE(19);
END_STATE();
case 4:
2023-10-22 20:50:09 +00:00
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 5:
2023-10-22 20:50:09 +00:00
if (lookahead == 'a') ADVANCE(21);
if (lookahead == 'i') ADVANCE(22);
if (lookahead == 'o') ADVANCE(23);
if (lookahead == 'r') ADVANCE(24);
if (lookahead == 'u') ADVANCE(25);
END_STATE();
case 6:
2023-10-22 20:50:09 +00:00
if (lookahead == 'e') ADVANCE(26);
END_STATE();
case 7:
2023-10-22 20:50:09 +00:00
if (lookahead == 'f') ADVANCE(27);
if (lookahead == 'n') ADVANCE(28);
END_STATE();
case 8:
2023-10-22 20:50:09 +00:00
if (lookahead == 'e') ADVANCE(29);
END_STATE();
case 9:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(30);
if (lookahead == 'e') ADVANCE(31);
if (lookahead == 'o') ADVANCE(32);
END_STATE();
case 10:
2023-10-31 05:09:29 +00:00
if (lookahead == 'u') ADVANCE(33);
END_STATE();
case 11:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(34);
if (lookahead == 'e') ADVANCE(35);
if (lookahead == 'o') ADVANCE(36);
END_STATE();
case 12:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(37);
if (lookahead == 'h') ADVANCE(38);
END_STATE();
case 13:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(39);
if (lookahead == 'o') ADVANCE(40);
if (lookahead == 'r') ADVANCE(41);
if (lookahead == 'y') ADVANCE(42);
END_STATE();
case 14:
2023-10-31 05:09:29 +00:00
if (lookahead == 'h') ADVANCE(43);
if (lookahead == 'o') ADVANCE(44);
if (lookahead == 'r') ADVANCE(45);
END_STATE();
case 15:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(46);
END_STATE();
case 16:
2023-10-31 05:09:29 +00:00
if (lookahead == 'p') ADVANCE(47);
END_STATE();
case 17:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(48);
if (lookahead == 'y') ADVANCE(49);
END_STATE();
case 18:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(50);
END_STATE();
case 19:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(51);
END_STATE();
case 20:
2023-10-31 05:09:29 +00:00
if (lookahead == 'w') ADVANCE(52);
END_STATE();
case 21:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(53);
END_STATE();
case 22:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(54);
if (lookahead == 'n') ADVANCE(55);
if (lookahead == 's') ADVANCE(56);
END_STATE();
case 23:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(57);
END_STATE();
case 24:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(58);
END_STATE();
case 25:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(59);
END_STATE();
case 26:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(60);
END_STATE();
case 27:
2023-10-22 20:50:09 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 28:
2023-10-22 20:50:09 +00:00
ACCEPT_TOKEN(anon_sym_in);
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(61);
if (lookahead == 't') ADVANCE(62);
END_STATE();
case 29:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(63);
END_STATE();
case 30:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(64);
END_STATE();
case 31:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(65);
END_STATE();
case 32:
2023-10-31 05:09:29 +00:00
if (lookahead == 'v') ADVANCE(66);
END_STATE();
case 33:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(67);
END_STATE();
case 34:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(68);
if (lookahead == 'w') ADVANCE(69);
END_STATE();
case 35:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(70);
if (lookahead == 'd') ADVANCE(71);
if (lookahead == 'm') ADVANCE(72);
if (lookahead == 'v') ADVANCE(73);
END_STATE();
case 36:
2023-10-31 05:09:29 +00:00
if (lookahead == 'w') ADVANCE(74);
END_STATE();
case 37:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(75);
END_STATE();
case 38:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 39:
2023-10-31 05:09:29 +00:00
if (lookahead == 'b') ADVANCE(76);
END_STATE();
case 40:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_to);
if (lookahead == '_') ADVANCE(77);
END_STATE();
case 41:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(78);
if (lookahead == 'u') ADVANCE(79);
END_STATE();
case 42:
2023-10-31 05:09:29 +00:00
if (lookahead == 'p') ADVANCE(80);
END_STATE();
case 43:
2023-10-31 05:09:29 +00:00
if (lookahead == 'i') ADVANCE(81);
END_STATE();
case 44:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(82);
END_STATE();
case 45:
2023-10-31 05:09:29 +00:00
if (lookahead == 'i') ADVANCE(83);
END_STATE();
case 46:
2023-10-31 05:09:29 +00:00
if (lookahead == 'h') ADVANCE(84);
END_STATE();
case 47:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(85);
END_STATE();
case 48:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(86);
END_STATE();
case 49:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(87);
END_STATE();
case 50:
2023-10-31 05:09:29 +00:00
if (lookahead == 'h') ADVANCE(88);
END_STATE();
case 51:
2023-10-31 05:09:29 +00:00
if (lookahead == 'u') ADVANCE(89);
END_STATE();
case 52:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(90);
END_STATE();
case 53:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(91);
END_STATE();
case 54:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(92);
END_STATE();
case 55:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(93);
END_STATE();
case 56:
2023-10-31 05:09:29 +00:00
if (lookahead == 'h') ADVANCE(94);
END_STATE();
case 57:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 58:
2023-10-31 05:09:29 +00:00
if (lookahead == 'm') ADVANCE(95);
END_STATE();
case 59:
2023-10-31 05:09:29 +00:00
if (lookahead == 'c') ADVANCE(96);
END_STATE();
case 60:
2023-10-31 05:09:29 +00:00
if (lookahead == 'p') ADVANCE(97);
END_STATE();
case 61:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(98);
END_STATE();
case 62:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(99);
END_STATE();
case 63:
2023-10-31 05:09:29 +00:00
if (lookahead == 'g') ADVANCE(100);
END_STATE();
case 64:
2023-10-31 05:09:29 +00:00
if (lookahead == 'c') ADVANCE(101);
END_STATE();
case 65:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(102);
END_STATE();
case 66:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(103);
END_STATE();
case 67:
2023-10-31 05:09:29 +00:00
if (lookahead == 'p') ADVANCE(104);
END_STATE();
case 68:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(105);
END_STATE();
case 69:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 70:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(106);
END_STATE();
case 71:
2023-10-31 05:09:29 +00:00
if (lookahead == 'u') ADVANCE(107);
END_STATE();
case 72:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(108);
END_STATE();
case 73:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(109);
END_STATE();
case 74:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(110);
END_STATE();
case 75:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(111);
END_STATE();
case 76:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(112);
END_STATE();
case 77:
2023-10-31 05:09:29 +00:00
if (lookahead == 'f') ADVANCE(113);
if (lookahead == 'j') ADVANCE(114);
if (lookahead == 's') ADVANCE(115);
2023-10-21 17:19:01 +00:00
END_STATE();
case 78:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(116);
2023-10-21 17:19:01 +00:00
END_STATE();
case 79:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(117);
2023-10-21 17:19:01 +00:00
END_STATE();
case 80:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(118);
2023-10-21 17:19:01 +00:00
END_STATE();
case 81:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(119);
2023-10-21 17:19:01 +00:00
END_STATE();
case 82:
2023-10-31 05:09:29 +00:00
if (lookahead == 'k') ADVANCE(120);
2023-10-21 17:19:01 +00:00
END_STATE();
case 83:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(121);
2023-10-21 17:19:01 +00:00
END_STATE();
case 84:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
2023-10-21 17:19:01 +00:00
END_STATE();
case 85:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(122);
2023-10-21 17:19:01 +00:00
END_STATE();
case 86:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(123);
2023-10-21 17:19:01 +00:00
END_STATE();
case 87:
2023-10-31 05:09:29 +00:00
if (lookahead == 'c') ADVANCE(124);
2023-10-21 17:19:01 +00:00
END_STATE();
case 88:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_bash);
2023-10-21 17:19:01 +00:00
END_STATE();
case 89:
2023-10-31 05:09:29 +00:00
if (lookahead == 'm') ADVANCE(125);
2023-10-21 17:19:01 +00:00
END_STATE();
case 90:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(126);
2023-10-21 17:19:01 +00:00
END_STATE();
case 91:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(127);
2023-10-21 17:19:01 +00:00
END_STATE();
case 92:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(128);
2023-10-21 17:19:01 +00:00
END_STATE();
case 93:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_find);
2023-10-21 17:19:01 +00:00
END_STATE();
case 94:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_fish);
2023-10-21 17:19:01 +00:00
END_STATE();
case 95:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(129);
2023-10-21 17:19:01 +00:00
END_STATE();
case 96:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(130);
2023-10-21 17:19:01 +00:00
END_STATE();
case 97:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_help);
2023-10-21 17:19:01 +00:00
END_STATE();
case 98:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(131);
2023-10-21 17:19:01 +00:00
END_STATE();
case 99:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_into);
2023-10-21 17:19:01 +00:00
END_STATE();
case 100:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(132);
2023-10-21 17:19:01 +00:00
END_STATE();
case 101:
2023-10-31 05:09:29 +00:00
if (lookahead == 'h') ADVANCE(133);
END_STATE();
2023-10-21 17:19:01 +00:00
case 102:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(134);
2023-10-21 17:19:01 +00:00
END_STATE();
case 103:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_move);
2023-10-21 17:19:01 +00:00
END_STATE();
case 104:
2023-10-31 05:09:29 +00:00
if (lookahead == 'u') ADVANCE(135);
2023-10-21 17:19:01 +00:00
END_STATE();
case 105:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(136);
2023-10-21 17:19:01 +00:00
END_STATE();
case 106:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_read);
2023-10-21 17:19:01 +00:00
END_STATE();
case 107:
2023-10-31 05:09:29 +00:00
if (lookahead == 'c') ADVANCE(137);
2023-10-21 20:38:20 +00:00
END_STATE();
case 108:
2023-10-31 05:09:29 +00:00
if (lookahead == 'v') ADVANCE(138);
2023-10-21 20:38:20 +00:00
END_STATE();
case 109:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(139);
2023-10-21 20:38:20 +00:00
END_STATE();
case 110:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_rows);
2023-10-21 20:38:20 +00:00
END_STATE();
case 111:
2023-10-31 05:09:29 +00:00
if (lookahead == 'c') ADVANCE(140);
2023-10-21 20:38:20 +00:00
END_STATE();
case 112:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(141);
2023-10-21 20:38:20 +00:00
END_STATE();
case 113:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(142);
2023-10-21 20:38:20 +00:00
END_STATE();
case 114:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(143);
2023-10-21 20:38:20 +00:00
END_STATE();
case 115:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(144);
2023-10-21 20:38:20 +00:00
END_STATE();
case 116:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(145);
2023-10-21 20:38:20 +00:00
END_STATE();
case 117:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_true);
2023-10-21 20:38:20 +00:00
END_STATE();
case 118:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_type);
2023-10-21 20:38:20 +00:00
END_STATE();
case 119:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(146);
2023-10-21 20:38:20 +00:00
END_STATE();
case 120:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(147);
2023-10-21 20:38:20 +00:00
END_STATE();
case 121:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(148);
2023-10-21 20:38:20 +00:00
END_STATE();
case 122:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(149);
2023-10-21 20:38:20 +00:00
END_STATE();
case 123:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(150);
2023-10-21 20:38:20 +00:00
END_STATE();
case 124:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_async);
2023-10-21 20:38:20 +00:00
END_STATE();
case 125:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(151);
2023-10-21 20:38:20 +00:00
END_STATE();
case 126:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(152);
2023-10-21 20:38:20 +00:00
END_STATE();
case 127:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_false);
2023-10-21 20:38:20 +00:00
END_STATE();
case 128:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(153);
2023-10-21 20:38:20 +00:00
END_STATE();
case 129:
2023-10-31 05:09:29 +00:00
if (lookahead == 'j') ADVANCE(154);
2023-10-21 20:38:20 +00:00
END_STATE();
case 130:
2023-10-31 05:09:29 +00:00
if (lookahead == 'i') ADVANCE(155);
2023-10-21 20:38:20 +00:00
END_STATE();
case 131:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(156);
2023-10-21 20:38:20 +00:00
END_STATE();
case 132:
2023-10-31 05:09:29 +00:00
if (lookahead == 'h') ADVANCE(157);
2023-10-21 20:38:20 +00:00
END_STATE();
case 133:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_match);
2023-10-21 20:38:20 +00:00
END_STATE();
case 134:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(158);
2023-10-21 20:38:20 +00:00
END_STATE();
case 135:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(159);
2023-10-21 20:38:20 +00:00
END_STATE();
case 136:
2023-10-31 05:09:29 +00:00
if (lookahead == 'm') ADVANCE(160);
2023-10-21 20:38:20 +00:00
END_STATE();
case 137:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(161);
2023-10-21 20:38:20 +00:00
END_STATE();
case 138:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(162);
2023-10-21 20:38:20 +00:00
END_STATE();
case 139:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(163);
2023-10-21 20:38:20 +00:00
END_STATE();
case 140:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(164);
2023-10-21 20:38:20 +00:00
END_STATE();
case 141:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_table);
2023-10-21 20:38:20 +00:00
END_STATE();
case 142:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(165);
2023-10-21 20:38:20 +00:00
END_STATE();
case 143:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(166);
2023-10-21 20:38:20 +00:00
END_STATE();
case 144:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(167);
2023-10-21 20:38:20 +00:00
END_STATE();
case 145:
2023-10-31 05:09:29 +00:00
if (lookahead == 'f') ADVANCE(168);
2023-10-21 20:38:20 +00:00
END_STATE();
case 146:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_while);
2023-10-21 20:38:20 +00:00
END_STATE();
case 147:
2023-10-31 05:09:29 +00:00
if (lookahead == 'i') ADVANCE(169);
2023-10-21 20:38:20 +00:00
END_STATE();
case 148:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_write);
2023-10-21 20:38:20 +00:00
END_STATE();
case 149:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_append);
2023-10-21 20:38:20 +00:00
END_STATE();
case 150:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(170);
2023-10-21 20:38:20 +00:00
END_STATE();
case 151:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(171);
2023-10-21 20:38:20 +00:00
END_STATE();
case 152:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(172);
2023-10-21 20:38:20 +00:00
END_STATE();
case 153:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_filter);
2023-10-22 18:27:18 +00:00
END_STATE();
case 154:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(173);
2023-10-22 18:27:18 +00:00
END_STATE();
case 155:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(174);
2023-10-22 18:27:18 +00:00
END_STATE();
case 156:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_insert);
2023-10-22 18:48:34 +00:00
END_STATE();
case 157:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_length);
2023-10-22 18:48:34 +00:00
END_STATE();
case 158:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(175);
2023-10-22 18:48:34 +00:00
END_STATE();
case 159:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(176);
2023-10-22 18:48:34 +00:00
END_STATE();
case 160:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(177);
2023-10-22 18:48:34 +00:00
END_STATE();
case 161:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_reduce);
2023-10-22 18:48:34 +00:00
END_STATE();
case 162:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_remove);
2023-10-22 18:48:34 +00:00
END_STATE();
case 163:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(178);
2023-10-22 18:48:34 +00:00
END_STATE();
case 164:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_select);
2023-10-22 18:48:34 +00:00
END_STATE();
case 165:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(179);
2023-10-22 18:48:34 +00:00
END_STATE();
case 166:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(180);
2023-10-22 18:48:34 +00:00
END_STATE();
case 167:
2023-10-31 05:09:29 +00:00
if (lookahead == 'i') ADVANCE(181);
2023-10-22 18:48:34 +00:00
END_STATE();
case 168:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(182);
2023-10-22 18:48:34 +00:00
END_STATE();
case 169:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(183);
2023-10-22 18:48:34 +00:00
END_STATE();
case 170:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(184);
2023-10-22 18:48:34 +00:00
END_STATE();
case 171:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_columns);
2023-10-22 18:48:34 +00:00
END_STATE();
case 172:
2023-10-31 05:09:29 +00:00
if (lookahead == 'd') ADVANCE(185);
2023-10-22 18:48:34 +00:00
END_STATE();
case 173:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(186);
2023-10-21 17:19:01 +00:00
END_STATE();
2023-10-22 18:48:34 +00:00
case 174:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(187);
2023-10-22 18:48:34 +00:00
END_STATE();
case 175:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(188);
2023-10-22 18:48:34 +00:00
END_STATE();
case 176:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(189);
2023-10-22 18:48:34 +00:00
END_STATE();
case 177:
2023-10-31 05:09:29 +00:00
if (lookahead == 'b') ADVANCE(190);
if (lookahead == 'f') ADVANCE(191);
if (lookahead == 'i') ADVANCE(192);
2023-10-22 18:48:34 +00:00
END_STATE();
case 178:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_reverse);
2023-10-22 18:48:34 +00:00
END_STATE();
case 179:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(193);
2023-10-22 18:48:34 +00:00
END_STATE();
case 180:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
2023-10-22 20:32:55 +00:00
END_STATE();
case 181:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(194);
2023-10-22 20:32:55 +00:00
END_STATE();
case 182:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(195);
2023-10-22 20:32:55 +00:00
END_STATE();
case 183:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_workdir);
2023-10-22 20:32:55 +00:00
END_STATE();
case 184:
2023-10-31 05:09:29 +00:00
if (lookahead == 'q') ADVANCE(196);
2023-10-22 20:32:55 +00:00
END_STATE();
case 185:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_download);
2023-10-22 20:32:55 +00:00
END_STATE();
case 186:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(197);
2023-10-22 20:32:55 +00:00
END_STATE();
case 187:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_function);
2023-10-22 20:32:55 +00:00
END_STATE();
case 188:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_metadata);
2023-10-22 20:32:55 +00:00
END_STATE();
case 189:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(198);
2023-10-22 20:32:55 +00:00
END_STATE();
case 190:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(199);
2023-10-22 20:41:37 +00:00
END_STATE();
case 191:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(200);
2023-10-22 20:41:37 +00:00
END_STATE();
case 192:
2023-10-31 05:09:29 +00:00
if (lookahead == 'n') ADVANCE(201);
2023-10-22 20:41:37 +00:00
END_STATE();
case 193:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_to_float);
2023-10-22 20:41:37 +00:00
END_STATE();
case 194:
2023-10-31 05:09:29 +00:00
if (lookahead == 'g') ADVANCE(202);
2023-10-22 20:41:37 +00:00
END_STATE();
case 195:
2023-10-31 05:09:29 +00:00
if (lookahead == 'm') ADVANCE(203);
2023-10-22 20:41:37 +00:00
END_STATE();
case 196:
2023-10-31 05:09:29 +00:00
if (lookahead == 'u') ADVANCE(204);
2023-10-22 20:50:09 +00:00
END_STATE();
case 197:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
2023-10-22 20:50:09 +00:00
END_STATE();
case 198:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(205);
2023-10-22 20:50:09 +00:00
END_STATE();
case 199:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(206);
2023-10-22 20:50:09 +00:00
END_STATE();
case 200:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(207);
2023-10-22 20:50:09 +00:00
END_STATE();
case 201:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(208);
2023-10-22 20:50:09 +00:00
END_STATE();
case 202:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_to_string);
2023-10-22 20:50:09 +00:00
END_STATE();
case 203:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_transform);
2023-10-22 20:50:09 +00:00
END_STATE();
case 204:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(209);
2023-10-28 14:28:43 +00:00
END_STATE();
case 205:
2023-10-31 05:09:29 +00:00
if (lookahead == 'o') ADVANCE(210);
2023-10-28 14:28:43 +00:00
END_STATE();
case 206:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(211);
2023-10-28 14:28:43 +00:00
END_STATE();
case 207:
2023-10-31 05:09:29 +00:00
if (lookahead == 'a') ADVANCE(212);
2023-10-28 14:28:43 +00:00
END_STATE();
case 208:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(213);
2023-10-28 14:28:43 +00:00
END_STATE();
case 209:
2023-10-31 05:09:29 +00:00
if (lookahead == 'l') ADVANCE(214);
2023-10-28 14:28:43 +00:00
END_STATE();
case 210:
2023-10-31 05:09:29 +00:00
if (lookahead == 'r') ADVANCE(215);
2023-10-28 14:28:43 +00:00
END_STATE();
case 211:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(216);
2023-10-28 14:28:43 +00:00
END_STATE();
case 212:
2023-10-31 05:09:29 +00:00
if (lookahead == 't') ADVANCE(217);
2023-10-28 14:28:43 +00:00
END_STATE();
case 213:
2023-10-31 05:09:29 +00:00
if (lookahead == 'g') ADVANCE(218);
2023-10-28 14:28:43 +00:00
END_STATE();
case 214:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_assert_equal);
END_STATE();
case 215:
ACCEPT_TOKEN(anon_sym_output_error);
END_STATE();
case 216:
if (lookahead == 'a') ADVANCE(219);
END_STATE();
case 217:
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 218:
if (lookahead == 'e') ADVANCE(220);
END_STATE();
case 219:
if (lookahead == 'n') ADVANCE(221);
END_STATE();
case 220:
if (lookahead == 'r') ADVANCE(222);
END_STATE();
case 221:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 222:
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-10-31 07:17:58 +00:00
[1] = {.lex_state = 21},
[2] = {.lex_state = 21},
[3] = {.lex_state = 21},
[4] = {.lex_state = 21},
[5] = {.lex_state = 21},
[6] = {.lex_state = 21},
[7] = {.lex_state = 21},
[8] = {.lex_state = 21},
[9] = {.lex_state = 21},
[10] = {.lex_state = 21},
[11] = {.lex_state = 21},
[12] = {.lex_state = 21},
[13] = {.lex_state = 21},
[14] = {.lex_state = 21},
[15] = {.lex_state = 21},
[16] = {.lex_state = 21},
[17] = {.lex_state = 21},
[18] = {.lex_state = 21},
[19] = {.lex_state = 21},
[20] = {.lex_state = 21},
[21] = {.lex_state = 21},
[22] = {.lex_state = 21},
[23] = {.lex_state = 21},
[24] = {.lex_state = 21},
[25] = {.lex_state = 21},
[26] = {.lex_state = 21},
[27] = {.lex_state = 21},
[28] = {.lex_state = 21},
[29] = {.lex_state = 21},
[30] = {.lex_state = 21},
[31] = {.lex_state = 21},
[32] = {.lex_state = 21},
[33] = {.lex_state = 21},
[34] = {.lex_state = 21},
[35] = {.lex_state = 21},
[36] = {.lex_state = 21},
[37] = {.lex_state = 21},
[38] = {.lex_state = 21},
[39] = {.lex_state = 21},
[40] = {.lex_state = 21},
[41] = {.lex_state = 21},
[42] = {.lex_state = 21},
[43] = {.lex_state = 21},
[44] = {.lex_state = 21},
[45] = {.lex_state = 21},
[46] = {.lex_state = 21},
[47] = {.lex_state = 21},
[48] = {.lex_state = 21},
[49] = {.lex_state = 22},
[50] = {.lex_state = 21},
[51] = {.lex_state = 21},
[52] = {.lex_state = 21},
[53] = {.lex_state = 21},
[54] = {.lex_state = 21},
[55] = {.lex_state = 0},
[56] = {.lex_state = 0},
[57] = {.lex_state = 21},
[58] = {.lex_state = 0},
[59] = {.lex_state = 0},
[60] = {.lex_state = 21},
[61] = {.lex_state = 0},
[62] = {.lex_state = 21},
[63] = {.lex_state = 21},
[64] = {.lex_state = 21},
[65] = {.lex_state = 21},
[66] = {.lex_state = 21},
[67] = {.lex_state = 21},
[68] = {.lex_state = 21},
[69] = {.lex_state = 21},
[70] = {.lex_state = 21},
[71] = {.lex_state = 21},
[72] = {.lex_state = 21},
[73] = {.lex_state = 21},
[74] = {.lex_state = 21},
[75] = {.lex_state = 21},
[76] = {.lex_state = 21},
[77] = {.lex_state = 21},
[78] = {.lex_state = 21},
[79] = {.lex_state = 21},
[80] = {.lex_state = 21},
[81] = {.lex_state = 21},
[82] = {.lex_state = 21},
[83] = {.lex_state = 21},
[84] = {.lex_state = 21},
[85] = {.lex_state = 21},
[86] = {.lex_state = 21},
[87] = {.lex_state = 21},
[88] = {.lex_state = 21},
[89] = {.lex_state = 21},
[90] = {.lex_state = 21},
[91] = {.lex_state = 21},
[92] = {.lex_state = 21},
[93] = {.lex_state = 21},
[94] = {.lex_state = 21},
[95] = {.lex_state = 21},
[96] = {.lex_state = 21},
[97] = {.lex_state = 21},
[98] = {.lex_state = 21},
[99] = {.lex_state = 21},
[100] = {.lex_state = 21},
[101] = {.lex_state = 21},
[102] = {.lex_state = 21},
[103] = {.lex_state = 21},
[104] = {.lex_state = 21},
[105] = {.lex_state = 21},
[106] = {.lex_state = 21},
[107] = {.lex_state = 21},
[108] = {.lex_state = 21},
[109] = {.lex_state = 21},
[110] = {.lex_state = 21},
[111] = {.lex_state = 21},
[112] = {.lex_state = 21},
[113] = {.lex_state = 21},
[114] = {.lex_state = 0},
[115] = {.lex_state = 0},
[116] = {.lex_state = 0},
[117] = {.lex_state = 0},
[118] = {.lex_state = 0},
[119] = {.lex_state = 0},
[120] = {.lex_state = 0},
[121] = {.lex_state = 0},
[122] = {.lex_state = 21},
[123] = {.lex_state = 0},
[124] = {.lex_state = 0},
[125] = {.lex_state = 21},
[126] = {.lex_state = 0},
[127] = {.lex_state = 21},
[128] = {.lex_state = 0},
[129] = {.lex_state = 0},
[130] = {.lex_state = 21},
[131] = {.lex_state = 21},
[132] = {.lex_state = 21},
[133] = {.lex_state = 21},
[134] = {.lex_state = 22},
[135] = {.lex_state = 21},
[136] = {.lex_state = 21},
[137] = {.lex_state = 21},
[138] = {.lex_state = 21},
[139] = {.lex_state = 21},
[140] = {.lex_state = 21},
[141] = {.lex_state = 21},
[142] = {.lex_state = 21},
[143] = {.lex_state = 21},
[144] = {.lex_state = 0},
[145] = {.lex_state = 21},
[146] = {.lex_state = 21},
[147] = {.lex_state = 21},
[148] = {.lex_state = 0},
[149] = {.lex_state = 21},
[150] = {.lex_state = 21},
[151] = {.lex_state = 21},
[152] = {.lex_state = 0},
[153] = {.lex_state = 0},
[154] = {.lex_state = 0},
[155] = {.lex_state = 0},
[156] = {.lex_state = 0},
[157] = {.lex_state = 0},
[158] = {.lex_state = 0},
[159] = {.lex_state = 0},
[160] = {.lex_state = 0},
[161] = {.lex_state = 0},
[162] = {.lex_state = 0},
[163] = {.lex_state = 21},
[164] = {.lex_state = 0},
[165] = {.lex_state = 21},
[166] = {.lex_state = 0},
[167] = {.lex_state = 0},
[168] = {.lex_state = 0},
[169] = {.lex_state = 21},
[170] = {.lex_state = 0},
[171] = {.lex_state = 0},
[172] = {.lex_state = 21},
[173] = {.lex_state = 21},
[174] = {.lex_state = 0},
[175] = {.lex_state = 21},
[176] = {.lex_state = 0},
[177] = {.lex_state = 0},
[178] = {.lex_state = 21},
[179] = {.lex_state = 21},
[180] = {.lex_state = 0},
[181] = {.lex_state = 21},
[182] = {.lex_state = 0},
[183] = {.lex_state = 0},
[184] = {.lex_state = 21},
[185] = {.lex_state = 0},
[186] = {.lex_state = 21},
[187] = {.lex_state = 21},
[188] = {.lex_state = 21},
[189] = {.lex_state = 21},
[190] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
2023-10-31 07:17:58 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2023-10-31 07:17:58 +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_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
2023-10-31 05:09:29 +00:00
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
2023-10-31 05:09:29 +00:00
[anon_sym_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),
[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),
[anon_sym_async] = 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-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-22 20:41:37 +00:00
[anon_sym_workdir] = 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),
[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-10-31 07:17:58 +00:00
[sym_root] = STATE(166),
[sym_statement] = STATE(4),
[sym__statement_kind] = STATE(86),
[sym_expression] = STATE(50),
[sym__expression_kind] = STATE(48),
[sym_value] = STATE(48),
[sym_boolean] = STATE(42),
[sym_list] = STATE(42),
[sym_map] = STATE(42),
[sym_index] = STATE(48),
[sym_function] = STATE(42),
[sym_table] = STATE(42),
[sym_math] = STATE(48),
[sym_logic] = STATE(48),
[sym_assignment] = STATE(86),
[sym_if_else] = STATE(86),
[sym_if] = STATE(55),
[sym_function_call] = STATE(48),
[sym_match] = STATE(86),
[sym_while] = STATE(86),
[sym_for] = STATE(86),
[sym_transform] = STATE(86),
[sym_filter] = STATE(86),
[sym_find] = STATE(86),
[sym_remove] = STATE(86),
[sym_reduce] = STATE(86),
[sym_select] = STATE(86),
[sym_insert] = STATE(86),
[sym_async] = STATE(86),
[sym_tool] = STATE(48),
[aux_sym_root_repeat1] = STATE(4),
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
2023-10-31 05:09:29 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
2023-10-31 07:17:58 +00:00
[sym_integer] = ACTIONS(11),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(13),
[anon_sym_true] = ACTIONS(15),
[anon_sym_false] = ACTIONS(15),
[anon_sym_LBRACK] = ACTIONS(17),
[anon_sym_function] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_match] = ACTIONS(25),
[anon_sym_while] = ACTIONS(27),
[anon_sym_for] = ACTIONS(29),
[anon_sym_transform] = ACTIONS(31),
[anon_sym_filter] = ACTIONS(33),
[anon_sym_find] = ACTIONS(35),
[anon_sym_remove] = ACTIONS(37),
[anon_sym_reduce] = ACTIONS(39),
[anon_sym_select] = ACTIONS(41),
[anon_sym_insert] = ACTIONS(43),
[anon_sym_async] = ACTIONS(45),
2023-10-21 17:04:17 +00:00
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-31 07:17:58 +00:00
[0] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(47), 1,
sym_identifier,
ACTIONS(49), 1,
anon_sym_LBRACE,
STATE(62), 1,
sym__tool_kind,
STATE(128), 1,
sym_expression,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(129), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(51), 31,
anon_sym_remove,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_workdir,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
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,
[88] = 29,
ACTIONS(3), 1,
sym_comment,
ACTIONS(55), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(58), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(67), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(73), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(76), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(79), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(82), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(85), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(88), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(91), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(94), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(97), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(100), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(103), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(106), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(109), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(112), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(115), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(53), 2,
2023-10-31 05:09:29 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(64), 2,
sym_integer,
sym_float,
ACTIONS(70), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(3), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
2023-10-31 05:09:29 +00:00
aux_sym_root_repeat1,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[203] = 29,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 05:09:29 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(118), 1,
2023-10-31 05:09:29 +00:00
ts_builtin_sym_end,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(3), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
2023-10-31 05:09:29 +00:00
aux_sym_root_repeat1,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[317] = 29,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 05:09:29 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(120), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(3), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
2023-10-31 05:09:29 +00:00
aux_sym_root_repeat1,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[431] = 29,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(122), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(5), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
2023-10-31 05:09:29 +00:00
aux_sym_root_repeat1,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[545] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(7), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(9), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_match,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(39), 1,
anon_sym_reduce,
ACTIONS(41), 1,
anon_sym_select,
ACTIONS(43), 1,
anon_sym_insert,
ACTIONS(45), 1,
anon_sym_async,
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
sym_if,
STATE(174), 1,
sym_statement,
ACTIONS(11), 2,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 07:17:58 +00:00
STATE(48), 7,
2023-10-31 05:09:29 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
sym__statement_kind,
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,
sym_async,
[655] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(7), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(9), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(158), 1,
sym_statement,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-22 18:48:34 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-22 18:48:34 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-22 18:48:34 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-22 18:48:34 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-22 18:48:34 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[765] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(9), 1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_match,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(39), 1,
anon_sym_reduce,
ACTIONS(41), 1,
anon_sym_select,
ACTIONS(43), 1,
anon_sym_insert,
ACTIONS(45), 1,
anon_sym_async,
STATE(50), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
sym_if,
STATE(73), 1,
sym_statement,
ACTIONS(11), 2,
2023-10-31 05:09:29 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
2023-10-31 05:09:29 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 07:17:58 +00:00
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[875] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(171), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[985] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(148), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1095] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(160), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1205] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(153), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1315] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(154), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1425] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(159), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1535] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(182), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1645] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(176), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1755] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-29 23:31:06 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(167), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1865] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
ACTIONS(5), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(183), 1,
sym_statement,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[1975] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(157), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[2085] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(152), 1,
2023-10-31 05:09:29 +00:00
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[2195] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_LBRACE,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(155), 1,
sym_statement,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[2305] = 28,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 05:09:29 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-31 05:09:29 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-31 05:09:29 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-31 05:09:29 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-31 05:09:29 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-31 05:09:29 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(156), 1,
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[2415] = 28,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 05:09:29 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-22 20:32:55 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-22 18:48:34 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-31 05:09:29 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
STATE(50), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
STATE(131), 1,
sym_statement,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(86), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 20:38:20 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 20:38:20 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 20:38:20 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[2525] = 27,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(25), 1,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-31 07:17:58 +00:00
ACTIONS(27), 1,
2023-10-31 05:09:29 +00:00
anon_sym_while,
2023-10-31 07:17:58 +00:00
ACTIONS(29), 1,
2023-10-31 05:09:29 +00:00
anon_sym_for,
2023-10-31 07:17:58 +00:00
ACTIONS(31), 1,
2023-10-31 05:09:29 +00:00
anon_sym_transform,
2023-10-31 07:17:58 +00:00
ACTIONS(33), 1,
2023-10-31 05:09:29 +00:00
anon_sym_filter,
2023-10-31 07:17:58 +00:00
ACTIONS(35), 1,
2023-10-31 05:09:29 +00:00
anon_sym_find,
2023-10-31 07:17:58 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 07:17:58 +00:00
ACTIONS(39), 1,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-31 07:17:58 +00:00
ACTIONS(41), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-31 07:17:58 +00:00
ACTIONS(43), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
2023-10-31 07:17:58 +00:00
ACTIONS(45), 1,
2023-10-31 05:09:29 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
STATE(50), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(55), 1,
2023-10-28 14:28:43 +00:00
sym_if,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
STATE(164), 14,
2023-10-31 05:09:29 +00:00
sym__statement_kind,
2023-10-21 17:19:01 +00:00
sym_assignment,
sym_if_else,
2023-10-31 05:09:29 +00:00
sym_match,
2023-10-21 17:19:01 +00:00
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
2023-10-31 05:09:29 +00:00
sym_reduce,
2023-10-21 17:19:01 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-31 07:17:58 +00:00
[2632] = 6,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
ACTIONS(128), 1,
anon_sym_DOT_DOT,
STATE(94), 1,
sym_math_operator,
STATE(97), 1,
sym_logic_operator,
ACTIONS(126), 21,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-21 17:19:01 +00:00
anon_sym_select,
anon_sym_insert,
2023-10-31 05:09:29 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(124), 22,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
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,
anon_sym_EQ_GT,
[2692] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(94), 1,
sym_math_operator,
STATE(97), 1,
sym_logic_operator,
ACTIONS(132), 21,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +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,
2023-10-28 14:28:43 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(130), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[2750] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(94), 1,
sym_math_operator,
STATE(97), 1,
sym_logic_operator,
ACTIONS(126), 21,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
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_async,
ACTIONS(124), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[2808] = 9,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
ACTIONS(138), 1,
anon_sym_COLON,
STATE(94), 1,
sym_math_operator,
STATE(97), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(144), 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(134), 11,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(136), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
anon_sym_table,
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_async,
2023-10-31 07:17:58 +00:00
[2874] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(94), 1,
sym_math_operator,
STATE(97), 1,
sym_logic_operator,
ACTIONS(148), 21,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-31 07:17:58 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 05:09:29 +00:00
anon_sym_table,
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_async,
2023-10-31 07:17:58 +00:00
ACTIONS(146), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[2932] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(94), 1,
sym_math_operator,
STATE(97), 1,
sym_logic_operator,
ACTIONS(152), 21,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 05:09:29 +00:00
anon_sym_table,
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_async,
2023-10-31 07:17:58 +00:00
ACTIONS(150), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[2990] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(148), 21,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 05:09:29 +00:00
anon_sym_table,
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_async,
2023-10-31 07:17:58 +00:00
ACTIONS(146), 22,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
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,
anon_sym_EQ_GT,
[3047] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(152), 21,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 05:09:29 +00:00
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-31 05:09:29 +00:00
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(150), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
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,
anon_sym_EQ_GT,
[3104] = 9,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(144), 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(134), 10,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_EQ_GT,
ACTIONS(136), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
2023-10-29 23:31:06 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
[3169] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(132), 21,
sym_identifier,
2023-10-31 05:09:29 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-31 05:09:29 +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,
2023-10-31 07:17:58 +00:00
anon_sym_select,
anon_sym_insert,
2023-10-31 05:09:29 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(130), 22,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
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,
anon_sym_EQ_GT,
[3226] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(158), 21,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(156), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-29 23:31:06 +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-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3278] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(162), 21,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-28 14:28:43 +00:00
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-29 23:31:06 +00:00
anon_sym_select,
anon_sym_insert,
2023-10-28 14:28:43 +00:00
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(160), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
2023-10-31 05:09:29 +00:00
anon_sym_DOT_DOT,
2023-10-29 23:31:06 +00:00
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
2023-10-29 23:31:06 +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-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3330] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(166), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(164), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3382] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(170), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-31 05:09:29 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(168), 23,
2023-10-31 05:09:29 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-31 05:09:29 +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-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3434] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(174), 21,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-29 23:31:06 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-29 23:31:06 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(172), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
2023-10-31 05:09:29 +00:00
anon_sym_DOT_DOT,
2023-10-29 23:31:06 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-29 23:31:06 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
2023-10-29 23:31:06 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3486] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(178), 21,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(176), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3538] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(182), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(180), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3590] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(186), 21,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-29 23:31:06 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-29 23:31:06 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(184), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3642] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(190), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(188), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3694] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(194), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(192), 23,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3746] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(198), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(196), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3798] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(202), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-29 23:31:06 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-29 23:31:06 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(200), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
anon_sym_EQ_GT,
[3850] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(206), 21,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
ACTIONS(204), 23,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
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,
anon_sym_EQ_GT,
[3902] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(212), 1,
anon_sym_EQ,
STATE(9), 1,
sym_assignment_operator,
ACTIONS(214), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(208), 16,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
ACTIONS(210), 23,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-31 07:17:58 +00:00
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[3959] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 5,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
ACTIONS(216), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(218), 19,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4020] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(224), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 5,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(220), 5,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
ACTIONS(222), 19,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
2023-10-31 07:17:58 +00:00
[4083] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
ACTIONS(230), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
2023-10-31 07:17:58 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(226), 5,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
2023-10-21 17:04:17 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
ACTIONS(228), 19,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4146] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 5,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
ACTIONS(232), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(234), 19,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4207] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
STATE(57), 1,
sym_expression,
STATE(68), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(210), 2,
anon_sym_LT,
anon_sym_GT,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(208), 13,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[4281] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(242), 1,
anon_sym_elseif,
ACTIONS(244), 1,
anon_sym_else,
STATE(76), 1,
sym_else,
STATE(56), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(238), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(240), 19,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-28 14:28:43 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4327] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(242), 1,
anon_sym_elseif,
ACTIONS(244), 1,
anon_sym_else,
STATE(79), 1,
sym_else,
STATE(58), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(246), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(248), 19,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-19 01:50:45 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-19 01:50:45 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4373] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(254), 1,
anon_sym_COMMA,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 07:17:58 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
ACTIONS(252), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
ACTIONS(250), 7,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-31 07:17:58 +00:00
[4425] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(260), 1,
anon_sym_elseif,
STATE(58), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(256), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(258), 20,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 07:17:58 +00:00
anon_sym_else,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4466] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(263), 7,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_elseif,
ACTIONS(265), 20,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 07:17:58 +00:00
anon_sym_else,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4501] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(267), 1,
sym_identifier,
ACTIONS(270), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(273), 1,
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(281), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(287), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(290), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(293), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
STATE(57), 1,
sym_expression,
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(276), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(278), 2,
sym_integer,
sym_float,
ACTIONS(284), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[4560] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(296), 7,
2023-10-31 05:09:29 +00:00
ts_builtin_sym_end,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
anon_sym_elseif,
ACTIONS(298), 20,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 07:17:58 +00:00
anon_sym_else,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[4595] = 15,
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(300), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RPAREN,
2023-10-31 07:17:58 +00:00
STATE(57), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
STATE(66), 1,
2023-10-31 05:09:29 +00:00
aux_sym_list_repeat1,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-31 05:09:29 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[4653] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
ACTIONS(302), 1,
anon_sym_RBRACK,
STATE(57), 1,
sym_expression,
STATE(67), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
2023-10-31 05:09:29 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
2023-10-31 05:09:29 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 07:17:58 +00:00
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[4711] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(304), 1,
anon_sym_RBRACE,
STATE(65), 1,
aux_sym_match_repeat1,
STATE(122), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[4769] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(306), 1,
sym_identifier,
ACTIONS(309), 1,
anon_sym_LBRACE,
ACTIONS(312), 1,
anon_sym_RBRACE,
ACTIONS(314), 1,
anon_sym_LPAREN,
ACTIONS(320), 1,
sym_string,
ACTIONS(326), 1,
anon_sym_LBRACK,
ACTIONS(329), 1,
anon_sym_function,
ACTIONS(332), 1,
anon_sym_table,
STATE(65), 1,
aux_sym_match_repeat1,
STATE(122), 1,
sym_expression,
ACTIONS(317), 2,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
ACTIONS(323), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 07:17:58 +00:00
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[4827] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
ACTIONS(335), 1,
anon_sym_RPAREN,
STATE(57), 1,
sym_expression,
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[4885] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
ACTIONS(337), 1,
anon_sym_RBRACK,
STATE(57), 1,
sym_expression,
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[4943] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
ACTIONS(339), 1,
anon_sym_RPAREN,
STATE(57), 1,
sym_expression,
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[5001] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(341), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(343), 19,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[5034] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(345), 6,
ts_builtin_sym_end,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(347), 19,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[5067] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(349), 6,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(351), 19,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[5100] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(353), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(355), 19,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[5133] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(357), 6,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(359), 19,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
2023-10-29 23:31:06 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
2023-10-29 23:31:06 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[5166] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(361), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(363), 19,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
2023-10-31 05:09:29 +00:00
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-31 05:09:29 +00:00
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 07:17:58 +00:00
[5199] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(365), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(367), 19,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 05:09:29 +00:00
anon_sym_function,
anon_sym_table,
2023-10-31 07:17:58 +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_async,
[5232] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(246), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(248), 19,
2023-10-31 05:09:29 +00:00
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5265] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(369), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(371), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 07:17:58 +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_async,
[5298] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(373), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(375), 19,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5331] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(377), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(379), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 07:17:58 +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_async,
[5364] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(381), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(383), 19,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5397] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(385), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(387), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 07:17:58 +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_async,
[5430] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(389), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(391), 19,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5463] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(64), 1,
aux_sym_match_repeat1,
STATE(122), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5518] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(393), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(395), 19,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5551] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(397), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
sym_string,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(399), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
2023-10-31 07:17:58 +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_async,
[5584] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(401), 6,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(403), 19,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
anon_sym_function,
anon_sym_table,
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_async,
[5617] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(405), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(407), 19,
sym_identifier,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5650] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(409), 6,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(411), 19,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[5683] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(53), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5735] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(52), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5787] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(413), 1,
anon_sym_table,
STATE(31), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5839] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(120), 1,
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5891] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(121), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
2023-10-21 17:19:01 +00:00
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5943] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(413), 1,
anon_sym_table,
STATE(30), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[5995] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
sym_identifier,
STATE(119), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6047] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(123), 1,
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6099] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(413), 1,
anon_sym_table,
STATE(29), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6151] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
STATE(117), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6203] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(116), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6255] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(32), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6307] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(115), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6359] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(413), 1,
anon_sym_table,
STATE(28), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6411] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(415), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(125), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6463] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(34), 1,
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6515] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(35), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6567] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-19 01:50:45 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(126), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6619] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-19 01:50:45 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
STATE(114), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6671] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(413), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
STATE(26), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6723] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(51), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6775] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
anon_sym_LBRACE,
ACTIONS(236), 1,
sym_identifier,
STATE(124), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
2023-10-29 23:31:06 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6827] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(17), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 05:09:29 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-31 07:17:58 +00:00
ACTIONS(49), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(33), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-31 07:17:58 +00:00
ACTIONS(11), 2,
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 07:17:58 +00:00
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 07:17:58 +00:00
STATE(48), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 07:17:58 +00:00
[6879] = 13,
ACTIONS(3), 1,
sym_comment,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_function,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(236), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(118), 1,
sym_expression,
ACTIONS(11), 2,
sym_integer,
sym_float,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(42), 5,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6931] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(419), 4,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
ACTIONS(417), 19,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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_async,
[6962] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(421), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
2023-10-31 05:09:29 +00:00
sym_logic_operator,
2023-10-31 07:17:58 +00:00
ACTIONS(140), 2,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[6997] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
2023-10-31 05:09:29 +00:00
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(423), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7032] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
2023-10-31 05:09:29 +00:00
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(425), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7067] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(427), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
2023-10-31 07:17:58 +00:00
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7102] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(429), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
2023-10-31 07:17:58 +00:00
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7137] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(431), 1,
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7172] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(433), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7207] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(435), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7242] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(437), 1,
anon_sym_EQ_GT,
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7277] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(439), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
2023-10-31 07:17:58 +00:00
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7312] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(441), 1,
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7347] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(443), 1,
sym_identifier,
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7382] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
2023-10-31 07:17:58 +00:00
ACTIONS(445), 1,
anon_sym_LBRACE,
STATE(100), 1,
2023-10-31 05:09:29 +00:00
sym_math_operator,
2023-10-31 07:17:58 +00:00
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7417] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(447), 1,
2023-10-31 05:09:29 +00:00
anon_sym_in,
2023-10-31 07:17:58 +00:00
ACTIONS(210), 3,
2023-10-31 05:09:29 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(208), 12,
2023-10-31 05:09:29 +00:00
anon_sym_COLON,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
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-10-31 07:17:58 +00:00
[7443] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 1,
anon_sym_COLON,
STATE(100), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(140), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(142), 5,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-31 07:17:58 +00:00
ACTIONS(144), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 07:17:58 +00:00
[7475] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(449), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-31 07:17:58 +00:00
ACTIONS(206), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
ACTIONS(204), 12,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-31 05:09:29 +00:00
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-10-31 07:17:58 +00:00
[7500] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(276), 6,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(451), 7,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-31 07:17:58 +00:00
[7521] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(455), 5,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(453), 7,
sym_identifier,
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
[7541] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(459), 4,
anon_sym_LBRACE,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(457), 7,
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-31 07:17:58 +00:00
[7560] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(463), 4,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
sym_string,
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(461), 7,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-31 07:17:58 +00:00
[7579] = 3,
ACTIONS(3), 1,
sym_comment,
STATE(9), 1,
2023-10-31 05:09:29 +00:00
sym_assignment_operator,
2023-10-31 07:17:58 +00:00
ACTIONS(214), 3,
2023-10-31 05:09:29 +00:00
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-10-31 07:17:58 +00:00
[7591] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(465), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(468), 1,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(135), 1,
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7604] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(472), 1,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(138), 1,
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7617] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(474), 1,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(135), 1,
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7630] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(476), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(135), 1,
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7643] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(478), 1,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(135), 1,
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7656] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(480), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(135), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7669] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(484), 1,
2023-10-31 05:09:29 +00:00
anon_sym_COMMA,
2023-10-31 07:17:58 +00:00
ACTIONS(482), 2,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_GT,
2023-10-31 07:17:58 +00:00
[7680] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
ACTIONS(486), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-31 07:17:58 +00:00
STATE(140), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7693] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(137), 1,
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7703] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(488), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
ACTIONS(490), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
2023-10-31 07:17:58 +00:00
[7713] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(492), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(162), 1,
2023-10-31 05:09:29 +00:00
sym_assignment,
2023-10-31 07:17:58 +00:00
[7723] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
2023-10-31 07:17:58 +00:00
STATE(139), 1,
2023-10-31 05:09:29 +00:00
aux_sym_function_repeat1,
2023-10-31 07:17:58 +00:00
[7733] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(468), 2,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
anon_sym_GT,
[7741] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(494), 1,
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7748] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(496), 1,
anon_sym_into,
[7755] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(498), 1,
2023-10-29 23:31:06 +00:00
anon_sym_from,
2023-10-31 07:17:58 +00:00
[7762] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(500), 1,
2023-10-31 05:09:29 +00:00
anon_sym_in,
2023-10-31 07:17:58 +00:00
[7769] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(502), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7776] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(504), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7783] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(506), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7790] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(508), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7797] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(510), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7804] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(512), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7811] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(514), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7818] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(516), 1,
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7825] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(518), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7832] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(520), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
[7839] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(522), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7846] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(524), 1,
sym_identifier,
[7853] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(526), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7860] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(528), 1,
anon_sym_to,
[7867] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(530), 1,
2023-10-31 05:09:29 +00:00
ts_builtin_sym_end,
2023-10-31 07:17:58 +00:00
[7874] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(532), 1,
anon_sym_RBRACE,
[7881] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(534), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
[7888] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(536), 1,
anon_sym_in,
[7895] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(538), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LT,
2023-10-31 07:17:58 +00:00
[7902] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(540), 1,
anon_sym_RBRACE,
[7909] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(542), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
[7916] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(544), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
[7923] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(546), 1,
2023-10-31 05:09:29 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7930] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(548), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
[7937] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(550), 1,
anon_sym_RBRACE,
[7944] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(552), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
[7951] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(554), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
[7958] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(556), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
[7965] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(558), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
[7972] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(560), 1,
anon_sym_in,
[7979] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(562), 1,
anon_sym_RBRACE,
[7986] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(564), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-31 07:17:58 +00:00
[7993] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(566), 1,
2023-10-31 05:09:29 +00:00
anon_sym_in,
2023-10-31 07:17:58 +00:00
[8000] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(568), 1,
anon_sym_LT,
[8007] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(570), 1,
anon_sym_from,
[8014] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(572), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 07:17:58 +00:00
[8021] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(574), 1,
anon_sym_in,
[8028] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(576), 1,
anon_sym_from,
[8035] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(578), 1,
anon_sym_LT,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-10-21 20:38:20 +00:00
[SMALL_STATE(2)] = 0,
2023-10-31 07:17:58 +00:00
[SMALL_STATE(3)] = 88,
[SMALL_STATE(4)] = 203,
[SMALL_STATE(5)] = 317,
[SMALL_STATE(6)] = 431,
[SMALL_STATE(7)] = 545,
[SMALL_STATE(8)] = 655,
[SMALL_STATE(9)] = 765,
[SMALL_STATE(10)] = 875,
[SMALL_STATE(11)] = 985,
[SMALL_STATE(12)] = 1095,
[SMALL_STATE(13)] = 1205,
[SMALL_STATE(14)] = 1315,
[SMALL_STATE(15)] = 1425,
[SMALL_STATE(16)] = 1535,
[SMALL_STATE(17)] = 1645,
[SMALL_STATE(18)] = 1755,
[SMALL_STATE(19)] = 1865,
[SMALL_STATE(20)] = 1975,
[SMALL_STATE(21)] = 2085,
[SMALL_STATE(22)] = 2195,
[SMALL_STATE(23)] = 2305,
[SMALL_STATE(24)] = 2415,
[SMALL_STATE(25)] = 2525,
[SMALL_STATE(26)] = 2632,
[SMALL_STATE(27)] = 2692,
[SMALL_STATE(28)] = 2750,
[SMALL_STATE(29)] = 2808,
[SMALL_STATE(30)] = 2874,
[SMALL_STATE(31)] = 2932,
[SMALL_STATE(32)] = 2990,
[SMALL_STATE(33)] = 3047,
[SMALL_STATE(34)] = 3104,
[SMALL_STATE(35)] = 3169,
[SMALL_STATE(36)] = 3226,
[SMALL_STATE(37)] = 3278,
[SMALL_STATE(38)] = 3330,
[SMALL_STATE(39)] = 3382,
[SMALL_STATE(40)] = 3434,
[SMALL_STATE(41)] = 3486,
[SMALL_STATE(42)] = 3538,
[SMALL_STATE(43)] = 3590,
[SMALL_STATE(44)] = 3642,
[SMALL_STATE(45)] = 3694,
[SMALL_STATE(46)] = 3746,
[SMALL_STATE(47)] = 3798,
[SMALL_STATE(48)] = 3850,
[SMALL_STATE(49)] = 3902,
[SMALL_STATE(50)] = 3959,
[SMALL_STATE(51)] = 4020,
[SMALL_STATE(52)] = 4083,
[SMALL_STATE(53)] = 4146,
[SMALL_STATE(54)] = 4207,
[SMALL_STATE(55)] = 4281,
[SMALL_STATE(56)] = 4327,
[SMALL_STATE(57)] = 4373,
[SMALL_STATE(58)] = 4425,
[SMALL_STATE(59)] = 4466,
[SMALL_STATE(60)] = 4501,
[SMALL_STATE(61)] = 4560,
[SMALL_STATE(62)] = 4595,
[SMALL_STATE(63)] = 4653,
[SMALL_STATE(64)] = 4711,
[SMALL_STATE(65)] = 4769,
[SMALL_STATE(66)] = 4827,
[SMALL_STATE(67)] = 4885,
[SMALL_STATE(68)] = 4943,
[SMALL_STATE(69)] = 5001,
[SMALL_STATE(70)] = 5034,
[SMALL_STATE(71)] = 5067,
[SMALL_STATE(72)] = 5100,
[SMALL_STATE(73)] = 5133,
[SMALL_STATE(74)] = 5166,
[SMALL_STATE(75)] = 5199,
[SMALL_STATE(76)] = 5232,
[SMALL_STATE(77)] = 5265,
[SMALL_STATE(78)] = 5298,
[SMALL_STATE(79)] = 5331,
[SMALL_STATE(80)] = 5364,
[SMALL_STATE(81)] = 5397,
[SMALL_STATE(82)] = 5430,
[SMALL_STATE(83)] = 5463,
[SMALL_STATE(84)] = 5518,
[SMALL_STATE(85)] = 5551,
[SMALL_STATE(86)] = 5584,
[SMALL_STATE(87)] = 5617,
[SMALL_STATE(88)] = 5650,
[SMALL_STATE(89)] = 5683,
[SMALL_STATE(90)] = 5735,
[SMALL_STATE(91)] = 5787,
[SMALL_STATE(92)] = 5839,
[SMALL_STATE(93)] = 5891,
[SMALL_STATE(94)] = 5943,
[SMALL_STATE(95)] = 5995,
[SMALL_STATE(96)] = 6047,
[SMALL_STATE(97)] = 6099,
[SMALL_STATE(98)] = 6151,
[SMALL_STATE(99)] = 6203,
[SMALL_STATE(100)] = 6255,
[SMALL_STATE(101)] = 6307,
[SMALL_STATE(102)] = 6359,
[SMALL_STATE(103)] = 6411,
[SMALL_STATE(104)] = 6463,
[SMALL_STATE(105)] = 6515,
[SMALL_STATE(106)] = 6567,
[SMALL_STATE(107)] = 6619,
[SMALL_STATE(108)] = 6671,
[SMALL_STATE(109)] = 6723,
[SMALL_STATE(110)] = 6775,
[SMALL_STATE(111)] = 6827,
[SMALL_STATE(112)] = 6879,
[SMALL_STATE(113)] = 6931,
[SMALL_STATE(114)] = 6962,
[SMALL_STATE(115)] = 6997,
[SMALL_STATE(116)] = 7032,
[SMALL_STATE(117)] = 7067,
[SMALL_STATE(118)] = 7102,
[SMALL_STATE(119)] = 7137,
[SMALL_STATE(120)] = 7172,
[SMALL_STATE(121)] = 7207,
[SMALL_STATE(122)] = 7242,
[SMALL_STATE(123)] = 7277,
[SMALL_STATE(124)] = 7312,
[SMALL_STATE(125)] = 7347,
[SMALL_STATE(126)] = 7382,
[SMALL_STATE(127)] = 7417,
[SMALL_STATE(128)] = 7443,
[SMALL_STATE(129)] = 7475,
[SMALL_STATE(130)] = 7500,
[SMALL_STATE(131)] = 7521,
[SMALL_STATE(132)] = 7541,
[SMALL_STATE(133)] = 7560,
[SMALL_STATE(134)] = 7579,
[SMALL_STATE(135)] = 7591,
[SMALL_STATE(136)] = 7604,
[SMALL_STATE(137)] = 7617,
[SMALL_STATE(138)] = 7630,
[SMALL_STATE(139)] = 7643,
[SMALL_STATE(140)] = 7656,
[SMALL_STATE(141)] = 7669,
[SMALL_STATE(142)] = 7680,
[SMALL_STATE(143)] = 7693,
[SMALL_STATE(144)] = 7703,
[SMALL_STATE(145)] = 7713,
[SMALL_STATE(146)] = 7723,
[SMALL_STATE(147)] = 7733,
[SMALL_STATE(148)] = 7741,
[SMALL_STATE(149)] = 7748,
[SMALL_STATE(150)] = 7755,
[SMALL_STATE(151)] = 7762,
[SMALL_STATE(152)] = 7769,
[SMALL_STATE(153)] = 7776,
[SMALL_STATE(154)] = 7783,
[SMALL_STATE(155)] = 7790,
[SMALL_STATE(156)] = 7797,
[SMALL_STATE(157)] = 7804,
[SMALL_STATE(158)] = 7811,
[SMALL_STATE(159)] = 7818,
[SMALL_STATE(160)] = 7825,
[SMALL_STATE(161)] = 7832,
[SMALL_STATE(162)] = 7839,
[SMALL_STATE(163)] = 7846,
[SMALL_STATE(164)] = 7853,
[SMALL_STATE(165)] = 7860,
[SMALL_STATE(166)] = 7867,
[SMALL_STATE(167)] = 7874,
[SMALL_STATE(168)] = 7881,
[SMALL_STATE(169)] = 7888,
[SMALL_STATE(170)] = 7895,
[SMALL_STATE(171)] = 7902,
[SMALL_STATE(172)] = 7909,
[SMALL_STATE(173)] = 7916,
[SMALL_STATE(174)] = 7923,
[SMALL_STATE(175)] = 7930,
[SMALL_STATE(176)] = 7937,
[SMALL_STATE(177)] = 7944,
[SMALL_STATE(178)] = 7951,
[SMALL_STATE(179)] = 7958,
[SMALL_STATE(180)] = 7965,
[SMALL_STATE(181)] = 7972,
[SMALL_STATE(182)] = 7979,
[SMALL_STATE(183)] = 7986,
[SMALL_STATE(184)] = 7993,
[SMALL_STATE(185)] = 8000,
[SMALL_STATE(186)] = 8007,
[SMALL_STATE(187)] = 8014,
[SMALL_STATE(188)] = 8021,
[SMALL_STATE(189)] = 8028,
[SMALL_STATE(190)] = 8035,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-31 07:17:58 +00:00
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54),
[49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
[53] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49),
[58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(25),
[61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(42),
[67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(42),
[70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(45),
[73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(63),
[76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(144),
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(185),
[82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(95),
[85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(96),
[88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(101),
[91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(179),
[94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(178),
[97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(103),
[100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(175),
[103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(173),
[106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(172),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(170),
[112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(149),
[115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168),
[118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 4),
[174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 4),
[176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 3),
[202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 3),
[204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113),
[214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_kind, 1),
[218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_kind, 1),
[220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48),
[238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
[246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(106),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(48),
[270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(145),
[273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2),
[276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(42),
[281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(42),
[284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(45),
[287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(63),
[290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(144),
[293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(185),
[296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(48),
[309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(145),
[312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(2),
[317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(42),
[320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(42),
[323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(45),
[326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(63),
[329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(144),
[332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(185),
[335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 3),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 3),
[353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7, .production_id = 1),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7, .production_id = 1),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 8, .production_id = 2),
[387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 8, .production_id = 2),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8),
[391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 9),
[395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 9),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 9),
[399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 9),
[401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5),
[407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5),
[409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190),
[415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127),
[417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(141),
[468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[530] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
};
#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