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

11231 lines
260 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
#define STATE_COUNT 263
2023-10-21 20:38:20 +00:00
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 124
#define ALIAS_COUNT 0
#define TOKEN_COUNT 81
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
2023-10-21 17:04:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 9
#define PRODUCTION_ID_COUNT 1
enum {
sym_identifier = 1,
aux_sym_comment_token1 = 2,
anon_sym_LPAREN = 3,
anon_sym_RPAREN = 4,
2023-10-29 23:31:06 +00:00
sym__numeric = 5,
anon_sym_DASH = 6,
anon_sym_DOT = 7,
sym_string = 8,
anon_sym_true = 9,
anon_sym_false = 10,
anon_sym_LBRACK = 11,
anon_sym_COMMA = 12,
anon_sym_RBRACK = 13,
anon_sym_LBRACE = 14,
anon_sym_EQ = 15,
anon_sym_RBRACE = 16,
anon_sym_COLON = 17,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT = 18,
anon_sym_function = 19,
anon_sym_LT = 20,
anon_sym_GT = 21,
anon_sym_table = 22,
anon_sym_PLUS = 23,
anon_sym_DASH2 = 24,
anon_sym_STAR = 25,
anon_sym_SLASH = 26,
anon_sym_PERCENT = 27,
anon_sym_EQ_EQ = 28,
anon_sym_BANG_EQ = 29,
anon_sym_AMP_AMP = 30,
anon_sym_PIPE_PIPE = 31,
anon_sym_GT_EQ = 32,
anon_sym_LT_EQ = 33,
anon_sym_PLUS_EQ = 34,
anon_sym_DASH_EQ = 35,
anon_sym_if = 36,
anon_sym_elseif = 37,
anon_sym_else = 38,
anon_sym_while = 39,
anon_sym_for = 40,
anon_sym_in = 41,
anon_sym_transform = 42,
anon_sym_filter = 43,
anon_sym_find = 44,
anon_sym_remove = 45,
anon_sym_select = 46,
anon_sym_from = 47,
anon_sym_insert = 48,
anon_sym_into = 49,
anon_sym_async = 50,
anon_sym_assert = 51,
anon_sym_assert_equal = 52,
anon_sym_download = 53,
anon_sym_help = 54,
anon_sym_length = 55,
anon_sym_output = 56,
anon_sym_output_error = 57,
anon_sym_type = 58,
anon_sym_workdir = 59,
anon_sym_append = 60,
anon_sym_metadata = 61,
anon_sym_move = 62,
anon_sym_read = 63,
anon_sym_write = 64,
anon_sym_from_json = 65,
anon_sym_to_json = 66,
anon_sym_to_string = 67,
anon_sym_to_float = 68,
anon_sym_bash = 69,
anon_sym_fish = 70,
anon_sym_raw = 71,
anon_sym_sh = 72,
anon_sym_zsh = 73,
anon_sym_random = 74,
anon_sym_random_boolean = 75,
anon_sym_random_float = 76,
anon_sym_random_integer = 77,
anon_sym_columns = 78,
anon_sym_rows = 79,
anon_sym_reverse = 80,
sym_root = 81,
sym_item = 82,
sym_statement = 83,
sym_comment = 84,
sym_expression = 85,
sym__expression_kind = 86,
sym_value = 87,
sym_integer = 88,
sym_float = 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_while = 107,
sym_for = 108,
sym_transform = 109,
sym_filter = 110,
sym_find = 111,
sym_remove = 112,
sym_select = 113,
sym_insert = 114,
sym_async = 115,
sym_tool = 116,
sym__tool_kind = 117,
aux_sym_root_repeat1 = 118,
aux_sym_item_repeat1 = 119,
aux_sym_list_repeat1 = 120,
aux_sym_map_repeat1 = 121,
aux_sym_function_repeat1 = 122,
aux_sym_if_else_repeat1 = 123,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[aux_sym_comment_token1] = "comment_token1",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
2023-10-29 23:31:06 +00:00
[sym__numeric] = "_numeric",
[anon_sym_DASH] = "-",
[anon_sym_DOT] = ".",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = "{",
[anon_sym_EQ] = "=",
[anon_sym_RBRACE] = "}",
[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-29 23:31:06 +00:00
[anon_sym_DASH2] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_EQ] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
[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_select] = "select",
[anon_sym_from] = "from",
[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_item] = "item",
[sym_statement] = "statement",
[sym_comment] = "comment",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[sym_value] = "value",
2023-10-29 23:31:06 +00:00
[sym_integer] = "integer",
[sym_float] = "float",
[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",
[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",
[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_item_repeat1] = "item_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[aux_sym_comment_token1] = aux_sym_comment_token1,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
[sym__numeric] = sym__numeric,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_DOT] = anon_sym_DOT,
[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,
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[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-29 23:31:06 +00:00
[anon_sym_DASH2] = 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,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_if] = anon_sym_if,
[anon_sym_elseif] = anon_sym_elseif,
[anon_sym_else] = anon_sym_else,
[anon_sym_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_select] = anon_sym_select,
[anon_sym_from] = anon_sym_from,
[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_item] = sym_item,
[sym_statement] = sym_statement,
[sym_comment] = sym_comment,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[sym_value] = sym_value,
2023-10-29 23:31:06 +00:00
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[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,
[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,
[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_item_repeat1] = aux_sym_item_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_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,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[aux_sym_comment_token1] = {
.visible = false,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[sym__numeric] = {
.visible = false,
.named = true,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DASH] = {
.visible = true,
2023-10-29 23:31:06 +00:00
.named = false,
},
[anon_sym_DOT] = {
.visible = true,
.named = false,
},
[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,
},
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_RBRACE] = {
.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-29 23:31:06 +00:00
[anon_sym_DASH2] = {
.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,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_elseif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_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-21 17:04:17 +00:00
[anon_sym_select] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_from] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_insert] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_into] = {
.visible = true,
.named = false,
},
2023-10-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,
},
[sym_item] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[sym_value] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.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,
},
[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,
},
[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_item_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
2023-10-29 23:31:06 +00:00
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
};
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-22 20:41:37 +00:00
[3] = 2,
[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-21 20:38:20 +00:00
[8] = 8,
2023-10-22 20:32:55 +00:00
[9] = 9,
[10] = 10,
[11] = 11,
[12] = 12,
[13] = 12,
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,
[17] = 16,
[18] = 18,
[19] = 19,
2023-10-29 23:31:06 +00:00
[20] = 20,
[21] = 14,
2023-10-29 23:31:06 +00:00
[22] = 22,
2023-10-28 14:28:43 +00:00
[23] = 23,
[24] = 23,
2023-10-28 14:28:43 +00:00
[25] = 25,
[26] = 26,
[27] = 27,
2023-10-29 23:31:06 +00:00
[28] = 28,
[29] = 28,
2023-10-29 23:31:06 +00:00
[30] = 30,
2023-10-21 17:04:17 +00:00
[31] = 31,
[32] = 31,
[33] = 33,
[34] = 34,
2023-10-29 23:31:06 +00:00
[35] = 35,
[36] = 34,
[37] = 37,
[38] = 33,
[39] = 35,
[40] = 30,
[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,
[61] = 42,
[62] = 62,
[63] = 63,
2023-10-18 22:18:41 +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-29 23:31:06 +00:00
[75] = 75,
[76] = 70,
[77] = 75,
[78] = 72,
[79] = 71,
[80] = 74,
[81] = 81,
[82] = 82,
[83] = 83,
[84] = 84,
[85] = 84,
[86] = 86,
[87] = 87,
[88] = 83,
[89] = 89,
[90] = 84,
[91] = 84,
[92] = 86,
2023-10-29 23:31:06 +00:00
[93] = 93,
[94] = 94,
[95] = 95,
[96] = 86,
[97] = 97,
[98] = 86,
[99] = 99,
[100] = 100,
[101] = 101,
[102] = 102,
[103] = 103,
[104] = 104,
[105] = 82,
[106] = 89,
[107] = 95,
[108] = 83,
[109] = 109,
2023-10-29 23:31:06 +00:00
[110] = 110,
[111] = 89,
[112] = 89,
[113] = 110,
[114] = 81,
[115] = 83,
2023-10-28 14:28:43 +00:00
[116] = 116,
[117] = 117,
2023-10-28 14:28:43 +00:00
[118] = 118,
[119] = 119,
[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,
[128] = 128,
[129] = 129,
2023-10-28 14:28:43 +00:00
[130] = 130,
[131] = 131,
[132] = 132,
[133] = 34,
[134] = 35,
[135] = 30,
[136] = 33,
[137] = 31,
[138] = 31,
[139] = 30,
[140] = 35,
[141] = 37,
[142] = 41,
[143] = 34,
[144] = 33,
[145] = 53,
[146] = 43,
[147] = 45,
[148] = 58,
[149] = 59,
[150] = 51,
[151] = 54,
[152] = 50,
[153] = 55,
[154] = 44,
[155] = 52,
[156] = 47,
[157] = 48,
[158] = 56,
[159] = 60,
[160] = 57,
[161] = 49,
2023-10-29 23:31:06 +00:00
[162] = 46,
[163] = 163,
[164] = 65,
[165] = 63,
[166] = 166,
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
2023-10-29 23:31:06 +00:00
[171] = 64,
[172] = 172,
[173] = 173,
[174] = 62,
[175] = 175,
[176] = 176,
[177] = 177,
[178] = 177,
[179] = 179,
[180] = 180,
[181] = 181,
[182] = 182,
[183] = 183,
[184] = 184,
[185] = 185,
[186] = 185,
[187] = 187,
[188] = 188,
[189] = 189,
[190] = 184,
2023-10-28 14:28:43 +00:00
[191] = 191,
2023-10-29 23:31:06 +00:00
[192] = 192,
[193] = 192,
[194] = 187,
[195] = 183,
2023-10-29 23:31:06 +00:00
[196] = 196,
[197] = 196,
[198] = 187,
[199] = 187,
[200] = 182,
[201] = 201,
[202] = 201,
2023-10-29 23:31:06 +00:00
[203] = 203,
2023-10-28 14:28:43 +00:00
[204] = 204,
[205] = 201,
2023-10-29 23:31:06 +00:00
[206] = 204,
[207] = 201,
2023-10-29 23:31:06 +00:00
[208] = 208,
[209] = 209,
[210] = 210,
2023-10-19 01:50:45 +00:00
[211] = 211,
2023-10-29 23:31:06 +00:00
[212] = 212,
[213] = 213,
2023-10-29 23:31:06 +00:00
[214] = 214,
[215] = 215,
[216] = 216,
[217] = 217,
2023-10-29 23:31:06 +00:00
[218] = 218,
[219] = 219,
2023-10-29 23:31:06 +00:00
[220] = 220,
2023-10-18 22:18:41 +00:00
[221] = 221,
[222] = 222,
2023-10-29 23:31:06 +00:00
[223] = 223,
[224] = 224,
[225] = 225,
[226] = 226,
[227] = 227,
[228] = 228,
[229] = 229,
[230] = 230,
[231] = 212,
[232] = 223,
[233] = 225,
[234] = 216,
[235] = 235,
[236] = 226,
[237] = 237,
[238] = 238,
2023-10-29 23:31:06 +00:00
[239] = 239,
2023-10-28 14:28:43 +00:00
[240] = 240,
[241] = 210,
2023-10-29 23:31:06 +00:00
[242] = 242,
[243] = 243,
[244] = 221,
2023-10-29 23:31:06 +00:00
[245] = 245,
[246] = 227,
[247] = 238,
[248] = 213,
2023-10-29 23:31:06 +00:00
[249] = 249,
[250] = 242,
[251] = 217,
[252] = 220,
2023-10-29 23:31:06 +00:00
[253] = 253,
[254] = 254,
2023-10-28 14:28:43 +00:00
[255] = 255,
2023-10-29 23:31:06 +00:00
[256] = 256,
[257] = 238,
2023-10-29 23:31:06 +00:00
[258] = 258,
[259] = 259,
[260] = 214,
[261] = 261,
[262] = 238,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(15);
if (lookahead == '!') ADVANCE(7);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(16);
if (lookahead == '%') ADVANCE(43);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(18);
if (lookahead == ')') ADVANCE(19);
if (lookahead == '*') ADVANCE(41);
if (lookahead == '+') ADVANCE(39);
if (lookahead == ',') ADVANCE(30);
if (lookahead == '-') ADVANCE(26);
if (lookahead == '.') ADVANCE(27);
if (lookahead == '/') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(33);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(29);
if (lookahead == ']') ADVANCE(31);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(22);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(13)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(7);
if (lookahead == '%') ADVANCE(43);
if (lookahead == '&') ADVANCE(4);
if (lookahead == ')') ADVANCE(19);
if (lookahead == '*') ADVANCE(41);
if (lookahead == '+') ADVANCE(39);
if (lookahead == '-') ADVANCE(40);
if (lookahead == '.') ADVANCE(27);
if (lookahead == '/') ADVANCE(42);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(33);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(7);
if (lookahead == '%') ADVANCE(43);
if (lookahead == '&') ADVANCE(4);
if (lookahead == ')') ADVANCE(19);
if (lookahead == '*') ADVANCE(41);
if (lookahead == '+') ADVANCE(39);
if (lookahead == '-') ADVANCE(40);
if (lookahead == '.') ADVANCE(6);
if (lookahead == '/') ADVANCE(42);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(33);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 3:
if (lookahead == '"') ADVANCE(28);
if (lookahead != 0) ADVANCE(3);
END_STATE();
case 4:
if (lookahead == '&') ADVANCE(46);
END_STATE();
case 5:
if (lookahead == '\'') ADVANCE(28);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '.') ADVANCE(36);
END_STATE();
case 7:
if (lookahead == '=') ADVANCE(45);
END_STATE();
case 8:
if (lookahead == '`') ADVANCE(28);
2023-10-29 23:31:06 +00:00
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == 'f') ADVANCE(52);
END_STATE();
case 10:
if (lookahead == 'i') ADVANCE(9);
END_STATE();
case 11:
if (lookahead == '|') ADVANCE(47);
END_STATE();
case 12:
if (eof) ADVANCE(15);
if (lookahead == '!') ADVANCE(7);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(16);
if (lookahead == '%') ADVANCE(43);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(18);
if (lookahead == ')') ADVANCE(19);
if (lookahead == '*') ADVANCE(41);
if (lookahead == '+') ADVANCE(39);
if (lookahead == ',') ADVANCE(30);
if (lookahead == '-') ADVANCE(26);
if (lookahead == '.') ADVANCE(27);
if (lookahead == '/') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(33);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(29);
if (lookahead == ']') ADVANCE(31);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(14)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 13:
if (eof) ADVANCE(15);
if (lookahead == '!') ADVANCE(7);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(16);
if (lookahead == '%') ADVANCE(43);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(18);
if (lookahead == ')') ADVANCE(19);
if (lookahead == '*') ADVANCE(41);
if (lookahead == '+') ADVANCE(39);
if (lookahead == ',') ADVANCE(30);
if (lookahead == '-') ADVANCE(40);
if (lookahead == '.') ADVANCE(6);
if (lookahead == '/') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(33);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(29);
if (lookahead == ']') ADVANCE(31);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(22);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(34);
2023-10-29 23:31:06 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(13)
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 14:
if (eof) ADVANCE(15);
if (lookahead == '!') ADVANCE(7);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(16);
if (lookahead == '%') ADVANCE(43);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(18);
if (lookahead == ')') ADVANCE(19);
if (lookahead == '*') ADVANCE(41);
if (lookahead == '+') ADVANCE(39);
if (lookahead == ',') ADVANCE(30);
if (lookahead == '-') ADVANCE(40);
if (lookahead == '.') ADVANCE(6);
if (lookahead == '/') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(33);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(29);
if (lookahead == ']') ADVANCE(31);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(34);
2023-10-29 23:31:06 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(14)
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 15:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 16:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '#') ADVANCE(16);
2023-10-29 23:31:06 +00:00
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(17);
END_STATE();
case 17:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(17);
END_STATE();
case 18:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 19:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 20:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 21:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(53);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(20);
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
2023-10-28 14:28:43 +00:00
END_STATE();
case 22:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(20);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 23:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(20);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 24:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(20);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
END_STATE();
case 25:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym__numeric);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25);
END_STATE();
case 26:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(51);
END_STATE();
case 27:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT);
if (lookahead == '.') ADVANCE(36);
END_STATE();
case 28:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
case 29:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 30:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 31:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 32:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 33:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(44);
2023-10-28 14:28:43 +00:00
END_STATE();
case 34:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
2023-10-28 14:28:43 +00:00
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 36:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 37:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(49);
END_STATE();
case 38:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(48);
END_STATE();
case 39:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(50);
END_STATE();
case 40:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH2);
if (lookahead == '=') ADVANCE(51);
END_STATE();
case 41:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 42:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 43:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 44:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 45:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 46:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 47:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 48:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 49:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 50:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 51:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 52:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_else);
if (lookahead == ' ') ADVANCE(10);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(20);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
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-22 20:50:09 +00:00
if (lookahead == 'e') ADVANCE(30);
if (lookahead == 'o') ADVANCE(31);
END_STATE();
case 10:
2023-10-22 20:50:09 +00:00
if (lookahead == 'u') ADVANCE(32);
END_STATE();
case 11:
2023-10-22 20:50:09 +00:00
if (lookahead == 'a') ADVANCE(33);
2023-10-22 20:32:55 +00:00
if (lookahead == 'e') ADVANCE(34);
2023-10-22 20:50:09 +00:00
if (lookahead == 'o') ADVANCE(35);
END_STATE();
case 12:
2023-10-22 20:50:09 +00:00
if (lookahead == 'e') ADVANCE(36);
if (lookahead == 'h') ADVANCE(37);
END_STATE();
case 13:
2023-10-22 20:50:09 +00:00
if (lookahead == 'a') ADVANCE(38);
if (lookahead == 'o') ADVANCE(39);
if (lookahead == 'r') ADVANCE(40);
if (lookahead == 'y') ADVANCE(41);
END_STATE();
case 14:
2023-10-22 20:50:09 +00:00
if (lookahead == 'h') ADVANCE(42);
if (lookahead == 'o') ADVANCE(43);
if (lookahead == 'r') ADVANCE(44);
END_STATE();
case 15:
2023-10-22 20:50:09 +00:00
if (lookahead == 's') ADVANCE(45);
END_STATE();
case 16:
2023-10-22 20:50:09 +00:00
if (lookahead == 'p') ADVANCE(46);
END_STATE();
case 17:
2023-10-22 20:41:37 +00:00
if (lookahead == 's') ADVANCE(47);
2023-10-22 20:50:09 +00:00
if (lookahead == 'y') ADVANCE(48);
END_STATE();
case 18:
2023-10-22 20:50:09 +00:00
if (lookahead == 's') ADVANCE(49);
END_STATE();
case 19:
2023-10-22 20:50:09 +00:00
if (lookahead == 'l') ADVANCE(50);
END_STATE();
case 20:
2023-10-22 20:50:09 +00:00
if (lookahead == 'w') ADVANCE(51);
END_STATE();
case 21:
2023-10-22 20:50:09 +00:00
if (lookahead == 'l') ADVANCE(52);
END_STATE();
case 22:
2023-10-22 20:50:09 +00:00
if (lookahead == 'l') ADVANCE(53);
if (lookahead == 'n') ADVANCE(54);
if (lookahead == 's') ADVANCE(55);
END_STATE();
case 23:
2023-10-22 20:50:09 +00:00
if (lookahead == 'r') ADVANCE(56);
END_STATE();
case 24:
2023-10-22 20:50:09 +00:00
if (lookahead == 'o') ADVANCE(57);
END_STATE();
case 25:
2023-10-22 20:50:09 +00:00
if (lookahead == 'n') ADVANCE(58);
END_STATE();
case 26:
2023-10-22 20:50:09 +00:00
if (lookahead == 'l') ADVANCE(59);
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);
if (lookahead == 's') ADVANCE(60);
if (lookahead == 't') ADVANCE(61);
END_STATE();
case 29:
2023-10-22 20:50:09 +00:00
if (lookahead == 'n') ADVANCE(62);
END_STATE();
case 30:
2023-10-22 20:50:09 +00:00
if (lookahead == 't') ADVANCE(63);
END_STATE();
case 31:
2023-10-22 20:50:09 +00:00
if (lookahead == 'v') ADVANCE(64);
END_STATE();
case 32:
2023-10-22 20:50:09 +00:00
if (lookahead == 't') ADVANCE(65);
END_STATE();
case 33:
2023-10-22 20:50:09 +00:00
if (lookahead == 'n') ADVANCE(66);
2023-10-22 20:41:37 +00:00
if (lookahead == 'w') ADVANCE(67);
END_STATE();
case 34:
2023-10-22 20:50:09 +00:00
if (lookahead == 'a') ADVANCE(68);
if (lookahead == 'm') ADVANCE(69);
2023-10-28 14:28:43 +00:00
if (lookahead == 'v') ADVANCE(70);
END_STATE();
case 35:
2023-10-28 14:28:43 +00:00
if (lookahead == 'w') ADVANCE(71);
END_STATE();
case 36:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(72);
END_STATE();
case 37:
2023-10-22 20:50:09 +00:00
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 38:
2023-10-28 14:28:43 +00:00
if (lookahead == 'b') ADVANCE(73);
END_STATE();
case 39:
2023-10-28 14:28:43 +00:00
if (lookahead == '_') ADVANCE(74);
END_STATE();
case 40:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(75);
if (lookahead == 'u') ADVANCE(76);
END_STATE();
case 41:
2023-10-28 14:28:43 +00:00
if (lookahead == 'p') ADVANCE(77);
END_STATE();
case 42:
2023-10-28 14:28:43 +00:00
if (lookahead == 'i') ADVANCE(78);
END_STATE();
case 43:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(79);
END_STATE();
case 44:
2023-10-28 14:28:43 +00:00
if (lookahead == 'i') ADVANCE(80);
END_STATE();
case 45:
2023-10-28 14:28:43 +00:00
if (lookahead == 'h') ADVANCE(81);
END_STATE();
case 46:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(82);
END_STATE();
case 47:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(83);
END_STATE();
case 48:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(84);
END_STATE();
case 49:
2023-10-28 14:28:43 +00:00
if (lookahead == 'h') ADVANCE(85);
END_STATE();
case 50:
2023-10-28 14:28:43 +00:00
if (lookahead == 'u') ADVANCE(86);
END_STATE();
case 51:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(87);
END_STATE();
case 52:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(88);
END_STATE();
case 53:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(89);
END_STATE();
case 54:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(90);
END_STATE();
case 55:
2023-10-28 14:28:43 +00:00
if (lookahead == 'h') ADVANCE(91);
END_STATE();
case 56:
2023-10-22 20:50:09 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 57:
2023-10-28 14:28:43 +00:00
if (lookahead == 'm') ADVANCE(92);
END_STATE();
case 58:
2023-10-28 14:28:43 +00:00
if (lookahead == 'c') ADVANCE(93);
END_STATE();
case 59:
2023-10-28 14:28:43 +00:00
if (lookahead == 'p') ADVANCE(94);
END_STATE();
case 60:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(95);
END_STATE();
case 61:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(96);
END_STATE();
case 62:
2023-10-28 14:28:43 +00:00
if (lookahead == 'g') ADVANCE(97);
END_STATE();
case 63:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(98);
END_STATE();
case 64:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(99);
END_STATE();
case 65:
2023-10-28 14:28:43 +00:00
if (lookahead == 'p') ADVANCE(100);
END_STATE();
case 66:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(101);
END_STATE();
case 67:
2023-10-22 20:50:09 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 68:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(102);
END_STATE();
case 69:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(103);
END_STATE();
case 70:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(104);
END_STATE();
case 71:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(105);
END_STATE();
case 72:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(106);
END_STATE();
case 73:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(107);
END_STATE();
case 74:
2023-10-28 14:28:43 +00:00
if (lookahead == 'f') ADVANCE(108);
if (lookahead == 'j') ADVANCE(109);
if (lookahead == 's') ADVANCE(110);
END_STATE();
case 75:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(111);
END_STATE();
case 76:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(112);
END_STATE();
case 77:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(113);
2023-10-21 17:19:01 +00:00
END_STATE();
case 78:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(114);
2023-10-21 17:19:01 +00:00
END_STATE();
case 79:
2023-10-28 14:28:43 +00:00
if (lookahead == 'k') ADVANCE(115);
2023-10-21 17:19:01 +00:00
END_STATE();
case 80:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(116);
2023-10-21 17:19:01 +00:00
END_STATE();
case 81:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
2023-10-21 17:19:01 +00:00
END_STATE();
case 82:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(117);
2023-10-21 17:19:01 +00:00
END_STATE();
case 83:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(118);
2023-10-21 17:19:01 +00:00
END_STATE();
case 84:
2023-10-28 14:28:43 +00:00
if (lookahead == 'c') ADVANCE(119);
2023-10-21 17:19:01 +00:00
END_STATE();
case 85:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_bash);
2023-10-21 17:19:01 +00:00
END_STATE();
case 86:
2023-10-28 14:28:43 +00:00
if (lookahead == 'm') ADVANCE(120);
2023-10-21 17:19:01 +00:00
END_STATE();
case 87:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(121);
2023-10-21 17:19:01 +00:00
END_STATE();
case 88:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(122);
2023-10-21 17:19:01 +00:00
END_STATE();
case 89:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(123);
2023-10-21 17:19:01 +00:00
END_STATE();
case 90:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_find);
2023-10-21 17:19:01 +00:00
END_STATE();
case 91:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_fish);
2023-10-21 17:19:01 +00:00
END_STATE();
case 92:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(124);
2023-10-21 17:19:01 +00:00
END_STATE();
case 93:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(125);
2023-10-21 17:19:01 +00:00
END_STATE();
case 94:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_help);
2023-10-21 17:19:01 +00:00
END_STATE();
case 95:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(126);
2023-10-21 17:19:01 +00:00
END_STATE();
case 96:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_into);
2023-10-21 17:19:01 +00:00
END_STATE();
case 97:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(127);
2023-10-21 17:19:01 +00:00
END_STATE();
case 98:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(128);
2023-10-21 17:19:01 +00:00
END_STATE();
case 99:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_move);
2023-10-21 17:19:01 +00:00
END_STATE();
case 100:
2023-10-28 14:28:43 +00:00
if (lookahead == 'u') ADVANCE(129);
2023-10-21 17:19:01 +00:00
END_STATE();
case 101:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(130);
END_STATE();
2023-10-21 17:19:01 +00:00
case 102:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_read);
2023-10-21 17:19:01 +00:00
END_STATE();
case 103:
2023-10-28 14:28:43 +00:00
if (lookahead == 'v') ADVANCE(131);
2023-10-21 17:19:01 +00:00
END_STATE();
case 104:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(132);
2023-10-21 17:19:01 +00:00
END_STATE();
case 105:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_rows);
2023-10-21 17:19:01 +00:00
END_STATE();
case 106:
2023-10-28 14:28:43 +00:00
if (lookahead == 'c') ADVANCE(133);
2023-10-21 17:19:01 +00:00
END_STATE();
case 107:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(134);
2023-10-21 20:38:20 +00:00
END_STATE();
case 108:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(135);
2023-10-21 20:38:20 +00:00
END_STATE();
case 109:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(136);
2023-10-21 20:38:20 +00:00
END_STATE();
case 110:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(137);
2023-10-21 20:38:20 +00:00
END_STATE();
case 111:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(138);
2023-10-21 20:38:20 +00:00
END_STATE();
case 112:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_true);
2023-10-21 20:38:20 +00:00
END_STATE();
case 113:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_type);
2023-10-21 20:38:20 +00:00
END_STATE();
case 114:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(139);
2023-10-21 20:38:20 +00:00
END_STATE();
case 115:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(140);
2023-10-21 20:38:20 +00:00
END_STATE();
case 116:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(141);
2023-10-21 20:38:20 +00:00
END_STATE();
case 117:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(142);
2023-10-21 20:38:20 +00:00
END_STATE();
case 118:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(143);
2023-10-21 20:38:20 +00:00
END_STATE();
case 119:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_async);
2023-10-21 20:38:20 +00:00
END_STATE();
case 120:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(144);
2023-10-21 20:38:20 +00:00
END_STATE();
case 121:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(145);
2023-10-21 20:38:20 +00:00
END_STATE();
case 122:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_false);
2023-10-21 20:38:20 +00:00
END_STATE();
case 123:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(146);
2023-10-21 20:38:20 +00:00
END_STATE();
case 124:
2023-10-28 14:28:43 +00:00
if (lookahead == 'j') ADVANCE(147);
2023-10-21 20:38:20 +00:00
END_STATE();
case 125:
2023-10-28 14:28:43 +00:00
if (lookahead == 'i') ADVANCE(148);
2023-10-21 20:38:20 +00:00
END_STATE();
case 126:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(149);
2023-10-21 20:38:20 +00:00
END_STATE();
case 127:
2023-10-28 14:28:43 +00:00
if (lookahead == 'h') ADVANCE(150);
2023-10-21 20:38:20 +00:00
END_STATE();
case 128:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(151);
2023-10-21 20:38:20 +00:00
END_STATE();
case 129:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(152);
2023-10-21 20:38:20 +00:00
END_STATE();
case 130:
2023-10-28 14:28:43 +00:00
if (lookahead == 'm') ADVANCE(153);
2023-10-21 20:38:20 +00:00
END_STATE();
case 131:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(154);
2023-10-21 20:38:20 +00:00
END_STATE();
case 132:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(155);
2023-10-21 20:38:20 +00:00
END_STATE();
case 133:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(156);
2023-10-21 20:38:20 +00:00
END_STATE();
case 134:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_table);
2023-10-21 20:38:20 +00:00
END_STATE();
case 135:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(157);
2023-10-21 20:38:20 +00:00
END_STATE();
case 136:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(158);
2023-10-21 20:38:20 +00:00
END_STATE();
case 137:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(159);
2023-10-21 20:38:20 +00:00
END_STATE();
case 138:
2023-10-28 14:28:43 +00:00
if (lookahead == 'f') ADVANCE(160);
2023-10-21 20:38:20 +00:00
END_STATE();
case 139:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_while);
2023-10-21 20:38:20 +00:00
END_STATE();
case 140:
2023-10-28 14:28:43 +00:00
if (lookahead == 'i') ADVANCE(161);
2023-10-21 20:38:20 +00:00
END_STATE();
case 141:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_write);
2023-10-21 20:38:20 +00:00
END_STATE();
case 142:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_append);
2023-10-21 20:38:20 +00:00
END_STATE();
case 143:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(162);
2023-10-21 20:38:20 +00:00
END_STATE();
case 144:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(163);
2023-10-21 20:38:20 +00:00
END_STATE();
case 145:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(164);
2023-10-21 20:38:20 +00:00
END_STATE();
case 146:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_filter);
2023-10-21 20:38:20 +00:00
END_STATE();
case 147:
2023-10-28 14:28:43 +00:00
if (lookahead == 's') ADVANCE(165);
2023-10-21 20:38:20 +00:00
END_STATE();
case 148:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(166);
2023-10-21 20:38:20 +00:00
END_STATE();
case 149:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_insert);
2023-10-21 20:38:20 +00:00
END_STATE();
case 150:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_length);
2023-10-21 20:38:20 +00:00
END_STATE();
case 151:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(167);
2023-10-21 20:38:20 +00:00
END_STATE();
case 152:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(168);
2023-10-21 20:38:20 +00:00
END_STATE();
case 153:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(169);
2023-10-22 18:27:18 +00:00
END_STATE();
case 154:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_remove);
2023-10-22 18:27:18 +00:00
END_STATE();
case 155:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(170);
2023-10-22 18:27:18 +00:00
END_STATE();
case 156:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_select);
2023-10-22 18:48:34 +00:00
END_STATE();
case 157:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(171);
2023-10-22 18:48:34 +00:00
END_STATE();
case 158:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(172);
2023-10-22 18:48:34 +00:00
END_STATE();
case 159:
2023-10-28 14:28:43 +00:00
if (lookahead == 'i') ADVANCE(173);
2023-10-22 18:48:34 +00:00
END_STATE();
case 160:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(174);
2023-10-22 18:48:34 +00:00
END_STATE();
case 161:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(175);
2023-10-22 18:48:34 +00:00
END_STATE();
case 162:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(176);
2023-10-22 18:48:34 +00:00
END_STATE();
case 163:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_columns);
2023-10-22 18:48:34 +00:00
END_STATE();
case 164:
2023-10-28 14:28:43 +00:00
if (lookahead == 'd') ADVANCE(177);
2023-10-22 18:48:34 +00:00
END_STATE();
case 165:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(178);
2023-10-22 18:48:34 +00:00
END_STATE();
case 166:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(179);
2023-10-22 18:48:34 +00:00
END_STATE();
case 167:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(180);
2023-10-22 18:48:34 +00:00
END_STATE();
case 168:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(181);
2023-10-22 18:48:34 +00:00
END_STATE();
case 169:
2023-10-28 14:28:43 +00:00
if (lookahead == 'b') ADVANCE(182);
if (lookahead == 'f') ADVANCE(183);
if (lookahead == 'i') ADVANCE(184);
2023-10-22 18:48:34 +00:00
END_STATE();
case 170:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_reverse);
2023-10-22 18:48:34 +00:00
END_STATE();
case 171:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(185);
2023-10-22 18:48:34 +00:00
END_STATE();
case 172:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
2023-10-22 18:48:34 +00:00
END_STATE();
case 173:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(186);
2023-10-21 17:19:01 +00:00
END_STATE();
2023-10-22 18:48:34 +00:00
case 174:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(187);
2023-10-22 18:48:34 +00:00
END_STATE();
case 175:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_workdir);
2023-10-22 18:48:34 +00:00
END_STATE();
case 176:
2023-10-28 14:28:43 +00:00
if (lookahead == 'q') ADVANCE(188);
2023-10-22 18:48:34 +00:00
END_STATE();
case 177:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_download);
2023-10-22 18:48:34 +00:00
END_STATE();
case 178:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(189);
2023-10-22 18:48:34 +00:00
END_STATE();
case 179:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_function);
2023-10-22 18:48:34 +00:00
END_STATE();
case 180:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_metadata);
2023-10-22 20:32:55 +00:00
END_STATE();
case 181:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(190);
2023-10-22 20:32:55 +00:00
END_STATE();
case 182:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(191);
2023-10-22 20:32:55 +00:00
END_STATE();
case 183:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(192);
2023-10-22 20:32:55 +00:00
END_STATE();
case 184:
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(193);
2023-10-22 20:32:55 +00:00
END_STATE();
case 185:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_to_float);
2023-10-22 20:32:55 +00:00
END_STATE();
case 186:
2023-10-28 14:28:43 +00:00
if (lookahead == 'g') ADVANCE(194);
2023-10-22 20:32:55 +00:00
END_STATE();
case 187:
2023-10-28 14:28:43 +00:00
if (lookahead == 'm') ADVANCE(195);
2023-10-22 20:32:55 +00:00
END_STATE();
case 188:
2023-10-28 14:28:43 +00:00
if (lookahead == 'u') ADVANCE(196);
2023-10-22 20:32:55 +00:00
END_STATE();
case 189:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
2023-10-22 20:32:55 +00:00
END_STATE();
case 190:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(197);
2023-10-22 20:41:37 +00:00
END_STATE();
case 191:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(198);
2023-10-22 20:41:37 +00:00
END_STATE();
case 192:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(199);
2023-10-22 20:41:37 +00:00
END_STATE();
case 193:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(200);
2023-10-22 20:41:37 +00:00
END_STATE();
case 194:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_to_string);
2023-10-22 20:41:37 +00:00
END_STATE();
case 195:
2023-10-28 14:28:43 +00:00
ACCEPT_TOKEN(anon_sym_transform);
2023-10-22 20:41:37 +00:00
END_STATE();
case 196:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(201);
2023-10-22 20:50:09 +00:00
END_STATE();
case 197:
2023-10-28 14:28:43 +00:00
if (lookahead == 'o') ADVANCE(202);
2023-10-22 20:50:09 +00:00
END_STATE();
case 198:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(203);
2023-10-22 20:50:09 +00:00
END_STATE();
case 199:
2023-10-28 14:28:43 +00:00
if (lookahead == 'a') ADVANCE(204);
2023-10-22 20:50:09 +00:00
END_STATE();
case 200:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(205);
2023-10-22 20:50:09 +00:00
END_STATE();
case 201:
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(206);
2023-10-22 20:50:09 +00:00
END_STATE();
case 202:
2023-10-28 14:28:43 +00:00
if (lookahead == 'r') ADVANCE(207);
2023-10-22 20:50:09 +00:00
END_STATE();
case 203:
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(208);
2023-10-22 20:50:09 +00:00
END_STATE();
case 204:
2023-10-28 14:28:43 +00:00
if (lookahead == 't') ADVANCE(209);
END_STATE();
case 205:
if (lookahead == 'g') ADVANCE(210);
END_STATE();
case 206:
ACCEPT_TOKEN(anon_sym_assert_equal);
END_STATE();
case 207:
ACCEPT_TOKEN(anon_sym_output_error);
END_STATE();
case 208:
if (lookahead == 'a') ADVANCE(211);
END_STATE();
case 209:
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 210:
if (lookahead == 'e') ADVANCE(212);
END_STATE();
case 211:
if (lookahead == 'n') ADVANCE(213);
END_STATE();
case 212:
if (lookahead == 'r') ADVANCE(214);
END_STATE();
case 213:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 214:
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},
[1] = {.lex_state = 12},
[2] = {.lex_state = 12},
[3] = {.lex_state = 12},
[4] = {.lex_state = 12},
[5] = {.lex_state = 12},
[6] = {.lex_state = 12},
[7] = {.lex_state = 12},
[8] = {.lex_state = 12},
[9] = {.lex_state = 12},
[10] = {.lex_state = 12},
[11] = {.lex_state = 12},
[12] = {.lex_state = 12},
[13] = {.lex_state = 12},
[14] = {.lex_state = 12},
[15] = {.lex_state = 12},
[16] = {.lex_state = 12},
[17] = {.lex_state = 12},
[18] = {.lex_state = 12},
[19] = {.lex_state = 12},
[20] = {.lex_state = 12},
[21] = {.lex_state = 12},
[22] = {.lex_state = 12},
[23] = {.lex_state = 12},
[24] = {.lex_state = 12},
[25] = {.lex_state = 12},
[26] = {.lex_state = 12},
[27] = {.lex_state = 12},
[28] = {.lex_state = 12},
[29] = {.lex_state = 12},
[30] = {.lex_state = 12},
[31] = {.lex_state = 12},
[32] = {.lex_state = 12},
[33] = {.lex_state = 12},
[34] = {.lex_state = 12},
[35] = {.lex_state = 12},
[36] = {.lex_state = 12},
[37] = {.lex_state = 12},
[38] = {.lex_state = 12},
[39] = {.lex_state = 12},
[40] = {.lex_state = 12},
[41] = {.lex_state = 12},
[42] = {.lex_state = 12},
[43] = {.lex_state = 12},
[44] = {.lex_state = 12},
[45] = {.lex_state = 12},
[46] = {.lex_state = 12},
[47] = {.lex_state = 12},
[48] = {.lex_state = 12},
[49] = {.lex_state = 12},
[50] = {.lex_state = 12},
[51] = {.lex_state = 12},
[52] = {.lex_state = 12},
[53] = {.lex_state = 12},
[54] = {.lex_state = 12},
[55] = {.lex_state = 12},
[56] = {.lex_state = 12},
[57] = {.lex_state = 12},
[58] = {.lex_state = 12},
[59] = {.lex_state = 12},
[60] = {.lex_state = 12},
[61] = {.lex_state = 12},
[62] = {.lex_state = 12},
[63] = {.lex_state = 12},
[64] = {.lex_state = 12},
[65] = {.lex_state = 12},
[66] = {.lex_state = 12},
2023-10-29 23:31:06 +00:00
[67] = {.lex_state = 0},
[68] = {.lex_state = 0},
[69] = {.lex_state = 12},
[70] = {.lex_state = 12},
[71] = {.lex_state = 12},
[72] = {.lex_state = 12},
[73] = {.lex_state = 0},
[74] = {.lex_state = 12},
[75] = {.lex_state = 12},
[76] = {.lex_state = 12},
[77] = {.lex_state = 12},
[78] = {.lex_state = 12},
[79] = {.lex_state = 12},
[80] = {.lex_state = 12},
[81] = {.lex_state = 12},
[82] = {.lex_state = 12},
[83] = {.lex_state = 12},
[84] = {.lex_state = 12},
[85] = {.lex_state = 12},
[86] = {.lex_state = 12},
[87] = {.lex_state = 12},
[88] = {.lex_state = 12},
[89] = {.lex_state = 12},
[90] = {.lex_state = 12},
[91] = {.lex_state = 12},
[92] = {.lex_state = 12},
[93] = {.lex_state = 12},
[94] = {.lex_state = 0},
[95] = {.lex_state = 12},
[96] = {.lex_state = 12},
[97] = {.lex_state = 12},
[98] = {.lex_state = 12},
[99] = {.lex_state = 12},
[100] = {.lex_state = 12},
[101] = {.lex_state = 12},
[102] = {.lex_state = 12},
[103] = {.lex_state = 12},
[104] = {.lex_state = 12},
[105] = {.lex_state = 12},
[106] = {.lex_state = 12},
[107] = {.lex_state = 12},
[108] = {.lex_state = 12},
[109] = {.lex_state = 0},
[110] = {.lex_state = 12},
[111] = {.lex_state = 12},
[112] = {.lex_state = 12},
[113] = {.lex_state = 12},
[114] = {.lex_state = 12},
[115] = {.lex_state = 12},
[116] = {.lex_state = 12},
[117] = {.lex_state = 12},
[118] = {.lex_state = 12},
[119] = {.lex_state = 12},
[120] = {.lex_state = 12},
[121] = {.lex_state = 12},
[122] = {.lex_state = 12},
[123] = {.lex_state = 12},
[124] = {.lex_state = 12},
[125] = {.lex_state = 12},
[126] = {.lex_state = 12},
[127] = {.lex_state = 12},
[128] = {.lex_state = 12},
[129] = {.lex_state = 12},
[130] = {.lex_state = 12},
[131] = {.lex_state = 12},
[132] = {.lex_state = 12},
2023-10-29 23:31:06 +00:00
[133] = {.lex_state = 1},
[134] = {.lex_state = 1},
[135] = {.lex_state = 1},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
[143] = {.lex_state = 1},
[144] = {.lex_state = 1},
[145] = {.lex_state = 1},
[146] = {.lex_state = 1},
[147] = {.lex_state = 1},
[148] = {.lex_state = 1},
[149] = {.lex_state = 1},
[150] = {.lex_state = 1},
[151] = {.lex_state = 1},
[152] = {.lex_state = 1},
[153] = {.lex_state = 1},
[154] = {.lex_state = 1},
[155] = {.lex_state = 1},
[156] = {.lex_state = 1},
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 1},
[162] = {.lex_state = 1},
[163] = {.lex_state = 1},
[164] = {.lex_state = 1},
[165] = {.lex_state = 1},
[166] = {.lex_state = 1},
[167] = {.lex_state = 1},
[168] = {.lex_state = 1},
[169] = {.lex_state = 1},
[170] = {.lex_state = 1},
[171] = {.lex_state = 1},
[172] = {.lex_state = 1},
[173] = {.lex_state = 1},
[174] = {.lex_state = 1},
[175] = {.lex_state = 1},
[176] = {.lex_state = 1},
[177] = {.lex_state = 1},
[178] = {.lex_state = 1},
[179] = {.lex_state = 12},
[180] = {.lex_state = 12},
[181] = {.lex_state = 12},
[182] = {.lex_state = 12},
[183] = {.lex_state = 12},
[184] = {.lex_state = 12},
[185] = {.lex_state = 12},
[186] = {.lex_state = 12},
[187] = {.lex_state = 12},
[188] = {.lex_state = 12},
[189] = {.lex_state = 12},
[190] = {.lex_state = 12},
[191] = {.lex_state = 12},
[192] = {.lex_state = 12},
[193] = {.lex_state = 12},
[194] = {.lex_state = 12},
[195] = {.lex_state = 12},
[196] = {.lex_state = 12},
[197] = {.lex_state = 12},
[198] = {.lex_state = 12},
[199] = {.lex_state = 12},
[200] = {.lex_state = 12},
[201] = {.lex_state = 12},
[202] = {.lex_state = 12},
[203] = {.lex_state = 12},
[204] = {.lex_state = 0},
[205] = {.lex_state = 12},
[206] = {.lex_state = 0},
[207] = {.lex_state = 12},
[208] = {.lex_state = 12},
[209] = {.lex_state = 0},
[210] = {.lex_state = 0},
[211] = {.lex_state = 0},
[212] = {.lex_state = 12},
[213] = {.lex_state = 0},
[214] = {.lex_state = 0},
[215] = {.lex_state = 12},
[216] = {.lex_state = 12},
[217] = {.lex_state = 0},
[218] = {.lex_state = 12},
[219] = {.lex_state = 12},
[220] = {.lex_state = 0},
[221] = {.lex_state = 0},
[222] = {.lex_state = 0},
[223] = {.lex_state = 12},
[224] = {.lex_state = 12},
[225] = {.lex_state = 12},
[226] = {.lex_state = 0},
[227] = {.lex_state = 0},
[228] = {.lex_state = 0},
[229] = {.lex_state = 0},
[230] = {.lex_state = 12},
[231] = {.lex_state = 12},
[232] = {.lex_state = 12},
[233] = {.lex_state = 12},
[234] = {.lex_state = 12},
[235] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[236] = {.lex_state = 0},
[237] = {.lex_state = 12},
2023-10-29 23:31:06 +00:00
[238] = {.lex_state = 0},
[239] = {.lex_state = 12},
[240] = {.lex_state = 12},
2023-10-29 23:31:06 +00:00
[241] = {.lex_state = 0},
[242] = {.lex_state = 0},
[243] = {.lex_state = 12},
[244] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[245] = {.lex_state = 0},
[246] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[247] = {.lex_state = 0},
[248] = {.lex_state = 0},
[249] = {.lex_state = 0},
[250] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[251] = {.lex_state = 0},
[252] = {.lex_state = 0},
[253] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[254] = {.lex_state = 0},
[255] = {.lex_state = 0},
[256] = {.lex_state = 0},
[257] = {.lex_state = 0},
[258] = {.lex_state = 0},
[259] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[260] = {.lex_state = 0},
[261] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[262] = {.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),
[aux_sym_comment_token1] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[sym__numeric] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_DOT] = 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),
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_RBRACE] = 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-29 23:31:06 +00:00
[anon_sym_DASH2] = 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),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_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_select] = ACTIONS(1),
[anon_sym_from] = 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] = {
[sym_root] = STATE(235),
[sym_item] = STATE(4),
[sym_statement] = STATE(24),
[sym_comment] = STATE(131),
[sym_expression] = STATE(64),
[sym__expression_kind] = STATE(48),
[sym_value] = STATE(48),
[sym_integer] = STATE(60),
[sym_float] = STATE(60),
[sym_boolean] = STATE(60),
[sym_list] = STATE(60),
[sym_map] = STATE(60),
[sym_index] = STATE(48),
[sym_function] = STATE(60),
[sym_table] = STATE(60),
[sym_math] = STATE(48),
[sym_logic] = STATE(48),
[sym_assignment] = STATE(131),
[sym_if_else] = STATE(131),
[sym_if] = STATE(68),
[sym_function_call] = STATE(48),
[sym_while] = STATE(131),
[sym_for] = STATE(131),
[sym_transform] = STATE(131),
[sym_filter] = STATE(131),
[sym_find] = STATE(131),
[sym_remove] = STATE(131),
[sym_select] = STATE(131),
[sym_insert] = STATE(131),
[sym_async] = STATE(131),
[sym_tool] = STATE(48),
[aux_sym_root_repeat1] = STATE(4),
[aux_sym_item_repeat1] = STATE(24),
2023-10-21 17:04:17 +00:00
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
2023-10-29 23:31:06 +00:00
[sym__numeric] = ACTIONS(9),
[anon_sym_DASH] = ACTIONS(11),
[sym_string] = ACTIONS(13),
[anon_sym_true] = ACTIONS(15),
[anon_sym_false] = ACTIONS(15),
[anon_sym_LBRACK] = ACTIONS(17),
2023-10-21 17:04:17 +00:00
[anon_sym_LBRACE] = ACTIONS(19),
2023-10-29 23:31:06 +00:00
[anon_sym_function] = ACTIONS(21),
[anon_sym_table] = ACTIONS(23),
[anon_sym_if] = 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_select] = ACTIONS(39),
[anon_sym_insert] = ACTIONS(41),
[anon_sym_async] = ACTIONS(43),
2023-10-21 17:04:17 +00:00
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-29 23:31:06 +00:00
[0] = 15,
ACTIONS(45), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-22 20:41:37 +00:00
anon_sym_table,
STATE(75), 1,
2023-10-22 20:41:37 +00:00
sym__tool_kind,
STATE(176), 1,
2023-10-22 20:41:37 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-22 20:41:37 +00:00
anon_sym_true,
anon_sym_false,
STATE(159), 7,
2023-10-22 20:41:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-22 20:41:37 +00:00
sym_function,
sym_table,
STATE(178), 7,
2023-10-22 20:41:37 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-22 20:41:37 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(65), 31,
2023-10-22 20:41:37 +00:00
anon_sym_remove,
anon_sym_assert,
anon_sym_assert_equal,
2023-10-22 20:50:09 +00:00
anon_sym_download,
2023-10-22 20:41:37 +00:00
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,
2023-10-28 14:28:43 +00:00
anon_sym_to_float,
2023-10-22 20:41:37 +00:00
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,
2023-10-28 14:28:43 +00:00
anon_sym_reverse,
2023-10-29 23:31:06 +00:00
[89] = 15,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-22 20:50:09 +00:00
anon_sym_table,
ACTIONS(67), 1,
2023-10-22 20:50:09 +00:00
sym_identifier,
STATE(77), 1,
2023-10-22 20:50:09 +00:00
sym__tool_kind,
STATE(176), 1,
2023-10-22 20:50:09 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(159), 7,
2023-10-29 23:31:06 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
STATE(177), 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,
ACTIONS(69), 31,
2023-10-28 14:28:43 +00:00
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,
[178] = 29,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
ACTIONS(71), 1,
ts_builtin_sym_end,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(5), 2,
2023-10-21 20:38:20 +00:00
sym_item,
aux_sym_root_repeat1,
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[292] = 29,
ACTIONS(73), 1,
ts_builtin_sym_end,
ACTIONS(75), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
ACTIONS(78), 1,
2023-10-21 20:38:20 +00:00
aux_sym_comment_token1,
ACTIONS(81), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
ACTIONS(84), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(87), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(90), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(96), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(99), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
ACTIONS(102), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(105), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(108), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
ACTIONS(111), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
ACTIONS(114), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
ACTIONS(117), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(120), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(123), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(126), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(129), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(132), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(135), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(93), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(5), 2,
2023-10-21 20:38:20 +00:00
sym_item,
aux_sym_root_repeat1,
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[406] = 28,
ACTIONS(140), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(143), 1,
2023-10-29 23:31:06 +00:00
aux_sym_comment_token1,
ACTIONS(146), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(149), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(152), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(155), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(161), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(164), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(167), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(170), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(173), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
ACTIONS(176), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
ACTIONS(179), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
ACTIONS(182), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(185), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(188), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(191), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(194), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(197), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(200), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(138), 2,
2023-10-22 20:32:55 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(158), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[517] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(256), 1,
2023-10-29 23:31:06 +00:00
sym_item,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[627] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(249), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[737] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(229), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-22 18:48:34 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-22 18:48:34 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[847] = 28,
2023-10-22 20:32:55 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-22 20:32:55 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-22 20:32:55 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-22 20:32:55 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-22 20:32:55 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-22 20:32:55 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-22 20:32:55 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-22 20:32:55 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-22 20:32:55 +00:00
anon_sym_async,
ACTIONS(203), 1,
anon_sym_RBRACE,
STATE(64), 1,
2023-10-22 18:48:34 +00:00
sym_expression,
STATE(68), 1,
2023-10-22 18:48:34 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-22 20:32:55 +00:00
anon_sym_true,
anon_sym_false,
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[957] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
ACTIONS(205), 1,
anon_sym_RBRACE,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(10), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1067] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(246), 1,
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1177] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(227), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1287] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(226), 1,
2023-10-28 14:28:43 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1397] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(255), 1,
2023-10-28 14:28:43 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1507] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(221), 1,
2023-10-29 23:31:06 +00:00
sym_item,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1617] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(244), 1,
2023-10-28 14:28:43 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1727] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(261), 1,
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1837] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(254), 1,
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1947] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(258), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2057] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(236), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2167] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(222), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(23), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2277] = 28,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
ACTIONS(207), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2387] = 8,
STATE(64), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(6), 2,
sym_statement,
aux_sym_item_repeat1,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
ACTIONS(207), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
STATE(131), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
ACTIONS(209), 15,
2023-10-29 23:31:06 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[2457] = 27,
ACTIONS(5), 1,
2023-10-29 23:31:06 +00:00
aux_sym_comment_token1,
ACTIONS(25), 1,
2023-10-22 20:32:55 +00:00
anon_sym_if,
ACTIONS(27), 1,
2023-10-22 20:32:55 +00:00
anon_sym_while,
ACTIONS(29), 1,
2023-10-22 20:32:55 +00:00
anon_sym_for,
ACTIONS(31), 1,
2023-10-22 20:32:55 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-22 20:32:55 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-22 20:32:55 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-22 18:48:34 +00:00
anon_sym_remove,
ACTIONS(43), 1,
2023-10-22 20:32:55 +00:00
anon_sym_async,
ACTIONS(47), 1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(211), 1,
sym_identifier,
ACTIONS(213), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(215), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(171), 1,
sym_expression,
STATE(209), 1,
sym_statement,
ACTIONS(55), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 20:38:20 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2563] = 27,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 17:19:01 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 17:19:01 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_async,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(211), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(213), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
ACTIONS(215), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_if,
STATE(171), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
STATE(228), 1,
2023-10-29 23:31:06 +00:00
sym_statement,
ACTIONS(55), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 17:19:01 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2669] = 27,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 17:19:01 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 17:19:01 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_async,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(211), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(213), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
ACTIONS(215), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_if,
STATE(171), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
STATE(245), 1,
2023-10-29 23:31:06 +00:00
sym_statement,
ACTIONS(55), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-21 17:19:01 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2775] = 27,
ACTIONS(3), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-22 18:48:34 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-22 18:48:34 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-22 18:48:34 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-22 18:48:34 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-28 14:28:43 +00:00
anon_sym_async,
STATE(64), 1,
2023-10-22 20:32:55 +00:00
sym_expression,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_if,
STATE(119), 1,
2023-10-29 23:31:06 +00:00
sym_statement,
ACTIONS(15), 2,
2023-10-22 20:32:55 +00:00
anon_sym_true,
anon_sym_false,
STATE(48), 7,
2023-10-22 20:32:55 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-22 20:32:55 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-22 20:32:55 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2881] = 27,
2023-10-22 20:32:55 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-28 14:28:43 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-28 14:28:43 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_async,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(211), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(213), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
ACTIONS(215), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_if,
STATE(119), 1,
2023-10-28 14:28:43 +00:00
sym_statement,
STATE(171), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(131), 12,
2023-10-28 14:28:43 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2987] = 4,
STATE(91), 1,
sym_math_operator,
STATE(98), 1,
sym_logic_operator,
ACTIONS(219), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(217), 24,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
2023-10-28 14:28:43 +00:00
aux_sym_comment_token1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
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,
[3040] = 5,
ACTIONS(225), 1,
anon_sym_DOT_DOT,
STATE(91), 1,
sym_math_operator,
STATE(98), 1,
sym_logic_operator,
ACTIONS(223), 18,
2023-10-29 23:31:06 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
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,
ACTIONS(221), 23,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3095] = 4,
STATE(91), 1,
sym_math_operator,
STATE(98), 1,
sym_logic_operator,
ACTIONS(223), 18,
2023-10-29 23:31:06 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(221), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-29 23:31:06 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3148] = 4,
STATE(91), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(98), 1,
2023-10-29 23:31:06 +00:00
sym_logic_operator,
ACTIONS(229), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
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_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(227), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3201] = 4,
STATE(91), 1,
sym_math_operator,
STATE(98), 1,
sym_logic_operator,
ACTIONS(233), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
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_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(231), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3254] = 9,
ACTIONS(239), 1,
anon_sym_COLON,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
STATE(91), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
STATE(98), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
ACTIONS(241), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
ACTIONS(235), 13,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_DOT_DOT,
ACTIONS(237), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3317] = 4,
STATE(85), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
STATE(86), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
ACTIONS(233), 18,
2023-10-29 23:31:06 +00:00
sym_identifier,
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_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(231), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3369] = 3,
ACTIONS(253), 1,
anon_sym_DOT,
ACTIONS(251), 18,
sym_identifier,
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_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(249), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3419] = 4,
STATE(85), 1,
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(229), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
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_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(227), 23,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3471] = 9,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(255), 1,
anon_sym_COLON,
STATE(85), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
STATE(86), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
ACTIONS(241), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
ACTIONS(235), 12,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
ACTIONS(237), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3533] = 4,
STATE(85), 1,
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(219), 18,
2023-10-29 23:31:06 +00:00
sym_identifier,
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_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(217), 23,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3585] = 3,
ACTIONS(261), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DOT,
ACTIONS(259), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
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,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(257), 24,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
2023-10-28 14:28:43 +00:00
anon_sym_DASH,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3635] = 17,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(265), 1,
anon_sym_RPAREN,
STATE(66), 1,
sym_expression,
STATE(79), 1,
aux_sym_list_repeat1,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(269), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH2,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
ACTIONS(267), 11,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3712] = 2,
ACTIONS(273), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
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,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(271), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3759] = 2,
ACTIONS(277), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(275), 24,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3806] = 2,
ACTIONS(281), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
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_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(279), 24,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3853] = 5,
ACTIONS(283), 1,
anon_sym_EQ,
STATE(28), 1,
sym_assignment_operator,
ACTIONS(285), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(267), 18,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
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,
ACTIONS(269), 20,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_DASH,
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_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3906] = 2,
ACTIONS(289), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(287), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[3953] = 2,
ACTIONS(293), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(291), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4000] = 2,
ACTIONS(297), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(295), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4047] = 2,
ACTIONS(301), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
2023-10-22 20:32:55 +00:00
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
2023-10-22 20:32:55 +00:00
anon_sym_async,
ACTIONS(299), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4094] = 2,
ACTIONS(305), 18,
2023-10-21 20:38:20 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(303), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4141] = 2,
ACTIONS(309), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(307), 24,
2023-10-21 17:04:17 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4188] = 2,
ACTIONS(313), 18,
sym_identifier,
2023-10-18 23:26:49 +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,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(311), 24,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4235] = 2,
ACTIONS(317), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(315), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4282] = 2,
ACTIONS(321), 18,
2023-10-19 01:50:45 +00:00
sym_identifier,
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-19 01:50:45 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(319), 24,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4329] = 2,
ACTIONS(325), 18,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(323), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-21 17:04:17 +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-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4376] = 2,
ACTIONS(329), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(327), 24,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-18 22:18:41 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-18 22:18:41 +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-18 22:18:41 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4423] = 2,
ACTIONS(333), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(331), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4470] = 2,
ACTIONS(337), 18,
2023-10-18 22:18:41 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-18 22:18:41 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(335), 24,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4517] = 2,
ACTIONS(341), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(339), 24,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[4564] = 17,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(343), 1,
anon_sym_RPAREN,
STATE(66), 1,
sym_expression,
STATE(71), 1,
aux_sym_list_repeat1,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(269), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH2,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
ACTIONS(267), 11,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
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,
[4641] = 9,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(255), 1,
anon_sym_COLON,
STATE(85), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(241), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 6,
2023-10-29 23:31:06 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(345), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(347), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4700] = 10,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(255), 1,
anon_sym_COLON,
ACTIONS(353), 1,
anon_sym_LBRACE,
STATE(85), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(241), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 6,
2023-10-29 23:31:06 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(349), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
ACTIONS(351), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4761] = 9,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(255), 1,
anon_sym_COLON,
STATE(85), 1,
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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(355), 9,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(357), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4820] = 10,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(255), 1,
anon_sym_COLON,
ACTIONS(363), 1,
anon_sym_LBRACE,
STATE(85), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(241), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 6,
2023-10-29 23:31:06 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
2023-10-29 23:31:06 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(359), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
ACTIONS(361), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4881] = 10,
ACTIONS(245), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(255), 1,
anon_sym_COLON,
ACTIONS(369), 1,
anon_sym_COMMA,
STATE(85), 1,
sym_math_operator,
STATE(86), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(365), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(247), 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,
ACTIONS(367), 8,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACK,
anon_sym_LBRACE,
[4932] = 6,
ACTIONS(375), 1,
anon_sym_elseif,
ACTIONS(377), 1,
anon_sym_else,
STATE(116), 1,
sym_else,
STATE(73), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(371), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(373), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4974] = 6,
ACTIONS(375), 1,
2023-10-29 23:31:06 +00:00
anon_sym_elseif,
ACTIONS(377), 1,
anon_sym_else,
STATE(125), 1,
sym_else,
STATE(67), 2,
2023-10-29 23:31:06 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(379), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(381), 15,
2023-10-29 23:31:06 +00:00
sym_identifier,
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,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[5016] = 15,
ACTIONS(383), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(386), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(391), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(394), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(397), 1,
2023-10-28 14:28:43 +00:00
sym_string,
ACTIONS(403), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(406), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(409), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(412), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
STATE(66), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
STATE(69), 1,
2023-10-29 23:31:06 +00:00
aux_sym_list_repeat1,
ACTIONS(389), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
ACTIONS(400), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5076] = 15,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(415), 1,
anon_sym_RBRACK,
STATE(66), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
STATE(72), 1,
2023-10-29 23:31:06 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5135] = 15,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(417), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
STATE(66), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(69), 1,
2023-10-21 20:38:20 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(60), 7,
2023-10-29 23:31:06 +00:00
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
[5194] = 15,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(419), 1,
anon_sym_RBRACK,
STATE(66), 1,
sym_expression,
STATE(69), 1,
aux_sym_list_repeat1,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5253] = 4,
ACTIONS(425), 1,
anon_sym_elseif,
STATE(73), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(421), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(423), 16,
2023-10-29 23:31:06 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[5290] = 15,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(428), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
STATE(66), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
STATE(69), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5349] = 15,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(430), 1,
anon_sym_RPAREN,
STATE(66), 1,
sym_expression,
STATE(74), 1,
aux_sym_list_repeat1,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5408] = 15,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(432), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACK,
STATE(66), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
STATE(78), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5467] = 15,
ACTIONS(7), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(434), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
STATE(66), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
STATE(80), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5526] = 15,
ACTIONS(7), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(436), 1,
anon_sym_RBRACK,
STATE(66), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
STATE(69), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5585] = 15,
ACTIONS(7), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(438), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
STATE(66), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
STATE(69), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5644] = 15,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(263), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
ACTIONS(440), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
STATE(66), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(69), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5703] = 13,
ACTIONS(47), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(442), 1,
sym_identifier,
STATE(164), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5756] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(442), 1,
sym_identifier,
STATE(165), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5809] = 13,
ACTIONS(47), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(442), 1,
sym_identifier,
ACTIONS(444), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
STATE(135), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5862] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(442), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(444), 1,
anon_sym_table,
STATE(136), 1,
sym_expression,
ACTIONS(55), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5915] = 13,
2023-10-29 23:31:06 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(263), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(38), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[5968] = 13,
2023-10-29 23:31:06 +00:00
ACTIONS(7), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(263), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(39), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6021] = 13,
ACTIONS(47), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(175), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6074] = 13,
ACTIONS(7), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(263), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(446), 1,
anon_sym_table,
STATE(30), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(48), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(60), 7,
2023-10-29 23:31:06 +00:00
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
[6127] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(446), 1,
anon_sym_table,
STATE(31), 1,
sym_expression,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6180] = 13,
ACTIONS(47), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(144), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6233] = 13,
2023-10-29 23:31:06 +00:00
ACTIONS(7), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(263), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
ACTIONS(446), 1,
anon_sym_table,
STATE(33), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6286] = 13,
ACTIONS(47), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(140), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6339] = 13,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
anon_sym_LBRACK,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(163), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6392] = 2,
ACTIONS(448), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
ACTIONS(450), 16,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[6423] = 13,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym__numeric,
ACTIONS(51), 1,
anon_sym_DASH,
ACTIONS(53), 1,
sym_string,
ACTIONS(57), 1,
anon_sym_LBRACK,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
STATE(174), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6476] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-28 14:28:43 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(442), 1,
sym_identifier,
ACTIONS(444), 1,
anon_sym_table,
STATE(134), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6529] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
sym_string,
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
STATE(173), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
anon_sym_true,
anon_sym_false,
STATE(157), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(159), 7,
2023-10-29 23:31:06 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6582] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(263), 1,
sym_identifier,
ACTIONS(446), 1,
anon_sym_table,
STATE(35), 1,
sym_expression,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6635] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(442), 1,
sym_identifier,
STATE(170), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6688] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-19 01:50:45 +00:00
sym_string,
ACTIONS(57), 1,
anon_sym_LBRACK,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
STATE(172), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6741] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-19 01:50:45 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(442), 1,
sym_identifier,
STATE(168), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6794] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
sym_string,
ACTIONS(57), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
STATE(167), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6847] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-18 23:26:49 +00:00
sym_string,
ACTIONS(57), 1,
anon_sym_LBRACK,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
STATE(166), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6900] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
sym_string,
ACTIONS(57), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
ACTIONS(442), 1,
sym_identifier,
STATE(169), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[6953] = 13,
2023-10-29 23:31:06 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
STATE(63), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
2023-10-29 23:31:06 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7006] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-21 17:19:01 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(442), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
ACTIONS(444), 1,
anon_sym_table,
STATE(138), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(55), 2,
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7059] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(263), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
STATE(62), 1,
2023-10-29 23:31:06 +00:00
sym_expression,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7112] = 13,
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(442), 1,
sym_identifier,
STATE(139), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7165] = 2,
ACTIONS(452), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
ACTIONS(454), 16,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7196] = 13,
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(63), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(442), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
STATE(143), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7249] = 13,
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(51), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(53), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(57), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(442), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
ACTIONS(444), 1,
anon_sym_table,
STATE(137), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
ACTIONS(55), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
STATE(157), 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,
STATE(159), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7302] = 13,
ACTIONS(7), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(263), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
ACTIONS(446), 1,
anon_sym_table,
STATE(32), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7355] = 13,
ACTIONS(7), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(263), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
STATE(36), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
ACTIONS(15), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7408] = 13,
ACTIONS(7), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
2023-10-29 23:31:06 +00:00
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-29 23:31:06 +00:00
sym_string,
ACTIONS(17), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(263), 1,
sym_identifier,
STATE(65), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7461] = 13,
2023-10-29 23:31:06 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(263), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
STATE(40), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
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,
STATE(60), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
[7514] = 2,
ACTIONS(456), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(458), 15,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7543] = 2,
ACTIONS(460), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(462), 15,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7572] = 2,
ACTIONS(464), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(466), 15,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7601] = 2,
ACTIONS(468), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(470), 15,
sym_identifier,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7630] = 2,
ACTIONS(472), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(474), 15,
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7659] = 2,
ACTIONS(476), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(478), 15,
2023-10-18 22:18:41 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7688] = 2,
ACTIONS(480), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(482), 15,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7717] = 2,
ACTIONS(484), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(486), 15,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7746] = 2,
ACTIONS(488), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(490), 15,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7775] = 2,
ACTIONS(371), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(373), 15,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7804] = 2,
ACTIONS(492), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(494), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7833] = 2,
ACTIONS(496), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(498), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7862] = 2,
ACTIONS(500), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(502), 15,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7891] = 2,
ACTIONS(504), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(506), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7920] = 2,
ACTIONS(508), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(510), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7949] = 2,
ACTIONS(355), 9,
2023-10-29 23:31:06 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(357), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-18 22:18:41 +00:00
anon_sym_true,
2023-10-29 23:31:06 +00:00
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7978] = 2,
ACTIONS(514), 7,
2023-10-21 17:19:01 +00:00
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
ACTIONS(512), 15,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8005] = 4,
STATE(84), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(233), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(231), 17,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
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,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8035] = 7,
ACTIONS(516), 1,
anon_sym_COLON,
STATE(84), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(241), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(235), 5,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8071] = 4,
STATE(84), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(219), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 17,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
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,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8101] = 4,
STATE(84), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(229), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(227), 17,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8131] = 5,
ACTIONS(518), 1,
anon_sym_DOT_DOT,
STATE(84), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(223), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(221), 16,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8163] = 4,
STATE(84), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(223), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(221), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:04:17 +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-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8193] = 4,
STATE(90), 1,
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(219), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 16,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
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,
[8222] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(235), 4,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[8257] = 3,
ACTIONS(522), 1,
anon_sym_DOT,
ACTIONS(251), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(249), 17,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8284] = 3,
ACTIONS(524), 1,
anon_sym_DOT,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(257), 17,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8311] = 4,
STATE(90), 1,
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(233), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(231), 16,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8340] = 4,
STATE(90), 1,
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(229), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(227), 16,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
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,
[8369] = 2,
ACTIONS(313), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(311), 17,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8393] = 2,
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(271), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8417] = 2,
ACTIONS(281), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(279), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:19:01 +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,
[8441] = 2,
ACTIONS(333), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(331), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8465] = 2,
ACTIONS(337), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(335), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8489] = 2,
ACTIONS(305), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(303), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8513] = 2,
ACTIONS(317), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(315), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8537] = 2,
ACTIONS(301), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(299), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:19:01 +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,
[8561] = 2,
ACTIONS(321), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(319), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8585] = 2,
ACTIONS(277), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(275), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
2023-10-19 01:50:45 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-19 01:50:45 +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,
[8609] = 2,
ACTIONS(309), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(307), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8633] = 2,
ACTIONS(289), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(287), 17,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:04:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8657] = 2,
ACTIONS(293), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(291), 17,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8681] = 2,
ACTIONS(325), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(323), 17,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8705] = 2,
ACTIONS(341), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(339), 17,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[8729] = 2,
ACTIONS(329), 2,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(327), 17,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_COLON,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
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,
[8753] = 2,
ACTIONS(297), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(295), 17,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
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,
[8777] = 5,
ACTIONS(283), 1,
anon_sym_EQ,
STATE(29), 1,
sym_assignment_operator,
ACTIONS(285), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(269), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(267), 11,
anon_sym_RBRACE,
anon_sym_COLON,
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,
[8807] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(526), 2,
sym_identifier,
anon_sym_RBRACE,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[8840] = 8,
ACTIONS(359), 1,
anon_sym_RBRACE,
ACTIONS(363), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[8875] = 8,
ACTIONS(349), 1,
anon_sym_RBRACE,
ACTIONS(353), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[8910] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(528), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[8942] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(530), 1,
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[8974] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(532), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9006] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(534), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9038] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(536), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9070] = 7,
ACTIONS(355), 1,
anon_sym_RBRACE,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9102] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(538), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9134] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(540), 1,
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9166] = 7,
ACTIONS(345), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9198] = 7,
ACTIONS(520), 1,
anon_sym_COLON,
ACTIONS(542), 1,
anon_sym_LBRACE,
STATE(90), 1,
2023-10-29 23:31:06 +00:00
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9230] = 6,
ACTIONS(520), 1,
anon_sym_COLON,
STATE(90), 1,
sym_math_operator,
STATE(92), 1,
sym_logic_operator,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(243), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 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,
[9259] = 3,
ACTIONS(544), 1,
anon_sym_RPAREN,
ACTIONS(293), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(291), 12,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9281] = 3,
ACTIONS(546), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
ACTIONS(293), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(291), 12,
anon_sym_COLON,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9303] = 2,
ACTIONS(548), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(389), 8,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
[9321] = 2,
ACTIONS(550), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(552), 6,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
[9337] = 2,
ACTIONS(554), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(556), 6,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
[9353] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(560), 1,
anon_sym_GT,
STATE(197), 1,
aux_sym_function_repeat1,
[9363] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(562), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
[9373] = 3,
ACTIONS(558), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(564), 1,
anon_sym_GT,
STATE(195), 1,
aux_sym_function_repeat1,
[9383] = 3,
ACTIONS(566), 1,
sym_identifier,
ACTIONS(568), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
STATE(189), 1,
2023-10-28 14:28:43 +00:00
aux_sym_map_repeat1,
[9393] = 3,
ACTIONS(566), 1,
sym_identifier,
ACTIONS(570), 1,
anon_sym_RBRACE,
STATE(189), 1,
aux_sym_map_repeat1,
[9403] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(572), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
[9413] = 3,
ACTIONS(574), 1,
sym_identifier,
ACTIONS(577), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
[9423] = 3,
ACTIONS(579), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
ACTIONS(582), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
STATE(189), 1,
2023-10-28 14:28:43 +00:00
aux_sym_map_repeat1,
[9433] = 3,
ACTIONS(558), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
ACTIONS(584), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
STATE(183), 1,
aux_sym_function_repeat1,
[9443] = 2,
ACTIONS(588), 1,
anon_sym_COMMA,
ACTIONS(586), 2,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
anon_sym_GT,
[9451] = 3,
ACTIONS(566), 1,
sym_identifier,
ACTIONS(590), 1,
anon_sym_RBRACE,
STATE(186), 1,
aux_sym_map_repeat1,
[9461] = 3,
ACTIONS(566), 1,
sym_identifier,
ACTIONS(592), 1,
anon_sym_RBRACE,
STATE(185), 1,
aux_sym_map_repeat1,
[9471] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(594), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
[9481] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(596), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
STATE(188), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
[9491] = 3,
ACTIONS(558), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
ACTIONS(598), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
[9501] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(600), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
[9511] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(602), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
STATE(188), 1,
2023-10-21 17:04:17 +00:00
aux_sym_function_repeat1,
[9521] = 3,
ACTIONS(558), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
ACTIONS(604), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
STATE(188), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
[9531] = 3,
ACTIONS(558), 1,
sym_identifier,
ACTIONS(606), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
STATE(196), 1,
aux_sym_function_repeat1,
[9541] = 2,
ACTIONS(558), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
STATE(194), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
[9548] = 2,
ACTIONS(558), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
STATE(198), 1,
aux_sym_function_repeat1,
[9555] = 1,
ACTIONS(577), 2,
sym_identifier,
anon_sym_GT,
[9560] = 2,
ACTIONS(608), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(610), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
[9567] = 2,
ACTIONS(558), 1,
sym_identifier,
STATE(199), 1,
aux_sym_function_repeat1,
[9574] = 2,
ACTIONS(612), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(614), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
[9581] = 2,
ACTIONS(558), 1,
sym_identifier,
STATE(187), 1,
aux_sym_function_repeat1,
[9588] = 1,
ACTIONS(616), 1,
2023-10-28 14:28:43 +00:00
anon_sym_in,
[9592] = 1,
ACTIONS(618), 1,
anon_sym_RBRACE,
[9596] = 1,
ACTIONS(620), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
[9600] = 1,
ACTIONS(622), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
[9604] = 1,
ACTIONS(624), 1,
anon_sym_into,
[9608] = 1,
ACTIONS(626), 1,
anon_sym_LT,
[9612] = 1,
ACTIONS(628), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
[9616] = 1,
ACTIONS(630), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
[9620] = 1,
ACTIONS(632), 1,
sym_identifier,
[9624] = 1,
ACTIONS(634), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
[9628] = 1,
ACTIONS(636), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
[9632] = 1,
ACTIONS(638), 1,
sym_identifier,
[9636] = 1,
ACTIONS(640), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
[9640] = 1,
ACTIONS(642), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[9644] = 1,
ACTIONS(644), 1,
anon_sym_RBRACE,
[9648] = 1,
ACTIONS(646), 1,
2023-10-29 23:31:06 +00:00
anon_sym_from,
[9652] = 1,
ACTIONS(648), 1,
sym_identifier,
[9656] = 1,
ACTIONS(650), 1,
2023-10-29 23:31:06 +00:00
anon_sym_from,
[9660] = 1,
ACTIONS(652), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
[9664] = 1,
ACTIONS(654), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[9668] = 1,
ACTIONS(656), 1,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
[9672] = 1,
ACTIONS(658), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
[9676] = 1,
ACTIONS(660), 1,
sym_identifier,
[9680] = 1,
ACTIONS(662), 1,
anon_sym_into,
[9684] = 1,
ACTIONS(664), 1,
anon_sym_from,
[9688] = 1,
ACTIONS(666), 1,
anon_sym_from,
[9692] = 1,
ACTIONS(668), 1,
sym_identifier,
[9696] = 1,
ACTIONS(670), 1,
ts_builtin_sym_end,
[9700] = 1,
ACTIONS(672), 1,
anon_sym_RBRACE,
[9704] = 1,
ACTIONS(674), 1,
2023-10-21 17:19:01 +00:00
anon_sym_in,
[9708] = 1,
ACTIONS(676), 1,
anon_sym_LT,
[9712] = 1,
ACTIONS(678), 1,
2023-10-28 14:28:43 +00:00
anon_sym_in,
[9716] = 1,
ACTIONS(680), 1,
2023-10-29 23:31:06 +00:00
anon_sym_in,
[9720] = 1,
ACTIONS(682), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
[9724] = 1,
ACTIONS(684), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
[9728] = 1,
ACTIONS(686), 1,
anon_sym_in,
[9732] = 1,
ACTIONS(688), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
[9736] = 1,
ACTIONS(690), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
[9740] = 1,
ACTIONS(692), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
[9744] = 1,
ACTIONS(694), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
[9748] = 1,
ACTIONS(696), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
[9752] = 1,
ACTIONS(698), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
[9756] = 1,
ACTIONS(700), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
[9760] = 1,
ACTIONS(702), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
[9764] = 1,
ACTIONS(704), 1,
sym__numeric,
[9768] = 1,
ACTIONS(706), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
[9772] = 1,
ACTIONS(708), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
[9776] = 1,
ACTIONS(710), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
[9780] = 1,
ACTIONS(712), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
[9784] = 1,
ACTIONS(714), 1,
anon_sym_LT,
[9788] = 1,
ACTIONS(716), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
[9792] = 1,
ACTIONS(718), 1,
anon_sym_EQ,
[9796] = 1,
ACTIONS(720), 1,
sym__numeric,
[9800] = 1,
ACTIONS(722), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
[9804] = 1,
ACTIONS(724), 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-29 23:31:06 +00:00
[SMALL_STATE(3)] = 89,
[SMALL_STATE(4)] = 178,
[SMALL_STATE(5)] = 292,
[SMALL_STATE(6)] = 406,
[SMALL_STATE(7)] = 517,
[SMALL_STATE(8)] = 627,
[SMALL_STATE(9)] = 737,
[SMALL_STATE(10)] = 847,
[SMALL_STATE(11)] = 957,
2023-10-29 23:31:06 +00:00
[SMALL_STATE(12)] = 1067,
[SMALL_STATE(13)] = 1177,
[SMALL_STATE(14)] = 1287,
[SMALL_STATE(15)] = 1397,
[SMALL_STATE(16)] = 1507,
[SMALL_STATE(17)] = 1617,
[SMALL_STATE(18)] = 1727,
[SMALL_STATE(19)] = 1837,
[SMALL_STATE(20)] = 1947,
[SMALL_STATE(21)] = 2057,
[SMALL_STATE(22)] = 2167,
[SMALL_STATE(23)] = 2277,
[SMALL_STATE(24)] = 2387,
[SMALL_STATE(25)] = 2457,
[SMALL_STATE(26)] = 2563,
[SMALL_STATE(27)] = 2669,
[SMALL_STATE(28)] = 2775,
[SMALL_STATE(29)] = 2881,
[SMALL_STATE(30)] = 2987,
[SMALL_STATE(31)] = 3040,
[SMALL_STATE(32)] = 3095,
[SMALL_STATE(33)] = 3148,
[SMALL_STATE(34)] = 3201,
[SMALL_STATE(35)] = 3254,
[SMALL_STATE(36)] = 3317,
[SMALL_STATE(37)] = 3369,
[SMALL_STATE(38)] = 3419,
[SMALL_STATE(39)] = 3471,
[SMALL_STATE(40)] = 3533,
[SMALL_STATE(41)] = 3585,
[SMALL_STATE(42)] = 3635,
[SMALL_STATE(43)] = 3712,
[SMALL_STATE(44)] = 3759,
[SMALL_STATE(45)] = 3806,
[SMALL_STATE(46)] = 3853,
[SMALL_STATE(47)] = 3906,
[SMALL_STATE(48)] = 3953,
[SMALL_STATE(49)] = 4000,
[SMALL_STATE(50)] = 4047,
[SMALL_STATE(51)] = 4094,
[SMALL_STATE(52)] = 4141,
[SMALL_STATE(53)] = 4188,
[SMALL_STATE(54)] = 4235,
[SMALL_STATE(55)] = 4282,
[SMALL_STATE(56)] = 4329,
[SMALL_STATE(57)] = 4376,
[SMALL_STATE(58)] = 4423,
[SMALL_STATE(59)] = 4470,
[SMALL_STATE(60)] = 4517,
[SMALL_STATE(61)] = 4564,
[SMALL_STATE(62)] = 4641,
[SMALL_STATE(63)] = 4700,
[SMALL_STATE(64)] = 4761,
[SMALL_STATE(65)] = 4820,
[SMALL_STATE(66)] = 4881,
[SMALL_STATE(67)] = 4932,
[SMALL_STATE(68)] = 4974,
[SMALL_STATE(69)] = 5016,
[SMALL_STATE(70)] = 5076,
[SMALL_STATE(71)] = 5135,
[SMALL_STATE(72)] = 5194,
[SMALL_STATE(73)] = 5253,
[SMALL_STATE(74)] = 5290,
[SMALL_STATE(75)] = 5349,
[SMALL_STATE(76)] = 5408,
[SMALL_STATE(77)] = 5467,
[SMALL_STATE(78)] = 5526,
[SMALL_STATE(79)] = 5585,
[SMALL_STATE(80)] = 5644,
[SMALL_STATE(81)] = 5703,
[SMALL_STATE(82)] = 5756,
[SMALL_STATE(83)] = 5809,
[SMALL_STATE(84)] = 5862,
[SMALL_STATE(85)] = 5915,
[SMALL_STATE(86)] = 5968,
[SMALL_STATE(87)] = 6021,
[SMALL_STATE(88)] = 6074,
[SMALL_STATE(89)] = 6127,
[SMALL_STATE(90)] = 6180,
[SMALL_STATE(91)] = 6233,
[SMALL_STATE(92)] = 6286,
[SMALL_STATE(93)] = 6339,
[SMALL_STATE(94)] = 6392,
[SMALL_STATE(95)] = 6423,
[SMALL_STATE(96)] = 6476,
[SMALL_STATE(97)] = 6529,
[SMALL_STATE(98)] = 6582,
[SMALL_STATE(99)] = 6635,
[SMALL_STATE(100)] = 6688,
[SMALL_STATE(101)] = 6741,
[SMALL_STATE(102)] = 6794,
[SMALL_STATE(103)] = 6847,
[SMALL_STATE(104)] = 6900,
[SMALL_STATE(105)] = 6953,
[SMALL_STATE(106)] = 7006,
[SMALL_STATE(107)] = 7059,
[SMALL_STATE(108)] = 7112,
[SMALL_STATE(109)] = 7165,
[SMALL_STATE(110)] = 7196,
[SMALL_STATE(111)] = 7249,
[SMALL_STATE(112)] = 7302,
[SMALL_STATE(113)] = 7355,
[SMALL_STATE(114)] = 7408,
[SMALL_STATE(115)] = 7461,
[SMALL_STATE(116)] = 7514,
[SMALL_STATE(117)] = 7543,
[SMALL_STATE(118)] = 7572,
[SMALL_STATE(119)] = 7601,
[SMALL_STATE(120)] = 7630,
[SMALL_STATE(121)] = 7659,
[SMALL_STATE(122)] = 7688,
[SMALL_STATE(123)] = 7717,
[SMALL_STATE(124)] = 7746,
[SMALL_STATE(125)] = 7775,
[SMALL_STATE(126)] = 7804,
[SMALL_STATE(127)] = 7833,
[SMALL_STATE(128)] = 7862,
[SMALL_STATE(129)] = 7891,
[SMALL_STATE(130)] = 7920,
[SMALL_STATE(131)] = 7949,
[SMALL_STATE(132)] = 7978,
[SMALL_STATE(133)] = 8005,
[SMALL_STATE(134)] = 8035,
[SMALL_STATE(135)] = 8071,
[SMALL_STATE(136)] = 8101,
[SMALL_STATE(137)] = 8131,
[SMALL_STATE(138)] = 8163,
[SMALL_STATE(139)] = 8193,
[SMALL_STATE(140)] = 8222,
[SMALL_STATE(141)] = 8257,
[SMALL_STATE(142)] = 8284,
[SMALL_STATE(143)] = 8311,
[SMALL_STATE(144)] = 8340,
[SMALL_STATE(145)] = 8369,
[SMALL_STATE(146)] = 8393,
[SMALL_STATE(147)] = 8417,
[SMALL_STATE(148)] = 8441,
[SMALL_STATE(149)] = 8465,
[SMALL_STATE(150)] = 8489,
[SMALL_STATE(151)] = 8513,
[SMALL_STATE(152)] = 8537,
[SMALL_STATE(153)] = 8561,
[SMALL_STATE(154)] = 8585,
[SMALL_STATE(155)] = 8609,
[SMALL_STATE(156)] = 8633,
[SMALL_STATE(157)] = 8657,
[SMALL_STATE(158)] = 8681,
[SMALL_STATE(159)] = 8705,
[SMALL_STATE(160)] = 8729,
[SMALL_STATE(161)] = 8753,
[SMALL_STATE(162)] = 8777,
[SMALL_STATE(163)] = 8807,
[SMALL_STATE(164)] = 8840,
[SMALL_STATE(165)] = 8875,
[SMALL_STATE(166)] = 8910,
[SMALL_STATE(167)] = 8942,
[SMALL_STATE(168)] = 8974,
[SMALL_STATE(169)] = 9006,
[SMALL_STATE(170)] = 9038,
[SMALL_STATE(171)] = 9070,
[SMALL_STATE(172)] = 9102,
[SMALL_STATE(173)] = 9134,
[SMALL_STATE(174)] = 9166,
[SMALL_STATE(175)] = 9198,
[SMALL_STATE(176)] = 9230,
[SMALL_STATE(177)] = 9259,
[SMALL_STATE(178)] = 9281,
[SMALL_STATE(179)] = 9303,
[SMALL_STATE(180)] = 9321,
[SMALL_STATE(181)] = 9337,
[SMALL_STATE(182)] = 9353,
[SMALL_STATE(183)] = 9363,
[SMALL_STATE(184)] = 9373,
[SMALL_STATE(185)] = 9383,
[SMALL_STATE(186)] = 9393,
[SMALL_STATE(187)] = 9403,
[SMALL_STATE(188)] = 9413,
[SMALL_STATE(189)] = 9423,
[SMALL_STATE(190)] = 9433,
[SMALL_STATE(191)] = 9443,
[SMALL_STATE(192)] = 9451,
[SMALL_STATE(193)] = 9461,
[SMALL_STATE(194)] = 9471,
[SMALL_STATE(195)] = 9481,
[SMALL_STATE(196)] = 9491,
[SMALL_STATE(197)] = 9501,
[SMALL_STATE(198)] = 9511,
[SMALL_STATE(199)] = 9521,
[SMALL_STATE(200)] = 9531,
[SMALL_STATE(201)] = 9541,
[SMALL_STATE(202)] = 9548,
[SMALL_STATE(203)] = 9555,
[SMALL_STATE(204)] = 9560,
[SMALL_STATE(205)] = 9567,
[SMALL_STATE(206)] = 9574,
[SMALL_STATE(207)] = 9581,
[SMALL_STATE(208)] = 9588,
[SMALL_STATE(209)] = 9592,
[SMALL_STATE(210)] = 9596,
[SMALL_STATE(211)] = 9600,
[SMALL_STATE(212)] = 9604,
[SMALL_STATE(213)] = 9608,
[SMALL_STATE(214)] = 9612,
[SMALL_STATE(215)] = 9616,
[SMALL_STATE(216)] = 9620,
[SMALL_STATE(217)] = 9624,
[SMALL_STATE(218)] = 9628,
[SMALL_STATE(219)] = 9632,
[SMALL_STATE(220)] = 9636,
[SMALL_STATE(221)] = 9640,
[SMALL_STATE(222)] = 9644,
[SMALL_STATE(223)] = 9648,
[SMALL_STATE(224)] = 9652,
[SMALL_STATE(225)] = 9656,
[SMALL_STATE(226)] = 9660,
[SMALL_STATE(227)] = 9664,
[SMALL_STATE(228)] = 9668,
[SMALL_STATE(229)] = 9672,
[SMALL_STATE(230)] = 9676,
[SMALL_STATE(231)] = 9680,
[SMALL_STATE(232)] = 9684,
[SMALL_STATE(233)] = 9688,
[SMALL_STATE(234)] = 9692,
[SMALL_STATE(235)] = 9696,
[SMALL_STATE(236)] = 9700,
[SMALL_STATE(237)] = 9704,
[SMALL_STATE(238)] = 9708,
[SMALL_STATE(239)] = 9712,
[SMALL_STATE(240)] = 9716,
[SMALL_STATE(241)] = 9720,
[SMALL_STATE(242)] = 9724,
[SMALL_STATE(243)] = 9728,
[SMALL_STATE(244)] = 9732,
[SMALL_STATE(245)] = 9736,
[SMALL_STATE(246)] = 9740,
[SMALL_STATE(247)] = 9744,
[SMALL_STATE(248)] = 9748,
[SMALL_STATE(249)] = 9752,
[SMALL_STATE(250)] = 9756,
[SMALL_STATE(251)] = 9760,
[SMALL_STATE(252)] = 9764,
[SMALL_STATE(253)] = 9768,
[SMALL_STATE(254)] = 9772,
[SMALL_STATE(255)] = 9776,
[SMALL_STATE(256)] = 9780,
[SMALL_STATE(257)] = 9784,
[SMALL_STATE(258)] = 9788,
[SMALL_STATE(259)] = 9792,
[SMALL_STATE(260)] = 9796,
[SMALL_STATE(261)] = 9800,
[SMALL_STATE(262)] = 9804,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158),
[57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206),
[63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247),
[65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75),
[67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42),
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(46),
[78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(124),
[81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41),
[87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(241),
[90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(60),
[93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(56),
[96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70),
[99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(193),
[102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(204),
[105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(238),
[108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(97),
[111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(99),
[114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(230),
[117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(224),
[120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(219),
[123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(218),
[126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(215),
[129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(213),
[132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(212),
[135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(211),
[138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
[140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(46),
[143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(124),
[146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(2),
[149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(41),
[152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(241),
[155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(60),
[158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(56),
[161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(70),
[164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(193),
[167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(204),
[170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(238),
[173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(97),
[176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(99),
[179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(230),
[182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(224),
[185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(219),
[188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(218),
[191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(215),
[194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(213),
[197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(212),
[200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(211),
[203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
[211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162),
[213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248),
[215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
[217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
[243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180),
[247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2),
[253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252),
[255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1),
[259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1),
[261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260),
[263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48),
[265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 4),
[273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 4),
[275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
[285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 3),
[301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 3),
[303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3),
[317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3),
[319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 4),
[337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 4),
[339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253),
[379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(48),
[386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(41),
[394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(241),
[397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(60),
[400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(56),
[403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(70),
[406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(193),
[409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(204),
[412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(238),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(87),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
[444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257),
[446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262),
[448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 9),
[466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 9),
[468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8),
[474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8),
[476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220),
[524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214),
[526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(191),
[577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(259),
[582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[670] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
};
#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,
.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